[{"data":1,"prerenderedAt":7484},["ShallowReactive",2],{"nav:computer-architecture":3,"lesson:\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":304,"course-wordcounts":2031,"ref-card-index":2943,"tikz:2a5f609b552495f8ab80e1aaf87b3485cc13c9154e5c94f1b53e1411b9ca7934":7476,"tikz:210bb70b184e4c234943cf656593787fa941a7a1ff11418eea48725bdd49a18a":7477,"tikz:6badfc44b5d4b443d54d920aee66e6327acc539ed4f2ab30ee586c8ad72fe5c3":7478,"tikz:d2da8c3ac55ce4e9682ba7917c93fab1a56f26519d742f867e1c746d33282461":7479,"tikz:4ac832be985d022447e655e65be96c71da90d6843b0cc99291e20f31353a0784":7480,"tikz:eb20c654fce69ef5e9273190f77f9e0efc2fb6a949ac95b411ee0d5007affee3":7481,"tikz:c82c6f41dd56c6678aaa6a48ee50853bab623c497b4fd3655f4797550e4487aa":7482,"tikz:8fef609f0fe24f6a07b955996b6e98f77b4297e2dff5cc37ab705a2d5cd37745":7483},[4,38,79,108,137,166,195,224,244,259,289],{"module":5,"moduleNumber":6,"slug":7,"lessons":8},"Foundations",1,"foundations",[9,14,20,26,32],{"title":10,"path":11,"lessonNumber":6,"topics":12,"summary":13},"Bits, Bytes, and Words","\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words",[5],"Everything a machine stores is a string of bits grouped into bytes. We set out binary and hexadecimal, the byte as the unit of addressing, the word as the machine's natural integer size, and byte ordering — why the same four bytes read as 0x01234567 on one machine and 0x67452301 on another.\n",{"title":15,"path":16,"lessonNumber":17,"topics":18,"summary":19},"Integer Representation","\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation",2,[5],"A fixed-width byte string is just a pattern; what makes it a number is the rule we read it by. We define unsigned encoding and two's complement — where the top bit carries a negative weight — derive the ranges UMax, TMin, and TMax, and show how the same bits reinterpret between signed and unsigned, how widening sign-extends, and what truncation throws away.\n",{"title":21,"path":22,"lessonNumber":23,"topics":24,"summary":25},"Integer Arithmetic","\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic",3,[5],"Fixed-width integer arithmetic is arithmetic modulo a power of two: add past the top and the result wraps. We work out unsigned and two's-complement addition and the rules that detect their overflow, why negation is a complement-plus-one, how multiplication truncates to the low-order bits and how compilers turn constant multiplies into shifts and adds, why C declares signed overflow undefined, and the bias fix that keeps shift-based signed division rounding toward zero.\n",{"title":27,"path":28,"lessonNumber":29,"topics":30,"summary":31},"Floating Point","\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point",4,[5],"IEEE-754 trades the exactness of integers for enormous range by storing numbers as sign, exponent, and fraction — scientific notation in binary. We lay out the single and double formats, the bias that encodes the exponent, the three regimes (normalized, denormalized, special), a worked encode\u002Fdecode, the four rounding modes and round-to-even at the bit level, why addition is not associative, the pitfalls of float-int conversion, and why 0.1 has no exact binary representation.\n",{"title":33,"path":34,"lessonNumber":35,"topics":36,"summary":37},"Boolean Algebra and Bit Manipulation","\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation",5,[5],"Treat a word as a vector of independent bits and the bitwise operators become an algebra. We define AND, OR, NOT, and XOR as bit vectors, build the masking idioms that set, clear, toggle, and test individual bits, extract fields with zero- and sign-extension, count set bits three ways, derive the classic x & (x - 1) family of tricks, and distinguish bitwise operators from C's short-circuiting logical operators.\n",{"module":39,"moduleNumber":17,"slug":40,"lessons":41},"Machine-Level Programming","machine-level-x86-64",[42,47,52,57,62,67,73],{"title":43,"path":44,"lessonNumber":6,"topics":45,"summary":46},"The Machine's View","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view",[39],"The instruction set architecture is the contract a compiler writes against: the program counter, sixteen integer registers with their sub-register widths, and the condition codes. We follow one C function down through gcc to assembly, learn to read an instruction as operation plus operands, and fix the vocabulary the rest of the module uses.\n",{"title":48,"path":49,"lessonNumber":17,"topics":50,"summary":51},"Data Movement","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement",[39],"Most instructions a program runs simply move data. We cover the mov family and its size suffixes, the three operand forms, the full memory addressing mode D(Rb,Ri,S) and its special cases, lea for address arithmetic, and how push and pop manipulate the stack pointer %rsp on a stack that grows toward lower addresses.\n",{"title":53,"path":54,"lessonNumber":23,"topics":55,"summary":56},"Arithmetic and Logic","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic",[39],"The ALU instructions that compute on register and memory values: add, sub, and imul; the unary inc\u002Fdec\u002Fneg\u002Fnot; the shifts sal\u002Fshr\u002Fsar; the bitwise and\u002For\u002Fxor; and lea reused as a fast arithmetic trick. Each binary operation also sets the condition-code flags CF, ZF, SF, and OF, which cmp and test compute without keeping a result.\n",{"title":58,"path":59,"lessonNumber":29,"topics":60,"summary":61},"Control Flow","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow",[39],"How a flat instruction stream realizes branches and loops. The conditional jumps read the condition-code flags; set instructions turn flags into a 0\u002F1 byte. We translate if\u002Felse into the standard compare-and-branch pattern, while\u002Ffor loops into the guarded-do form, and dense switches into jump tables that index a target directly.\n",{"title":63,"path":64,"lessonNumber":35,"topics":65,"summary":66},"Procedures","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures",[39],"How a function call works at the machine level: the run-time stack, call and ret passing control through a saved return address, the System V convention that routes the first six arguments through %rdi..%r9 and the result through %rax, the caller-saved versus callee-saved split, the stack frame, and a recursive factorial traced through its frames.\n",{"title":68,"path":69,"lessonNumber":70,"topics":71,"summary":72},"Arrays, Structs, and Alignment","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment",6,[39],"How aggregate data lays out in memory. Arrays as base-plus-scaled-index, the row-major ordering of multidimensional arrays, pointer arithmetic in units of the pointed-to type, struct fields at fixed byte offsets, the overlapping storage of unions, and the alignment rules that force padding into a struct.\n",{"title":74,"path":75,"lessonNumber":76,"topics":77,"summary":78},"Memory Layout and Buffer Overflows","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows",7,[39],"The process address space — text, data, heap, and stack — and the classic vulnerability it enables. A stack buffer that is written past its end can overwrite the saved return address and redirect ret, so we sketch the mechanism defensively and then the three standard protections: stack canaries, a non-executable stack, and address-space layout randomization.\n",{"module":80,"moduleNumber":23,"slug":81,"lessons":82},"Instruction Set Architecture","instruction-set-architecture",[83,88,93,98,103],{"title":84,"path":85,"lessonNumber":6,"topics":86,"summary":87},"What an ISA Is","\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is",[80],"The instruction set architecture is the contract that lets a compiler and a chip be written by people who never meet: the stable interface software targets and hardware implements. We separate architecture from microarchitecture, read RISC and CISC as opposite answers to where complexity should live, price out what each choice costs in decode hardware, code density, and pipeline friendliness, and see how x86-64 endures by translating its instructions into RISC-like operations on the fly.\n",{"title":89,"path":90,"lessonNumber":17,"topics":91,"summary":92},"Instruction Formats and Operands","\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands",[80],"An instruction is an opcode plus a way to name its operands. We count operands — 3-address, 2-address, 1-address accumulator, and 0-address stack machines — by writing the same C = A + B four ways, weigh register operands against memory operands, then lay out the same add byte by byte in x86-64 (REX prefix, opcode, ModRM) and in Y86-64, and what fixed versus variable length costs at fetch time.\n",{"title":94,"path":95,"lessonNumber":23,"topics":96,"summary":97},"Addressing Modes","\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes",[80],"Once an operand field exists, it needs a rule for turning its bits into the data it names. That rule is the addressing mode. We walk the standard set — immediate, register, direct, register-indirect, displacement, scaled-indexed, and PC-relative — fixing the effective-address computation for each, run every mode against one concrete machine state, and price out what Y86-64 loses by keeping only base plus displacement.\n",{"title":99,"path":100,"lessonNumber":29,"topics":101,"summary":102},"The Y86-64 Instruction Set","\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set",[80],"Y86-64 is a teaching ISA — a stripped-down x86-64 simple enough to implement by hand yet real enough to compile to. We fix its programmer-visible state (fifteen registers, three condition codes, the PC, memory, and a status code), give the instruction set with exact byte encodings, spell out how the condition codes decide every jXX and cmovXX, and run the encoding both directions: assembly to bytes and raw bytes back to meaning.\n",{"title":104,"path":105,"lessonNumber":35,"topics":106,"summary":107},"Y86-64 Programming","\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming",[80],"With the encodings fixed, we write real Y86-64 assembly: the .pos, .align, and .quad directives, the calling convention borrowed from x86-64, a stack set up by hand, and complete programs — an array sum and a branch-free max. We watch the assembler turn the listing into the exact byte image the processor will execute, and trace the stack across the call.\n",{"module":109,"moduleNumber":29,"slug":110,"lessons":111},"Digital Logic","digital-logic",[112,117,122,127,132],{"title":113,"path":114,"lessonNumber":6,"topics":115,"summary":116},"Transistors, Gates, and Boolean Functions","\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions",[109],"A processor is built from millions of transistor switches. We start at the MOS transistor as a voltage-controlled switch, build the CMOS inverter and NAND transistor by transistor, meet the seven standard gates with their truth tables, show that NAND alone is functionally complete, price each gate in transistors and in time, and turn any truth table into a sum-of-products circuit.\n",{"title":118,"path":119,"lessonNumber":17,"topics":120,"summary":121},"Combinational Logic and HCL","\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl",[109],"A combinational circuit is a pure Boolean function of its current inputs — no memory, no clock. We draw the line between combinational and sequential logic, do the gate-delay accounting that finds a circuit's critical path and bounds the clock, meet don't-cares, then introduce CS:APP's Hardware Control Language: bit-level operators, word-level signals, equality nets, and the case expression that compiles to a multiplexer tree.\n",{"title":123,"path":124,"lessonNumber":23,"topics":125,"summary":126},"Multiplexers, Decoders, and the ALU","\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu",[109],"The combinational building blocks that make a datapath. We build the 2:1 and 4:1 multiplexer and tie it back to HCL's case expression, the n-to-2^n decoder, a one-bit full adder (sum is XOR, carry is majority), the ripple-carry adder that chains them, and finally the ALU — a function unit that selects among add, sub, and, and xor under a control input and exposes condition flags.\n",{"title":128,"path":129,"lessonNumber":29,"topics":130,"summary":131},"Memory Elements: Latches, Flip-Flops, and Clocking","\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking",[109],"A combinational circuit holds no state; feeding a circuit's output back to its input creates memory. We build the SR latch from cross-coupled gates, the level-sensitive D latch, and the master\u002Fslave edge-triggered D flip-flop, then introduce the clock and the synchronous design discipline, the setup\u002Fhold timing window, clock skew, metastability, and the register as n flip-flops sharing one clock.\n",{"title":133,"path":134,"lessonNumber":35,"topics":135,"summary":136},"Register Files and Random-Access Memory","\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory",[109],"Storage organized for access by address. We build the register file (a small bank of registers with addressed read ports and clocked write ports, the exact structure Y86-64's decode and write-back stages use), then descend to the SRAM and DRAM cells of main memory, why one is fast and dear and the other dense and slow, and how a row decoder picks a word out of a memory array.\n",{"module":138,"moduleNumber":35,"slug":139,"lessons":140},"Processor Design","processor-design",[141,146,151,156,161],{"title":142,"path":143,"lessonNumber":6,"topics":144,"summary":145},"The Fetch-Decode-Execute Cycle","\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle",[138],"A processor is a machine that repeats one loop forever: read the next instruction from memory, figure out what it asks for, do it, and advance. We fix the stored-program idea, lay out the datapath at a high level — PC, instruction memory, register file, ALU, data memory — and the control unit that sequences them, break the work into the six stages the rest of the module builds in hardware, and work out exactly how fetch parses variable-length instructions and computes the next PC.\n",{"title":147,"path":148,"lessonNumber":17,"topics":149,"summary":150},"The SEQ Stages","\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages",[138],"The six SEQ stages, made exact. For every Y86-64 instruction — halt, nop, the moves, OPq, the jumps, call and ret, pushq and popq — we write down what Fetch, Decode, Execute, Memory, Write-back, and PC update each compute, as per-instruction stage tables with every row justified. Once the tables are filled in, the processor is fully specified; the remaining lessons turn them into wires.\n",{"title":152,"path":153,"lessonNumber":23,"topics":154,"summary":155},"Control Logic and Sequencing","\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing",[138],"The stage tables say what each instruction needs; the control logic computes it from icode. We write the HCL for the register-port selections (srcA, srcB, dstE, dstM), the ALU function and input selection, the memory read\u002Fwrite and address, the branch condition, and the next-PC mux — each a case expression on icode that compiles to a mux — and see how one blob of combinational logic serves every instruction at once. We close by contrasting hardwired control with the microprogrammed alternative.\n",{"title":157,"path":158,"lessonNumber":29,"topics":159,"summary":160},"Assembling SEQ","\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq",[138],"We wire the whole thing together. The functional units from digital logic and the control signals from the last lesson assemble into the complete SEQ datapath, laid out the way CS:APP draws it — six stages stacked bottom to top, Fetch at the floor and PC update at the ceiling, signals flowing up the margins. Then the timing analysis: why everything must settle in one cycle, the no-reading-back principle that makes single-cycle execution consistent, and the critical path that sets the clock. We close by walking an OPq and a ret through the assembled machine.\n",{"title":162,"path":163,"lessonNumber":35,"topics":164,"summary":165},"Tracing a Program","\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program",[138],"To close the module, we take a complete Y86-64 program — a loop that sums 1 through 3 — and run it through SEQ one cycle at a time, recording the PC, the fetched instruction, every stage computation, and the registers, condition codes, and memory after each cycle. Then we examine single cycles in detail: every named signal of an OPq in concrete hex, and a second program whose call and ret we trace through the stack. The traces confirm that the assembled datapath and control logic behave as a processor.\n",{"module":167,"moduleNumber":70,"slug":168,"lessons":169},"Pipelining","pipelining",[170,175,180,185,190],{"title":171,"path":172,"lessonNumber":6,"topics":173,"summary":174},"Pipelining Principles","\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles",[167],"A processor that runs one instruction to completion before starting the next wastes most of its hardware most of the time. Pipelining splits the work into stages separated by registers so several instructions are in flight at once. We separate throughput from latency, work the 300 ps example through one, two, and three stages, and derive the three ceilings on the gain: uneven stages, register overhead, and the dependencies between instructions.\n",{"title":176,"path":177,"lessonNumber":17,"topics":178,"summary":179},"From SEQ to PIPE","\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe",[167],"We turn the sequential Y86-64 processor into a pipelined one by inserting pipeline registers between its stages so each cycle holds one instruction per stage. Doing it correctly forces a rearrangement: the next-PC computation must move into Fetch as a prediction, because the later stages that used to compute it are now busy with other instructions. We walk SEQ to SEQ+ to PIPE, spell out exactly what each pipeline register carries, and fix the naming discipline (D_stat versus d_stat) that keeps five in-flight instructions straight.\n",{"title":181,"path":182,"lessonNumber":23,"topics":183,"summary":184},"Data Hazards: Stalling and Forwarding","\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding",[167],"Overlapping instructions collide when a later one needs a value an earlier one has not finished computing: a read-after-write data hazard. We map exactly which instruction distances are dangerous, fix hazards the slow way by stalling (three bubbles), then the fast way by forwarding from five distinct sources into Decode, in a priority order that sequential semantics forces. Forwarding handles almost everything; the load-use hazard still needs exactly one stall.\n",{"title":186,"path":187,"lessonNumber":29,"topics":188,"summary":189},"Control Hazards and Branch Prediction","\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction",[167],"A pipeline must fetch an instruction every cycle, but after a conditional jump or a ret the next address is not yet known: a control hazard. We measure the branch penalty, weigh predict-taken against its alternatives with real loop arithmetic, watch PIPE detect a misprediction in Execute and squash the two wrong-path instructions, and meet the ret hazard, which has nothing to predict and stalls three cycles. A 2-bit counter gives a taste of dynamic prediction.\n",{"title":191,"path":192,"lessonNumber":35,"topics":193,"summary":194},"The Complete PIPE Processor","\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor",[167],"We assemble the full pipelined Y86-64: five stages, five pipeline registers, forwarding paths, and a small control unit that decides, each cycle, whether to stall or bubble each register. The subtle part is when hazards combine: one pairing hides a genuine bug. A fourth control case reads stat and keeps exceptions precise. Performance reduces to CPI = 1 + lp + mp + rp, worked out to 1.27 with realistic frequencies, and PIPE beats SEQ by several times despite every penalty.\n",{"module":196,"moduleNumber":76,"slug":197,"lessons":198},"The Memory Hierarchy","memory-hierarchy",[199,204,209,214,219],{"title":200,"path":201,"lessonNumber":6,"topics":202,"summary":203},"Storage Technologies and the Latency Gap","\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap",[196],"No single memory is both fast and large and cheap. We survey the technologies a machine can store bits in — SRAM, DRAM, flash, and rotating disk — open up a DRAM chip to find the row buffer, work a disk access down to the millisecond, and rank everything by speed, density, and cost per bit. Then we watch the processor outrun memory decade after decade. That widening gap is the whole reason a machine stacks fast small storage on top of slow large storage into a hierarchy.\n",{"title":205,"path":206,"lessonNumber":17,"topics":207,"summary":208},"Locality","\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality",[196],"A hierarchy only pays off because programs do not touch memory at random. They reuse recently-used data (temporal locality) and touch nearby data soon after (spatial locality). We make both precise and then quantitative: miss rates for stride-1 and stride-k traversals against a concrete block size, and the loop-order pair on a 2-D array where the same sum misses 16 times one way and 64 times the other — why row-major versus column-major order can change a program's speed by an order of magnitude.\n",{"title":210,"path":211,"lessonNumber":23,"topics":212,"summary":213},"Cache Memories and Direct Mapping","\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped",[196],"A cache is fast SRAM that holds copies of recently-used blocks of main memory. We fix its organization — S sets, E lines per set, B bytes per block — and the way it dissects an address into tag, set index, and block offset, worked bit by bit on a concrete 16-byte cache. Then we run the direct-mapped (E=1) access algorithm end to end on a seven-access trace: index to a set, compare the tag, hit or miss, evict. Cold and conflict misses fall out of the structure, and a two-array ping-pong shows conflict thrashing and its padding fix.\n",{"title":215,"path":216,"lessonNumber":29,"topics":217,"summary":218},"Set-Associative Caches and Write Policies","\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies",[196],"Give each set several lines and a block has a choice of homes — fewer conflict misses, at the cost of comparing E tags in parallel and choosing a victim to evict. We re-run the direct-mapped ping-pong trace on a 2-way cache and watch the conflicts vanish, weigh LRU against random replacement, then turn to writes: write-through versus write-back with a dirty bit on a hit, write-allocate versus no-write-allocate on a miss, and a worked traffic count showing when each pairing wins.\n",{"title":220,"path":221,"lessonNumber":35,"topics":222,"summary":223},"Cache Performance and Cache-Friendly Code","\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code",[196],"Turn the cache mechanism into a number. Hit time, miss rate, and miss penalty combine into the average memory access time; we compute AMAT for a two-level hierarchy with real numbers, weigh the design knobs against each other, and read the memory mountain. Then we write cache-friendly code — the matrix-multiply loop-order case study (ijk versus kij, misses counted per iteration) and loop blocking, where cache-sized tiles turn evicted reuse back into hits.\n",{"module":225,"moduleNumber":226,"slug":227,"lessons":228},"Virtual Memory",8,"virtual-memory",[229,234,239],{"title":230,"path":231,"lessonNumber":6,"topics":232,"summary":233},"Address Spaces and Translation","\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation",[225],"Every process runs as if it owns a private, contiguous span of memory — its virtual address space — while the hardware maps those addresses onto a single shared physical memory. We fix virtual memory's three jobs (a cache for disk, a memory manager, a protection boundary), the page as the unit of mapping, and the MMU replacing the virtual page number while the offset passes through untouched — then run one translation end to end at the bit level and trace the control flow of a page hit against a page fault.\n",{"title":235,"path":236,"lessonNumber":17,"topics":237,"summary":238},"Page Tables and Page Faults","\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults",[225],"The page table is an array of page-table entries indexed by virtual page number; each entry's valid bit says whether the page is in DRAM, on disk, or unallocated, and its permission, reference, and dirty bits drive protection and replacement. We walk translation as a table lookup, the page fault and demand paging, the clock algorithm the OS uses to approximate LRU, memory mapping and copy-on-write (why fork is cheap), the taxonomy of bad references, and thrashing.\n",{"title":240,"path":241,"lessonNumber":23,"topics":242,"summary":243},"The TLB and Multi-Level Page Tables","\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables",[225],"A page-table read on every access would double memory traffic; a flat table for a 48-bit space would occupy 512 GB per process. The TLB fixes the first: a small set-associative cache of PTEs inside the MMU whose tag and index come from the VPN. Multi-level page tables fix the second, allocating only the sub-tables a process uses; x86-64 walks four levels with a 9+9+9+9+12 split. We trace one reference end to end through TLB, walk, and cache, and close with the overlap trick that lets the L1 cache start before translation ends.\n",{"module":245,"moduleNumber":246,"slug":247,"lessons":248},"Exceptions & I\u002FO",9,"exceptions-and-io",[249,254],{"title":250,"path":251,"lessonNumber":6,"topics":252,"summary":253},"Exceptional Control Flow","\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow",[245],"Beyond the sequential, branch, and call flow a program controls itself, the hardware can divert the processor in response to events. We sort these into four classes — interrupts (asynchronous, from devices), traps (intentional syscalls), faults (recoverable, like a page fault), and aborts (unrecoverable) — then take the mechanism apart: exception numbers and the table dispatch, what the hardware pushes and why it differs from a procedure call, the divide-error \u002F page-fault \u002F general-protection trio on x86-64, the full syscall round trip with a worked write in assembly, and processes and signals as the abstractions ECF makes possible.\n",{"title":255,"path":256,"lessonNumber":17,"topics":257,"summary":258},"Interrupts and the Kernel","\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel",[245],"An I\u002FO device signals completion by raising an interrupt, crossing the privilege boundary from user mode into the kernel. We fix that boundary, follow an interrupt from device through the interrupt controller to its vectored handler, and use the timer interrupt to drive preemptive scheduling and the context switch. Then the I\u002FO mechanics: polling versus interrupt-driven I\u002FO with a cycle count, device registers and memory-mapped I\u002FO versus port I\u002FO, DMA's full transfer walkthrough and its cache hazard, and a disk read traced end to end, from the read syscall to the completion interrupt.\n",{"module":260,"moduleNumber":261,"slug":262,"lessons":263},"Multithreading & Multicore",10,"multithreading-and-multicore",[264,269,274,279,284],{"title":265,"path":266,"lessonNumber":6,"topics":267,"summary":268},"Processes, Threads, and Parallelism","\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism",[260],"Around 2004 the single core stopped getting faster, and the industry's answer was to hand programmers more cores instead. This lesson builds the vocabulary that shift demands: process versus thread and exactly which hardware state each one owns, concurrency versus parallelism, the three kinds of parallelism a machine can exploit, why Dennard scaling ended and forced the multicore turn, and Amdahl's law — the arithmetic that bounds the speedup those cores can deliver.\n",{"title":270,"path":271,"lessonNumber":17,"topics":272,"summary":273},"Hardware Multithreading","\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading",[260],"A pipeline spends much of its life waiting — on cache misses, on dependences, on branches. Hardware multithreading fills the dead cycles with instructions from another thread. We compare coarse-grained switching (change threads on a long stall), fine-grained interleaving (change every cycle), and simultaneous multithreading (mix threads inside a single cycle), work out exactly which hardware a second thread context duplicates and which it shares, and weigh when SMT pays off and when two threads just fight over one cache.\n",{"title":275,"path":276,"lessonNumber":23,"topics":277,"summary":278},"Cache Coherence","\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence",[260],"Give each core its own cache and the same address can live in two places at once, with copies that disagree. We reproduce the stale-copy bug with a two-core trace, then fix it the way hardware does: snooping caches that watch a shared bus and keep every line in a protocol state. We build MSI in full, upgrade it to MESI, contrast invalidation with updating, add coherence misses as the fourth C, and end with false sharing: the performance bug where cores fight over a line while never touching the same byte.\n",{"title":280,"path":281,"lessonNumber":29,"topics":282,"summary":283},"Memory Consistency and Synchronization","\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization",[260],"Coherence keeps cores agreeing about one location; consistency is the contract about many. We define sequential consistency, then watch real hardware break it: the store buffer lets a load slip ahead of an older store, and the classic two-thread litmus test ends with both sides reading zero. We state x86-TSO precisely, restore order with mfence, build atomic read-modify-write from the lock prefix, xchg, and cmpxchg, and write a spinlock twice — once naively, once bus-friendly — closing with what lock-free progress actually guarantees.\n",{"title":285,"path":286,"lessonNumber":35,"topics":287,"summary":288},"Multicore Organization","\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization",[260],"Where everything sits on the die. A modern die gives each core private L1 and L2 caches, spreads a shared last-level cache across slices, and wires it all together with a ring or mesh; multi-socket servers add NUMA, where memory is local to one socket and every remote access pays a latency penalty. We walk the floorplan, put numbers on local versus remote latency, meet thread affinity, and account for the two shared resources — coherence traffic and LLC capacity — that decide how far a parallel program scales.\n",{"module":290,"moduleNumber":291,"slug":292,"lessons":293},"Capstone",11,"capstone",[294,299],{"title":295,"path":296,"lessonNumber":6,"topics":297,"summary":298},"The Whole Machine","\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine",[290],"We take one line of C down the whole tower the course built — compiler to assembly, assembly to machine-code bytes, the bytes into the fetch–decode–execute datapath — then trace one load and one add through the pipelined, cached, translated, interruptible machine, each step cross-linked to the lesson that built it. We close with the map of the course as a stack of layers and an accounting of what we simplified: out-of-order execution, superscalar issue, and speculation past the branch predictor.\n",{"title":300,"path":301,"lessonNumber":17,"topics":302,"summary":303},"Assembling a Complete CPU","\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu",[290],"We bolt the parts the course built — PC, instruction memory and its fetch logic, register file, ALU, condition codes, data memory, and the control unit — into one complete CPU, name the lesson that built each, wire them in a deliberate order, and power the machine on from reset. Then we assemble a real test program (sum a four-element array through a call\u002Fret procedure), give its exact bytes and memory layout, and trace it cycle by cycle to the answer 0xabcdabcdabcd. We close with how to validate such a machine, and what it takes to put two of them on one die.\n",{"id":305,"title":162,"blurb":306,"body":307,"brief":2004,"category":2005,"description":2006,"draft":2007,"extension":2008,"meta":2009,"module":138,"navigation":2011,"path":163,"practice":2012,"rawbody":2013,"readingTime":2014,"seo":2019,"sources":2020,"status":2027,"stem":2028,"summary":165,"topics":2029,"__hash__":2030},"course\u002F03.computer-architecture\u002F04.processor-design\u002F05.tracing-a-program.md","",{"type":308,"value":309,"toc":1994},"minimark",[310,329,334,427,522,545,549,553,556,574,577,741,745,788,791,1069,1072,1075,1093,1097,1122,1125,1163,1167,1170,1173,1218,1222,1235,1293,1350,1353,1389,1622,1625,1629,1653,1660,1759,1776,1796,1800,1803,1975,1990],[311,312,313,314,318,319,323,324,328],"p",{},"We have a ",[315,316,317],"a",{"href":158},"complete datapath","\nand we have proven it correct on two instructions in isolation. The last thing to do\nis the thing the whole module was for: ",[320,321,322],"strong",{},"run a real program"," and watch state evolve.\nCorrect stages in isolation are not enough: a processor must, started at an address,\ndrive itself through a program by the loop we built, cycle after cycle,\nwith no external help. This lesson takes a short Y86-64 program, sets it on SEQ, and\ntraces every cycle until it halts. If the registers hold the right answer at the end,\nthe assembled datapath and control logic ",[325,326,327],"em",{},"are"," a working CPU. They do.",[330,331,333],"h2",{"id":332},"the-program","The program",[311,335,336,337,426],{},"We compute ",[338,339,342],"span",{"className":340},[341],"katex",[338,343,347,374,393,416],{"className":344,"ariaHidden":346},[345],"katex-html","true",[338,348,351,356,361,366,371],{"className":349},[350],"base",[338,352],{"className":353,"style":355},[354],"strut","height:0.7278em;vertical-align:-0.0833em;",[338,357,360],{"className":358},[359],"mord","1",[338,362],{"className":363,"style":365},[364],"mspace","margin-right:0.2222em;",[338,367,370],{"className":368},[369],"mbin","+",[338,372],{"className":373,"style":365},[364],[338,375,377,380,384,387,390],{"className":376},[350],[338,378],{"className":379,"style":355},[354],[338,381,383],{"className":382},[359],"2",[338,385],{"className":386,"style":365},[364],[338,388,370],{"className":389},[369],[338,391],{"className":392,"style":365},[364],[338,394,396,400,404,408,413],{"className":395},[350],[338,397],{"className":398,"style":399},[354],"height:0.6444em;",[338,401,403],{"className":402},[359],"3",[338,405],{"className":406,"style":407},[364],"margin-right:0.2778em;",[338,409,412],{"className":410},[411],"mrel","=",[338,414],{"className":415,"style":407},[364],[338,417,419,422],{"className":418},[350],[338,420],{"className":421,"style":399},[354],[338,423,425],{"className":424},[359],"6"," with a countdown loop: start a counter at 3, add it to a\nrunning sum, decrement, and repeat until the counter hits zero.",[428,429,434],"pre",{"className":430,"code":431,"filename":432,"language":433,"meta":306,"style":306},"language-asm shiki shiki-themes Vesper Light - Orange Boost (Quick Open Adjusted) vesper","        irmovq $3, %rdi      # rdi = n = 3   (loop counter)\n        irmovq $0, %rax      # rax = sum = 0\n        irmovq $1, %r8       # r8  = 1       (decrement constant)\nloop:\n        addq   %rdi, %rax    # sum += n\n        subq   %r8,  %rdi    # n   -= 1\n        jne    loop          # if n != 0, repeat (tests ZF)\n        halt\n","sum.ys","asm",[435,436,437,455,468,481,490,498,506,517],"code",{"__ignoreMap":306},[338,438,440,444,448,451],{"class":439,"line":6},"line",[338,441,443],{"class":442},"s3i95","        irmovq ",[338,445,447],{"class":446},"sat3U","$3",[338,449,450],{"class":442},", %rdi     ",[338,452,454],{"class":453},"sEX4i"," # rdi = n = 3   (loop counter)\n",[338,456,457,459,462,465],{"class":439,"line":17},[338,458,443],{"class":442},[338,460,461],{"class":446},"$0",[338,463,464],{"class":442},", %rax     ",[338,466,467],{"class":453}," # rax = sum = 0\n",[338,469,470,472,475,478],{"class":439,"line":23},[338,471,443],{"class":442},[338,473,474],{"class":446},"$1",[338,476,477],{"class":442},", %r8      ",[338,479,480],{"class":453}," # r8  = 1       (decrement constant)\n",[338,482,483,487],{"class":439,"line":29},[338,484,486],{"class":485},"sdxpw","loop",[338,488,489],{"class":442},":\n",[338,491,492,495],{"class":439,"line":35},[338,493,494],{"class":442},"        addq   %rdi, %rax   ",[338,496,497],{"class":453}," # sum += n\n",[338,499,500,503],{"class":439,"line":70},[338,501,502],{"class":442},"        subq   %r8,  %rdi   ",[338,504,505],{"class":453}," # n   -= 1\n",[338,507,508,511,514],{"class":439,"line":76},[338,509,510],{"class":485},"        jne",[338,512,513],{"class":485},"    loop",[338,515,516],{"class":453},"          # if n != 0, repeat (tests ZF)\n",[338,518,519],{"class":439,"line":226},[338,520,521],{"class":442},"        halt\n",[311,523,524,525,528,529,532,533,536,537,540,541,544],{},"The assembler lays this out from address ",[435,526,527],{},"0x00",". Each ",[435,530,531],{},"irmovq"," is 10 bytes, each\n",[435,534,535],{},"OPq"," is 2, the ",[435,538,539],{},"jne"," is 9, and ",[435,542,543],{},"halt"," is 1, giving the byte addresses below, which\nis what the PC steps through.",[546,547],"tikz-figure",{"hash":548},"2a5f609b552495f8ab80e1aaf87b3485cc13c9154e5c94f1b53e1411b9ca7934",[330,550,552],{"id":551},"how-to-read-one-cycle","How to read one cycle",[311,554,555],{},"SEQ executes one instruction per clock cycle: in a single tick it fetches, decodes,\nexecutes, touches memory, writes back, and updates the PC, then the new register and\nPC values clock in at the rising edge, ready for the next cycle. So one row of the\ntrace is one cycle is one instruction. For each we record the PC, the instruction\nfetched there, the salient stage computations, and the resulting state.",[311,557,558,559,561,562,565,566,569,570,573],{},"The three ",[435,560,531],{}," cycles are the warm-up. Each fetches at its address, passes the\nimmediate through the ALU (",[435,563,564],{},"valE = 0 + valC","), and writes ",[435,567,568],{},"valE"," to its register; none\ntouches memory or the condition codes, and ",[435,571,572],{},"newPC = valP",".",[546,575],{"hash":576},"210bb70b184e4c234943cf656593787fa941a7a1ff11418eea48725bdd49a18a",[311,578,579,580,620,621,659,660,697,698,740],{},"After cycle 3 the state is ",[338,581,583],{"className":582},[341],[338,584,586,611],{"className":585,"ariaHidden":346},[345],[338,587,589,593,602,605,608],{"className":588},[350],[338,590],{"className":591,"style":592},[354],"height:0.7778em;vertical-align:-0.0833em;",[338,594,597],{"className":595},[359,596],"text",[338,598,601],{"className":599},[359,600],"texttt","%rdi",[338,603],{"className":604,"style":407},[364],[338,606,412],{"className":607},[411],[338,609],{"className":610,"style":407},[364],[338,612,614,617],{"className":613},[350],[338,615],{"className":616,"style":399},[354],[338,618,403],{"className":619},[359],", ",[338,622,624],{"className":623},[341],[338,625,627,649],{"className":626,"ariaHidden":346},[345],[338,628,630,633,640,643,646],{"className":629},[350],[338,631],{"className":632,"style":592},[354],[338,634,636],{"className":635},[359,596],[338,637,639],{"className":638},[359,600],"%rax",[338,641],{"className":642,"style":407},[364],[338,644,412],{"className":645},[411],[338,647],{"className":648,"style":407},[364],[338,650,652,655],{"className":651},[350],[338,653],{"className":654,"style":399},[354],[338,656,658],{"className":657},[359],"0",",\n",[338,661,663],{"className":662},[341],[338,664,666,688],{"className":665,"ariaHidden":346},[345],[338,667,669,672,679,682,685],{"className":668},[350],[338,670],{"className":671,"style":592},[354],[338,673,675],{"className":674},[359,596],[338,676,678],{"className":677},[359,600],"%r8",[338,680],{"className":681,"style":407},[364],[338,683,412],{"className":684},[411],[338,686],{"className":687,"style":407},[364],[338,689,691,694],{"className":690},[350],[338,692],{"className":693,"style":399},[354],[338,695,360],{"className":696},[359],", condition codes unset, and ",[338,699,701],{"className":700},[341],[338,702,704,727],{"className":703,"ariaHidden":346},[345],[338,705,707,711,718,721,724],{"className":706},[350],[338,708],{"className":709,"style":710},[354],"height:0.6111em;",[338,712,714],{"className":713},[359,596],[338,715,717],{"className":716},[359,600],"PC",[338,719],{"className":720,"style":407},[364],[338,722,412],{"className":723},[411],[338,725],{"className":726,"style":407},[364],[338,728,730,733],{"className":729},[350],[338,731],{"className":732,"style":710},[354],[338,734,736],{"className":735},[359,596],[338,737,739],{"className":738},[359,600],"0x1e"," — the loop\nentry. Now the interesting part.",[330,742,744],{"id":743},"the-loop-cycle-by-cycle","The loop, cycle by cycle",[311,746,747,748,620,751,620,754,756,757,759,760,762,763,765,766,769,770,773,774,777,778,781,782,784,785,787],{},"Each iteration is three cycles: ",[435,749,750],{},"addq",[435,752,753],{},"subq",[435,755,539],{},". The ",[435,758,750],{}," updates the sum and\nsets the condition codes; the ",[435,761,753],{}," decrements the counter and sets them again; the\n",[435,764,539],{}," reads ",[435,767,768],{},"ZF"," to decide whether ",[435,771,772],{},"newPC"," is the loop target ",[435,775,776],{},"valC = 0x1e"," (taken) or\nthe fall-through ",[435,779,780],{},"valP = 0x2b"," (not taken). Watch ",[435,783,639],{}," climb and ",[435,786,601],{}," fall.",[546,789],{"hash":790},"6badfc44b5d4b443d54d920aee66e6327acc539ed4f2ab30ee586c8ad72fe5c3",[311,792,793,794,796,797,799,800,528,871,873,874,876,877,946,947,949,950,953,954,765,956,958,959,962,963,965,966,969,970,972,973,975,976,979,980,1016,1017,1068],{},"Three iterations and the loop is done. The first ",[435,795,750],{}," adds 3, the second 2, the\nthird 1, so ",[435,798,639],{}," walks ",[338,801,803],{"className":802},[341],[338,804,806,825,843,862],{"className":805,"ariaHidden":346},[345],[338,807,809,812,815,818,822],{"className":808},[350],[338,810],{"className":811,"style":399},[354],[338,813,658],{"className":814},[359],[338,816],{"className":817,"style":407},[364],[338,819,821],{"className":820},[411],"→",[338,823],{"className":824,"style":407},[364],[338,826,828,831,834,837,840],{"className":827},[350],[338,829],{"className":830,"style":399},[354],[338,832,403],{"className":833},[359],[338,835],{"className":836,"style":407},[364],[338,838,821],{"className":839},[411],[338,841],{"className":842,"style":407},[364],[338,844,846,849,853,856,859],{"className":845},[350],[338,847],{"className":848,"style":399},[354],[338,850,852],{"className":851},[359],"5",[338,854],{"className":855,"style":407},[364],[338,857,821],{"className":858},[411],[338,860],{"className":861,"style":407},[364],[338,863,865,868],{"className":864},[350],[338,866],{"className":867,"style":399},[354],[338,869,425],{"className":870},[359],[435,872,753],{}," drops ",[435,875,601],{}," by one,\n",[338,878,880],{"className":879},[341],[338,881,883,901,919,937],{"className":882,"ariaHidden":346},[345],[338,884,886,889,892,895,898],{"className":885},[350],[338,887],{"className":888,"style":399},[354],[338,890,403],{"className":891},[359],[338,893],{"className":894,"style":407},[364],[338,896,821],{"className":897},[411],[338,899],{"className":900,"style":407},[364],[338,902,904,907,910,913,916],{"className":903},[350],[338,905],{"className":906,"style":399},[354],[338,908,383],{"className":909},[359],[338,911],{"className":912,"style":407},[364],[338,914,821],{"className":915},[411],[338,917],{"className":918,"style":407},[364],[338,920,922,925,928,931,934],{"className":921},[350],[338,923],{"className":924,"style":399},[354],[338,926,360],{"className":927},[359],[338,929],{"className":930,"style":407},[364],[338,932,821],{"className":933},[411],[338,935],{"className":936,"style":407},[364],[338,938,940,943],{"className":939},[350],[338,941],{"className":942,"style":399},[354],[338,944,658],{"className":945},[359],"; the moment it reaches 0, that ",[435,948,753],{}," sets ",[435,951,952],{},"ZF = 1",", and the\nfollowing ",[435,955,539],{},[435,957,952],{},", so its branch condition ",[435,960,961],{},"Cnd"," is false and ",[435,964,772],{},"\nfalls through to ",[435,967,968],{},"0x2b"," instead of looping. Cycle 13 fetches ",[435,971,543],{}," at ",[435,974,968],{},", which\nsets ",[435,977,978],{},"Stat = HLT",", and the machine stops with ",[338,981,983],{"className":982},[341],[338,984,986,1007],{"className":985,"ariaHidden":346},[345],[338,987,989,992,998,1001,1004],{"className":988},[350],[338,990],{"className":991,"style":592},[354],[338,993,995],{"className":994},[359,596],[338,996,639],{"className":997},[359,600],[338,999],{"className":1000,"style":407},[364],[338,1002,412],{"className":1003},[411],[338,1005],{"className":1006,"style":407},[364],[338,1008,1010,1013],{"className":1009},[350],[338,1011],{"className":1012,"style":399},[354],[338,1014,425],{"className":1015},[359]," — the sum\n",[338,1018,1020],{"className":1019},[341],[338,1021,1023,1041,1059],{"className":1022,"ariaHidden":346},[345],[338,1024,1026,1029,1032,1035,1038],{"className":1025},[350],[338,1027],{"className":1028,"style":355},[354],[338,1030,360],{"className":1031},[359],[338,1033],{"className":1034,"style":365},[364],[338,1036,370],{"className":1037},[369],[338,1039],{"className":1040,"style":365},[364],[338,1042,1044,1047,1050,1053,1056],{"className":1043},[350],[338,1045],{"className":1046,"style":355},[354],[338,1048,383],{"className":1049},[359],[338,1051],{"className":1052,"style":365},[364],[338,1054,370],{"className":1055},[369],[338,1057],{"className":1058,"style":365},[364],[338,1060,1062,1065],{"className":1061},[350],[338,1063],{"className":1064,"style":399},[354],[338,1066,403],{"className":1067},[359],", exactly as the program intends.",[311,1070,1071],{},"Laying out the register state across the twelve loop cycles as one table makes the\nconvergence visible.",[546,1073],{"hash":1074},"d2da8c3ac55ce4e9682ba7917c93fab1a56f26519d742f867e1c746d33282461",[311,1076,1077,1078,1080,1081,1083,1084,1086,1087,1089,1090,1092],{},"Read down the ",[435,1079,639],{}," column and the program's whole purpose is visible: 3, 3, 3, 5, 5,\n5, 6, 6, 6, 6 — the sum settling as each iteration folds in one more term. Read down\n",[435,1082,768],{}," and the loop's exit condition is visible: it is 0 until cycle 11's ",[435,1085,753],{}," zeroes\n",[435,1088,601],{},", and the cycle-12 ",[435,1091,539],{}," that reads it is the one that finally falls through.",[330,1094,1096],{"id":1095},"cycle-4-under-the-microscope","Cycle 4 under the microscope",[311,1098,1099,1100,1103,1104,1107,1108,1111,1112,1114,1115,1118,1119,573],{},"The trace above records outcomes. To connect it back to the\n",[315,1101,1102],{"href":153},"control logic",",\nfreeze one cycle and write down ",[320,1105,1106],{},"every named signal",": the full contents of the\nstage tables and HCL, evaluated with real numbers. Take cycle 4, the first ",[435,1109,1110],{},"addq %rdi, %rax",", fetched at ",[435,1113,739],{}," with ",[435,1116,1117],{},"%rdi = 3"," and ",[435,1120,1121],{},"%rax = 0",[546,1123],{"hash":1124},"4ac832be985d022447e655e65be96c71da90d6843b0cc99291e20f31353a0784",[311,1126,1127,1128,1131,1132,620,1135,620,1138,1141,1142,1144,1145,1118,1148,1151,1152,1155,1156,1158,1159,1162],{},"Every entry is forced. The bytes ",[435,1129,1130],{},"60 70"," are forced by the assembler; the selects\n",[435,1133,1134],{},"srcA = rA",[435,1136,1137],{},"srcB = rB",[435,1139,1140],{},"dstE = rB"," are the ",[435,1143,535],{}," lines of the HCL; the values\n",[435,1146,1147],{},"0x3",[435,1149,1150],{},"0x0"," are what cycles 1 and 2 left in the registers; ",[435,1153,1154],{},"ZF = 0"," because\n",[435,1157,1147],{}," is nonzero. Each signal traces back to the matching ",[435,1160,1161],{},"case"," expression in\nlesson 3; this table is that logic, evaluated once.",[330,1164,1166],{"id":1165},"a-snapshot-mid-flight","A snapshot mid-flight",[311,1168,1169],{},"The same cycle, drawn on the datapath. The figure shows the live values on the key\nwires as the instruction climbs the bands.",[546,1171],{"hash":1172},"eb20c654fce69ef5e9273190f77f9e0efc2fb6a949ac95b411ee0d5007affee3",[311,1174,1175,1176,1179,1180,1182,1183,1185,1186,1189,1190,1193,1194,1196,1197,1199,1200,1155,1203,1205,1206,1209,1210,1213,1214,1217],{},"Every value on that snapshot was derived, not asserted: ",[435,1177,1178],{},"valA = 3"," because Decode read\n",[435,1181,601],{},", which cycle 1's ",[435,1184,531],{}," set; ",[435,1187,1188],{},"valE = 3"," because the ALU added ",[435,1191,1192],{},"valB = 0"," and\n",[435,1195,1178],{},"; ",[435,1198,1154],{}," because the result is nonzero; ",[435,1201,1202],{},"newPC = 0x20 = 0x1e + 2",[435,1204,750],{}," is two bytes and is not a branch. The control logic of\n",[315,1207,1208],{"href":153},"lesson 3"," chose\nevery mux input; the stage tables of\n",[315,1211,1212],{"href":148},"lesson 2"," defined every\ncomputation; the ",[315,1215,1216],{"href":158},"datapath","\ncarried the bits. Nothing outside the machine intervened.",[330,1219,1221],{"id":1220},"a-second-program-call-and-ret-through-the-stack","A second program: call and ret through the stack",[311,1223,1224,1226,1227,1230,1231,1234],{},[435,1225,432],{}," never touches memory. To watch the stack machinery — the ",[435,1228,1229],{},"%rsp"," bookkeeping,\nthe memory write of a return address, the ",[435,1232,1233],{},"valM","-into-PC wire — run a second program,\nfive instructions long.",[428,1236,1239],{"className":430,"code":1237,"filename":1238,"language":433,"meta":306,"style":306},"        irmovq $0x100, %rsp  # 0x000: set up the stack\n        call sum3            # 0x00a: push 0x013, jump to sum3\n        halt                 # 0x013: after the return\nsum3:\n        irmovq $6, %rax      # 0x014: the function body\n        ret                  # 0x01e: pop 0x013 into the PC\n","callret.ys",[435,1240,1241,1249,1260,1268,1273,1285],{"__ignoreMap":306},[338,1242,1243,1246],{"class":439,"line":6},[338,1244,1245],{"class":442},"        irmovq $0x100, %rsp ",[338,1247,1248],{"class":453}," # 0x000: set up the stack\n",[338,1250,1251,1254,1257],{"class":439,"line":17},[338,1252,1253],{"class":485},"        call",[338,1255,1256],{"class":442}," sum3           ",[338,1258,1259],{"class":453}," # 0x00a: push 0x013, jump to sum3\n",[338,1261,1262,1265],{"class":439,"line":23},[338,1263,1264],{"class":442},"        halt                ",[338,1266,1267],{"class":453}," # 0x013: after the return\n",[338,1269,1270],{"class":439,"line":29},[338,1271,1272],{"class":446},"sum3:\n",[338,1274,1275,1277,1280,1282],{"class":439,"line":35},[338,1276,443],{"class":442},[338,1278,1279],{"class":446},"$6",[338,1281,464],{"class":442},[338,1283,1284],{"class":453}," # 0x014: the function body\n",[338,1286,1287,1290],{"class":439,"line":70},[338,1288,1289],{"class":485},"        ret",[338,1291,1292],{"class":453},"                  # 0x01e: pop 0x013 into the PC\n",[311,1294,1295,1296,1298,1299,620,1302,1305,1306,620,1309,1311,1312,1315,1316,972,1319,1322,1323,1325,1326,972,1329,1332,1333,1335,1336,1338,1339,1341,1342,1344,1345,1347,1348,573],{},"The layout: ",[435,1297,531],{}," (10 bytes) at ",[435,1300,1301],{},"0x000",[435,1303,1304],{},"call"," (9 bytes) at ",[435,1307,1308],{},"0x00a",[435,1310,543],{}," at\n",[435,1313,1314],{},"0x013",", then ",[435,1317,1318],{},"sum3",[435,1320,1321],{},"0x014"," with its ",[435,1324,531],{}," and the ",[435,1327,1328],{},"ret",[435,1330,1331],{},"0x01e",". Five\ncycles run: the two ",[435,1334,531],{},"s bracket the ",[435,1337,1304],{}," (cycles 1–3), then ",[435,1340,1328],{}," (cycle 4)\nand ",[435,1343,543],{}," (cycle 5). The two cycles worth tracing in full are the ",[435,1346,1304],{}," and the\n",[435,1349,1328],{},[546,1351],{"hash":1352},"c82c6f41dd56c6678aaa6a48ee50853bab623c497b4fd3655f4797550e4487aa",[311,1354,1355,1356,1358,1359,1361,1362,1368,1369,1371,1372,1375,1376,1378,1379,1381,1382,1384,1385,1388],{},"The two tables are mirror images through the stack. ",[435,1357,1304],{}," writes ",[435,1360,1314],{},", an\naddress ",[325,1363,1364,1365],{},"it computed as ",[435,1366,1367],{},"valP"," (the byte after its own 9-byte body), into memory at\nthe decremented ",[435,1370,1229],{},", and that number sits inert at ",[435,1373,1374],{},"0xf8"," for two cycles while\n",[435,1377,1318],{}," runs. Then ",[435,1380,1328],{},", knowing nothing about who called, reads whatever the top of\nthe stack holds, and the machine lands back at ",[435,1383,543],{},". The trace confirms what\nthe ",[315,1386,1387],{"href":64},"procedures lesson","\nclaimed: a return address is just a word in memory, trusted absolutely.",[311,1390,1391,1392,1394,1395,1397,1398,1400,1401,1460,1461,1463,1464,1524,1525,1527,1528,1530,1531,1588,1589,1591,1592,1595,1596,1599,1600,1602,1603,1605,1606,1609,1610,1613,1614,1616,1617,1347,1619,1621],{},"Check the arithmetic that has to line up for this to work, because a single wrong\nconstant would break it. The ",[435,1393,1304],{}," sits at ",[435,1396,1308],{}," and is 9 bytes long, so its ",[435,1399,1367],{},"\nis ",[338,1402,1404],{"className":1403},[341],[338,1405,1407,1429,1448],{"className":1406,"ariaHidden":346},[345],[338,1408,1410,1414,1420,1423,1426],{"className":1409},[350],[338,1411],{"className":1412,"style":1413},[354],"height:0.6944em;vertical-align:-0.0833em;",[338,1415,1417],{"className":1416},[359,596],[338,1418,1308],{"className":1419},[359,600],[338,1421],{"className":1422,"style":365},[364],[338,1424,370],{"className":1425},[369],[338,1427],{"className":1428,"style":365},[364],[338,1430,1432,1435,1439,1442,1445],{"className":1431},[350],[338,1433],{"className":1434,"style":399},[354],[338,1436,1438],{"className":1437},[359],"9",[338,1440],{"className":1441,"style":407},[364],[338,1443,412],{"className":1444},[411],[338,1446],{"className":1447,"style":407},[364],[338,1449,1451,1454],{"className":1450},[350],[338,1452],{"className":1453,"style":710},[354],[338,1455,1457],{"className":1456},[359,596],[338,1458,1314],{"className":1459},[359,600]," — the address of the ",[435,1462,543],{},", the point\nwhere control should resume. Execute decrements the stack pointer by 8, so\n",[338,1465,1467],{"className":1466},[341],[338,1468,1470,1493,1512],{"className":1469,"ariaHidden":346},[345],[338,1471,1473,1476,1483,1486,1490],{"className":1472},[350],[338,1474],{"className":1475,"style":1413},[354],[338,1477,1479],{"className":1478},[359,596],[338,1480,1482],{"className":1481},[359,600],"0x100",[338,1484],{"className":1485,"style":365},[364],[338,1487,1489],{"className":1488},[369],"−",[338,1491],{"className":1492,"style":365},[364],[338,1494,1496,1499,1503,1506,1509],{"className":1495},[350],[338,1497],{"className":1498,"style":399},[354],[338,1500,1502],{"className":1501},[359],"8",[338,1504],{"className":1505,"style":407},[364],[338,1507,412],{"className":1508},[411],[338,1510],{"className":1511,"style":407},[364],[338,1513,1515,1518],{"className":1514},[350],[338,1516],{"className":1517,"style":710},[354],[338,1519,1521],{"className":1520},[359,596],[338,1522,1374],{"className":1523},[359,600],", and Memory stores ",[435,1526,1314],{}," there. When ",[435,1529,1328],{}," runs,\nits Execute adds 8 back (",[338,1532,1534],{"className":1533},[341],[338,1535,1537,1558,1576],{"className":1536,"ariaHidden":346},[345],[338,1538,1540,1543,1549,1552,1555],{"className":1539},[350],[338,1541],{"className":1542,"style":1413},[354],[338,1544,1546],{"className":1545},[359,596],[338,1547,1374],{"className":1548},[359,600],[338,1550],{"className":1551,"style":365},[364],[338,1553,370],{"className":1554},[369],[338,1556],{"className":1557,"style":365},[364],[338,1559,1561,1564,1567,1570,1573],{"className":1560},[350],[338,1562],{"className":1563,"style":399},[354],[338,1565,1502],{"className":1566},[359],[338,1568],{"className":1569,"style":407},[364],[338,1571,412],{"className":1572},[411],[338,1574],{"className":1575,"style":407},[364],[338,1577,1579,1582],{"className":1578},[350],[338,1580],{"className":1581,"style":710},[354],[338,1583,1585],{"className":1584},[359,596],[338,1586,1482],{"className":1587},[359,600],", restoring ",[435,1590,1229],{},"), but\nits ",[325,1593,1594],{},"address"," is ",[435,1597,1598],{},"valA = 0xf8",", the pre-increment top, so it reads the word ",[435,1601,1314],{},"\nthat ",[435,1604,1304],{}," left — not the word above it. The off-by-eight bug flagged in\n",[315,1607,1608],{"href":153},"lesson 3's memory control","\namounts to using ",[435,1611,1612],{},"valE = 0x100"," as the read address instead of\n",[435,1615,1598],{},"; the trace shows the correct choice landing back on ",[435,1618,1314],{},[435,1620,543],{},", and any other choice would return into garbage.",[546,1623],{"hash":1624},"8fef609f0fe24f6a07b955996b6e98f77b4297e2dff5cc37ab705a2d5cd37745",[330,1626,1628],{"id":1627},"counting-cycles-and-the-cpi-that-motivates-pipelining","Counting cycles and the CPI that motivates pipelining",[311,1630,1631,1632,1635,1636,1638,1639,1642,1643,1645,1646,1648,1649,1652],{},"The trace also lets us ",[325,1633,1634],{},"measure"," SEQ, and the measurement motivates the next module. ",[435,1637,432],{}," executed ",[320,1640,1641],{},"13 instructions in 13 cycles",": three ",[435,1644,531],{},", three\nloop iterations of three instructions each, and one ",[435,1647,543],{},". SEQ runs exactly one\ninstruction per cycle, so its ",[320,1650,1651],{},"cycles per instruction (CPI) is exactly 1"," — you\ncannot do better than one instruction every clock tick if the whole machine is one big\ncombinational settle per instruction.",[311,1654,1655,1656,1659],{},"CPI is only half of what determines speed. The usual accounting (Bryant & O'Hallaron,\n",[325,1657,1658],{},"CS:APP"," §4.3 and §5.7) writes a program's running time as",[338,1661,1664],{"className":1662},[1663],"katex-display",[338,1665,1667],{"className":1666},[341],[338,1668,1670,1693,1717,1740],{"className":1669,"ariaHidden":346},[345],[338,1671,1673,1677,1684,1687,1690],{"className":1672},[350],[338,1674],{"className":1675,"style":1676},[354],"height:0.6679em;",[338,1678,1680],{"className":1679},[359,596],[338,1681,1683],{"className":1682},[359],"time",[338,1685],{"className":1686,"style":407},[364],[338,1688,412],{"className":1689},[411],[338,1691],{"className":1692,"style":407},[364],[338,1694,1696,1700,1707,1710,1714],{"className":1695},[350],[338,1697],{"className":1698,"style":1699},[354],"height:0.7512em;vertical-align:-0.0833em;",[338,1701,1703],{"className":1702},[359,596],[338,1704,1706],{"className":1705},[359],"instructions",[338,1708],{"className":1709,"style":365},[364],[338,1711,1713],{"className":1712},[369],"×",[338,1715],{"className":1716,"style":365},[364],[338,1718,1720,1724,1731,1734,1737],{"className":1719},[350],[338,1721],{"className":1722,"style":1723},[354],"height:0.7667em;vertical-align:-0.0833em;",[338,1725,1727],{"className":1726},[359,596],[338,1728,1730],{"className":1729},[359],"CPI",[338,1732],{"className":1733,"style":365},[364],[338,1735,1713],{"className":1736},[369],[338,1738],{"className":1739,"style":365},[364],[338,1741,1743,1747,1754],{"className":1742},[350],[338,1744],{"className":1745,"style":1746},[354],"height:0.8889em;vertical-align:-0.1944em;",[338,1748,1750],{"className":1749},[359,596],[338,1751,1753],{"className":1752},[359],"clock period",[338,1755,1758],{"className":1756},[1757],"mpunct",",",[311,1760,1761,1762,1765,1766,1769,1770,1772,1773,1775],{},"and SEQ wins the middle factor (CPI = 1) only by paying dearly on the third. The clock\nperiod had to cover the ",[325,1763,1764],{},"entire"," critical path — instruction fetch, register read, ALU,\ndata memory, and the New-PC mux in series — so on the illustrative delays of\n",[315,1767,1768],{"href":158},"the previous lesson"," that\nperiod was near 390 ps. Every one of ",[435,1771,432],{},"'s 13 cycles was that long, even the\n",[435,1774,750],{}," cycles that needed no memory at all.",[311,1777,1778,1779,1782,1783,1785,1786,1788,1789,1791,1792,1795],{},"Pipelining attacks the third factor without giving up much of the first. If the six\nstages each get their own clock band and several instructions occupy different stages\nat once, the clock period drops toward the delay of the ",[325,1780,1781],{},"single slowest stage"," (roughly\nthe 120 ps of a memory access) rather than the sum of all of them. The ideal is CPI\nstill near 1 but a clock several times faster — which, on a straight-line program like\n",[435,1784,432],{},", is a several-fold speedup for free. The catch is the loop: ",[435,1787,432],{},"'s ",[435,1790,539],{},"\ndoes not know its target until it has been executed, and a pipeline that has already\nbegun fetching past the branch may have guessed wrong. Resolving those hazards — data\ndependencies between overlapping instructions, and control dependencies at branches —\nis the entire subject of the ",[315,1793,1794],{"href":177},"pipelining\nmodule",", and this trace is the\nbaseline it improves on: correct, simple, and one instruction slow at a time.",[330,1797,1799],{"id":1798},"what-we-have-built","What we have built",[311,1801,1802],{},"The traces close the loop the module opened. Twelve cycles of pure combinational\nchoices, clocked one instruction at a time, took three registers from an initial state\nto the correct answer and stopped at the right place; five more cycles pushed a return\naddress, ran a function, and came back through it, and at no point did anything\ndirect the machine but its own PC and the bytes it pointed at. That is the entire\nclaim of the stored-program computer, realized in logic we specified gate by\ngate.",[1804,1805,1807],"callout",{"type":1806},"note",[311,1808,1809,1812,1813,1815,1816,1818,1819,1821,1822,1821,1824,1826,1827,1829,1830,1118,1899,1829,1901,1934,1935,949,1937,1939,1940,1942,1943,1945,1946,1948,1949,620,1952,659,1955,620,1958,1961,1962,620,1964,1118,1966,1968,1969,1971,1972,1974],{},[320,1810,1811],{},"Takeaway."," Run cycle by cycle, SEQ executes ",[435,1814,432],{}," exactly: three ",[435,1817,531],{},"\ninitialize the registers, then three loop iterations of ",[435,1820,750],{},"\u002F",[435,1823,753],{},[435,1825,539],{}," carry\n",[435,1828,639],{}," ",[338,1831,1833],{"className":1832},[341],[338,1834,1836,1854,1872,1890],{"className":1835,"ariaHidden":346},[345],[338,1837,1839,1842,1845,1848,1851],{"className":1838},[350],[338,1840],{"className":1841,"style":399},[354],[338,1843,658],{"className":1844},[359],[338,1846],{"className":1847,"style":407},[364],[338,1849,821],{"className":1850},[411],[338,1852],{"className":1853,"style":407},[364],[338,1855,1857,1860,1863,1866,1869],{"className":1856},[350],[338,1858],{"className":1859,"style":399},[354],[338,1861,403],{"className":1862},[359],[338,1864],{"className":1865,"style":407},[364],[338,1867,821],{"className":1868},[411],[338,1870],{"className":1871,"style":407},[364],[338,1873,1875,1878,1881,1884,1887],{"className":1874},[350],[338,1876],{"className":1877,"style":399},[354],[338,1879,852],{"className":1880},[359],[338,1882],{"className":1883,"style":407},[364],[338,1885,821],{"className":1886},[411],[338,1888],{"className":1889,"style":407},[364],[338,1891,1893,1896],{"className":1892},[350],[338,1894],{"className":1895,"style":399},[354],[338,1897,425],{"className":1898},[359],[435,1900,601],{},[338,1902,1904],{"className":1903},[341],[338,1905,1907,1925],{"className":1906,"ariaHidden":346},[345],[338,1908,1910,1913,1916,1919,1922],{"className":1909},[350],[338,1911],{"className":1912,"style":399},[354],[338,1914,403],{"className":1915},[359],[338,1917],{"className":1918,"style":407},[364],[338,1920,821],{"className":1921},[411],[338,1923],{"className":1924,"style":407},[364],[338,1926,1928,1931],{"className":1927},[350],[338,1929],{"className":1930,"style":399},[354],[338,1932,658],{"className":1933},[359],", the last ",[435,1936,753],{},[435,1938,952],{}," so\nthe final ",[435,1941,539],{}," falls through, and ",[435,1944,543],{}," stops the machine with the sum 6 in\n",[435,1947,639],{},". Frozen mid-cycle, every named signal — ",[435,1950,1951],{},"icode 6:0",[435,1953,1954],{},"srcA = 7",[435,1956,1957],{},"valE = 0x3",[435,1959,1960],{},"newPC = 0x20"," — is the control logic evaluated with real bytes; and\nin ",[435,1963,1238],{},[435,1965,1304],{},[435,1967,1328],{}," meet through one word of memory at ",[435,1970,1374],{},". The\nmachine's behavior follows entirely from the wiring — which means the assembled\ndatapath and control logic ",[325,1973,327],{}," a functioning processor.",[311,1976,1977,1978,1981,1982,1985,1986,1989],{},"The course has now gone from bits and bytes, through an instruction\nset, through gates and memory, to a circuit that runs programs. From here the\nquestions become ",[325,1979,1980],{},"how fast"," — the same six stages, overlapped in a\n",[315,1983,1984],{"href":177},"pipeline"," so several\ninstructions are in flight at once — and ",[325,1987,1988],{},"how to keep the data close",", with the\nmemory hierarchy and caches.",[1991,1992,1993],"style",{},"html pre.shiki code .s3i95, html code.shiki .s3i95{--shiki-default:#000000;--shiki-dark-mode:#FFF}html pre.shiki code .sat3U, html code.shiki .sat3U{--shiki-default:#FF8C00;--shiki-dark-mode:#FFC799}html pre.shiki code .sEX4i, html code.shiki .sEX4i{--shiki-default:#8B8B8B;--shiki-dark-mode:#8B8B8B94}html pre.shiki code .sdxpw, html code.shiki .sdxpw{--shiki-default:#505050;--shiki-dark-mode:#A0A0A0}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark-mode .shiki span {color: var(--shiki-dark-mode);background: var(--shiki-dark-mode-bg);font-style: var(--shiki-dark-mode-font-style);font-weight: var(--shiki-dark-mode-font-weight);text-decoration: var(--shiki-dark-mode-text-decoration);}html.dark-mode .shiki span {color: var(--shiki-dark-mode);background: var(--shiki-dark-mode-bg);font-style: var(--shiki-dark-mode-font-style);font-weight: var(--shiki-dark-mode-font-weight);text-decoration: var(--shiki-dark-mode-text-decoration);}",{"title":306,"searchDepth":17,"depth":17,"links":1995},[1996,1997,1998,1999,2000,2001,2002,2003],{"id":332,"depth":17,"text":333},{"id":551,"depth":17,"text":552},{"id":743,"depth":17,"text":744},{"id":1095,"depth":17,"text":1096},{"id":1165,"depth":17,"text":1166},{"id":1220,"depth":17,"text":1221},{"id":1627,"depth":17,"text":1628},{"id":1798,"depth":17,"text":1799},[],"computer-science","We have a complete datapath\nand we have proven it correct on two instructions in isolation. The last thing to do\nis the thing the whole module was for: run a real program and watch state evolve.\nCorrect stages in isolation are not enough: a processor must, started at an address,\ndrive itself through a program by the loop we built, cycle after cycle,\nwith no external help. This lesson takes a short Y86-64 program, sets it on SEQ, and\ntraces every cycle until it halts. If the registers hold the right answer at the end,\nthe assembled datapath and control logic are a working CPU. They do.",false,"md",{"moduleNumber":29,"lessonNumber":35,"order":2010},405,true,[],"---\ntitle: Tracing a Program\nmodule: Processor Design\nmoduleNumber: 4\nlessonNumber: 5\norder: 405\nsummary: >\n  To close the module, we take a complete Y86-64 program — a loop that sums 1\n  through 3 — and run it through SEQ one cycle at a time, recording the PC, the\n  fetched instruction, every stage computation, and the registers, condition\n  codes, and memory after each cycle. Then we examine single cycles in detail:\n  every named signal of an OPq in concrete hex, and a second program whose call\n  and ret we trace through the stack. The traces confirm that the assembled\n  datapath and control logic behave as a processor.\ntopics: [Processor Design]\nsources:\n  - book: Bryant & O'Hallaron\n    ref: \"CS:APP — §4.3 Sequential Y86-64 Implementations\"\n  - book: Bistriceanu\n    ref: \"Computer Architecture Notes — §5 CPU Implementation (Executing an instruction; Hardwired control)\"\n---\n\nWe have a [complete datapath](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq)\nand we have proven it correct on two instructions in isolation. The last thing to do\nis the thing the whole module was for: **run a real program** and watch state evolve.\nCorrect stages in isolation are not enough: a processor must, started at an address,\ndrive itself through a program by the loop we built, cycle after cycle,\nwith no external help. This lesson takes a short Y86-64 program, sets it on SEQ, and\ntraces every cycle until it halts. If the registers hold the right answer at the end,\nthe assembled datapath and control logic _are_ a working CPU. They do.\n\n## The program\n\nWe compute $1 + 2 + 3 = 6$ with a countdown loop: start a counter at 3, add it to a\nrunning sum, decrement, and repeat until the counter hits zero.\n\n```asm [sum.ys]\n        irmovq $3, %rdi      # rdi = n = 3   (loop counter)\n        irmovq $0, %rax      # rax = sum = 0\n        irmovq $1, %r8       # r8  = 1       (decrement constant)\nloop:\n        addq   %rdi, %rax    # sum += n\n        subq   %r8,  %rdi    # n   -= 1\n        jne    loop          # if n != 0, repeat (tests ZF)\n        halt\n```\n\nThe assembler lays this out from address `0x00`. Each `irmovq` is 10 bytes, each\n`OPq` is 2, the `jne` is 9, and `halt` is 1, giving the byte addresses below, which\nis what the PC steps through.\n\n$$\n% caption: The byte layout of sum.ys from address 0. The three irmovq each take 10\n% caption: bytes, so the loop body starts at 0x1e; addq and subq are 2 bytes each, jne\n% caption: is 9, and halt is 1. The jne destination is the loop label, 0x1e.\n\\begin{tikzpicture}[font=\\footnotesize,\n  row\u002F.style={anchor=west}, ad\u002F.style={anchor=east, text=acc, font=\\ttfamily}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\foreach \\y\u002F\\a\u002F\\txt in {\n    0\u002F{0x00}\u002F{irmovq {\\char36}3,\\%rdi},\n    -0.7\u002F{0x0a}\u002F{irmovq {\\char36}0,\\%rax},\n    -1.4\u002F{0x14}\u002F{irmovq {\\char36}1,\\%r8},\n    -2.1\u002F{0x1e}\u002F{loop: addq \\%rdi,\\%rax},\n    -2.8\u002F{0x20}\u002F{subq \\%r8,\\%rdi},\n    -3.5\u002F{0x22}\u002F{jne 0x1e},\n    -4.2\u002F{0x2b}\u002F{halt}} {\n    \\node[ad] at (0,\\y) {\\a};\n    \\node[row, font=\\ttfamily] at (0.4,\\y) {\\txt};\n  }\n  \\draw[acc!50] (-0.95,0.35) -- (-0.95,-4.55);\n\\end{tikzpicture}\n$$\n\n## How to read one cycle\n\nSEQ executes one instruction per clock cycle: in a single tick it fetches, decodes,\nexecutes, touches memory, writes back, and updates the PC, then the new register and\nPC values clock in at the rising edge, ready for the next cycle. So one row of the\ntrace is one cycle is one instruction. For each we record the PC, the instruction\nfetched there, the salient stage computations, and the resulting state.\n\nThe three `irmovq` cycles are the warm-up. Each fetches at its address, passes the\nimmediate through the ALU (`valE = 0 + valC`), and writes `valE` to its register; none\ntouches memory or the condition codes, and `newPC = valP`.\n\n$$\n% caption: Cycles 1-3: the three irmovq instructions load the initial registers. Each\n% caption: computes valE = 0 + valC and writes it to dstE = rB; PC advances by 10 each\n% caption: time (valP). No memory, no condition codes. After cycle 3 the loop begins.\n\\begin{tikzpicture}[font=\\footnotesize,\n  h\u002F.style={anchor=west, text=acc, font=\\scriptsize\\bfseries},\n  c\u002F.style={anchor=west}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\draw[acc!40] (-0.3,0.45) -- (13.6,0.45);\n  \\node[h] at (-0.2,0.85) {cyc}; \\node[h] at (0.9,0.85) {PC};\n  \\node[h] at (2.3,0.85) {instruction}; \\node[h] at (6.0,0.85) {Execute \u002F Write-back};\n  \\node[h] at (10.6,0.85) {state after};\n  \\foreach \\y\u002F\\cy\u002F\\pc\u002F\\ins\u002F\\ex\u002F\\st in {\n    0\u002F1\u002F{0x00}\u002F{irmovq {\\char36}3,\\%rdi}\u002F{valE$=$3 $\\to$ \\%rdi}\u002F{\\%rdi$=$3},\n    -0.75\u002F2\u002F{0x0a}\u002F{irmovq {\\char36}0,\\%rax}\u002F{valE$=$0 $\\to$ \\%rax}\u002F{\\%rax$=$0},\n    -1.5\u002F3\u002F{0x14}\u002F{irmovq {\\char36}1,\\%r8}\u002F{valE$=$1 $\\to$ \\%r8}\u002F{\\%r8$=$1}} {\n    \\node[c] at (-0.2,\\y) {\\cy}; \\node[c, font=\\ttfamily] at (0.9,\\y) {\\pc};\n    \\node[c, font=\\ttfamily] at (2.3,\\y) {\\ins};\n    \\node[c] at (6.0,\\y) {\\ex}; \\node[c] at (10.6,\\y) {\\st};\n    \\draw[acc!25] (-0.3,\\y-0.37) -- (13.6,\\y-0.37);\n  }\n\\end{tikzpicture}\n$$\n\nAfter cycle 3 the state is $\\texttt{\\%rdi}=3$, $\\texttt{\\%rax}=0$,\n$\\texttt{\\%r8}=1$, condition codes unset, and $\\texttt{PC}=\\texttt{0x1e}$ — the loop\nentry. Now the interesting part.\n\n## The loop, cycle by cycle\n\nEach iteration is three cycles: `addq`, `subq`, `jne`. The `addq` updates the sum and\nsets the condition codes; the `subq` decrements the counter and sets them again; the\n`jne` reads `ZF` to decide whether `newPC` is the loop target `valC = 0x1e` (taken) or\nthe fall-through `valP = 0x2b` (not taken). Watch `%rax` climb and `%rdi` fall.\n\n$$\n% caption: Cycles 4-12: three loop iterations. Each addq adds %rdi into %rax; each\n% caption: subq drops %rdi by 1 and sets ZF; each jne takes the branch (newPC=0x1e)\n% caption: while ZF=0, and falls through (newPC=0x2b) when the last subq makes %rdi 0,\n% caption: setting ZF=1. The sum reaches 6.\n\\begin{tikzpicture}[font=\\footnotesize,\n  h\u002F.style={anchor=west, text=acc, font=\\scriptsize\\bfseries}, c\u002F.style={anchor=west}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\draw[acc!40] (-0.3,0.45) -- (14.6,0.45);\n  \\node[h] at (-0.2,0.85){cyc}; \\node[h] at (0.85,0.85){PC};\n  \\node[h] at (2.2,0.85){instruction}; \\node[h] at (5.4,0.85){computation};\n  \\node[h] at (9.0,0.85){CC after}; \\node[h] at (11.0,0.85){newPC};\n  \\node[h] at (12.6,0.85){state};\n  \\foreach \\y\u002F\\cy\u002F\\pc\u002F\\ins\u002F\\co\u002F\\cc\u002F\\np\u002F\\st in {\n    0\u002F4\u002F{0x1e}\u002F{addq \\%rdi,\\%rax}\u002F{\\%rax$=$0$+$3}\u002F{ZF0 SF0}\u002F{0x20}\u002F{\\%rax$=$3},\n    -0.7\u002F5\u002F{0x20}\u002F{subq \\%r8,\\%rdi}\u002F{\\%rdi$=$3 - 1}\u002F{ZF0 SF0}\u002F{0x22}\u002F{\\%rdi$=$2},\n    -1.4\u002F6\u002F{0x22}\u002F{jne 0x1e}\u002F{ZF$=$0: taken}\u002F{-}\u002F{0x1e}\u002F{loop again},\n    -2.3\u002F7\u002F{0x1e}\u002F{addq \\%rdi,\\%rax}\u002F{\\%rax$=$3$+$2}\u002F{ZF0 SF0}\u002F{0x20}\u002F{\\%rax$=$5},\n    -3.0\u002F8\u002F{0x20}\u002F{subq \\%r8,\\%rdi}\u002F{\\%rdi$=$2 - 1}\u002F{ZF0 SF0}\u002F{0x22}\u002F{\\%rdi$=$1},\n    -3.7\u002F9\u002F{0x22}\u002F{jne 0x1e}\u002F{ZF$=$0: taken}\u002F{-}\u002F{0x1e}\u002F{loop again},\n    -4.6\u002F10\u002F{0x1e}\u002F{addq \\%rdi,\\%rax}\u002F{\\%rax$=$5$+$1}\u002F{ZF0 SF0}\u002F{0x20}\u002F{\\%rax$=$6},\n    -5.3\u002F11\u002F{0x20}\u002F{subq \\%r8,\\%rdi}\u002F{\\%rdi$=$1 - 1}\u002F{ZF1 SF0}\u002F{0x22}\u002F{\\%rdi$=$0},\n    -6.0\u002F12\u002F{0x22}\u002F{jne 0x1e}\u002F{ZF$=$1: fall}\u002F{-}\u002F{0x2b}\u002F{exit loop}} {\n    \\node[c] at (-0.2,\\y){\\cy}; \\node[c, font=\\ttfamily] at (0.85,\\y){\\pc};\n    \\node[c, font=\\ttfamily\\footnotesize] at (2.2,\\y){\\ins};\n    \\node[c] at (5.4,\\y){\\co}; \\node[c] at (9.0,\\y){\\cc};\n    \\node[c, font=\\ttfamily] at (11.0,\\y){\\np}; \\node[c] at (12.6,\\y){\\st};\n    \\draw[acc!25] (-0.3,\\y-0.35) -- (14.6,\\y-0.35);\n  }\n  % faint band separators between iterations\n  \\draw[acc!50] (-0.3,-1.78) -- (14.6,-1.78);\n  \\draw[acc!50] (-0.3,-4.08) -- (14.6,-4.08);\n\\end{tikzpicture}\n$$\n\nThree iterations and the loop is done. The first `addq` adds 3, the second 2, the\nthird 1, so `%rax` walks $0 \\to 3 \\to 5 \\to 6$. Each `subq` drops `%rdi` by one,\n$3 \\to 2 \\to 1 \\to 0$; the moment it reaches 0, that `subq` sets `ZF = 1`, and the\nfollowing `jne` reads `ZF = 1`, so its branch condition `Cnd` is false and `newPC`\nfalls through to `0x2b` instead of looping. Cycle 13 fetches `halt` at `0x2b`, which\nsets `Stat = HLT`, and the machine stops with $\\texttt{\\%rax} = 6$ — the sum\n$1 + 2 + 3$, exactly as the program intends.\n\nLaying out the register state across the twelve loop cycles as one table makes the\nconvergence visible.\n\n$$\n% caption: Register and flag state after each loop cycle (cycles 4-12), plus the halt.\n% caption: %rax accumulates 3, 5, 6 while %rdi counts down 2, 1, 0; the subq that\n% caption: zeroes %rdi sets ZF=1, so the next jne falls through and halt stops with\n% caption: %rax = 6. %r8 stays 1 throughout.\n\\begin{tikzpicture}[font=\\footnotesize,\n  h\u002F.style={anchor=west, text=acc, font=\\scriptsize\\bfseries},\n  c\u002F.style={anchor=west, font=\\ttfamily\\scriptsize}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\draw[acc!40] (-0.3,0.45) -- (12.6,0.45);\n  \\node[h] at (-0.2,0.85){after cyc}; \\node[h] at (1.9,0.85){instr};\n  \\node[h] at (4.3,0.85){\\%rax}; \\node[h] at (6.0,0.85){\\%rdi};\n  \\node[h] at (7.7,0.85){\\%r8}; \\node[h] at (9.1,0.85){ZF};\n  \\node[h] at (10.2,0.85){PC next};\n  \\foreach \\y\u002F\\cy\u002F\\ins\u002F\\ax\u002F\\di\u002F\\rr\u002F\\zf\u002F\\pc in {\n    0\u002F4\u002F{addq}\u002F{3}\u002F{3}\u002F{1}\u002F{0}\u002F{0x20},\n    -0.6\u002F5\u002F{subq}\u002F{3}\u002F{2}\u002F{1}\u002F{0}\u002F{0x22},\n    -1.2\u002F6\u002F{jne}\u002F{3}\u002F{2}\u002F{1}\u002F{0}\u002F{0x1e},\n    -1.8\u002F7\u002F{addq}\u002F{5}\u002F{2}\u002F{1}\u002F{0}\u002F{0x20},\n    -2.4\u002F8\u002F{subq}\u002F{5}\u002F{1}\u002F{1}\u002F{0}\u002F{0x22},\n    -3.0\u002F9\u002F{jne}\u002F{5}\u002F{1}\u002F{1}\u002F{0}\u002F{0x1e},\n    -3.6\u002F10\u002F{addq}\u002F{6}\u002F{1}\u002F{1}\u002F{0}\u002F{0x20},\n    -4.2\u002F11\u002F{subq}\u002F{6}\u002F{0}\u002F{1}\u002F{1}\u002F{0x22},\n    -4.8\u002F12\u002F{jne}\u002F{6}\u002F{0}\u002F{1}\u002F{1}\u002F{0x2b},\n    -5.4\u002F13\u002F{halt}\u002F{6}\u002F{0}\u002F{1}\u002F{1}\u002F{--}} {\n    \\node[c] at (-0.2,\\y){\\cy}; \\node[c] at (1.9,\\y){\\ins};\n    \\node[c] at (4.3,\\y){\\ax}; \\node[c] at (6.0,\\y){\\di};\n    \\node[c] at (7.7,\\y){\\rr}; \\node[c] at (9.1,\\y){\\zf};\n    \\node[c] at (10.2,\\y){\\pc};\n    \\draw[acc!25] (-0.3,\\y-0.3) -- (12.6,\\y-0.3);\n  }\n\\end{tikzpicture}\n$$\n\nRead down the `%rax` column and the program's whole purpose is visible: 3, 3, 3, 5, 5,\n5, 6, 6, 6, 6 — the sum settling as each iteration folds in one more term. Read down\n`ZF` and the loop's exit condition is visible: it is 0 until cycle 11's `subq` zeroes\n`%rdi`, and the cycle-12 `jne` that reads it is the one that finally falls through.\n\n## Cycle 4 under the microscope\n\nThe trace above records outcomes. To connect it back to the\n[control logic](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing),\nfreeze one cycle and write down **every named signal**: the full contents of the\nstage tables and HCL, evaluated with real numbers. Take cycle 4, the first `addq\n%rdi, %rax`, fetched at `0x1e` with `%rdi = 3` and `%rax = 0`.\n\n$$\n% caption: Every signal of cycle 4, the first addq %rdi,%rax. Fetch splits the two\n% caption: bytes 60 70 into icode 6, ifun 0, rA 7, rB 0; the control logic selects\n% caption: srcA=rA, srcB=rB, dstE=rB; the ALU adds 0x0 and 0x3; nothing touches\n% caption: memory; the E port commits 0x3 to %rax and the PC advances to 0x20.\n\\begin{tikzpicture}[font=\\footnotesize,\n  lbl\u002F.style={anchor=east, text=acc, font=\\scriptsize}, row\u002F.style={anchor=west}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\draw[acc!40] (-2.6,0.45) -- (11.6,0.45);\n  \\foreach \\y\u002F\\stage\u002F\\comp in {\n    0\u002F{Fetch}\u002F{bytes 60 70: icode$=$6, ifun$=$0, rA$=$7 (\\%rdi), rB$=$0 (\\%rax); valP$=$0x20},\n    -0.85\u002F{Decode}\u002F{srcA$=$7: valA$=$0x3;\\ srcB$=$0: valB$=$0x0;\\ dstE$=$0;\\ dstM$=$F (RNONE)},\n    -1.7\u002F{Execute}\u002F{aluA$=$0x3, aluB$=$0x0, alufun$=$ADD: valE$=$0x3;\\ set CC: ZF$=$0, SF$=$0, OF$=$0},\n    -2.55\u002F{Memory}\u002F{mem read$=$0, mem write$=$0: no access, valM undef\\\u002Fined},\n    -3.4\u002F{Write-back}\u002F{E port: $R[\\mathtt{\\%rax}] = \\mathtt{0x3}$;\\ M port idle},\n    -4.25\u002F{PC update}\u002F{not call\u002FjXX\u002Fret: newPC$=$valP$=$0x20}} {\n    \\node[lbl] at (-0.1,\\y) {\\stage};\n    \\node[row] at (0.2,\\y) {\\comp};\n    \\draw[acc!40] (-2.6,\\y-0.42) -- (11.6,\\y-0.42);\n  }\n\\end{tikzpicture}\n$$\n\nEvery entry is forced. The bytes `60 70` are forced by the assembler; the selects\n`srcA = rA`, `srcB = rB`, `dstE = rB` are the `OPq` lines of the HCL; the values\n`0x3` and `0x0` are what cycles 1 and 2 left in the registers; `ZF = 0` because\n`0x3` is nonzero. Each signal traces back to the matching `case` expression in\nlesson 3; this table is that logic, evaluated once.\n\n## A snapshot mid-flight\n\nThe same cycle, drawn on the datapath. The figure shows the live values on the key\nwires as the instruction climbs the bands.\n\n$$\n% caption: SEQ frozen during cycle 4, the addq %rdi,%rax of the first iteration. Fetch\n% caption: at PC 0x1e yields icode 6:0; Decode reads valA=3 (%rdi), valB=0 (%rax); the\n% caption: ALU adds to valE=3 and sets ZF=0; Write-back stores 3 into %rax; newPC=0x20.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  u\u002F.style={draw, fill=acc!8, align=center, inner sep=3pt, minimum height=9mm},\n  w\u002F.style={text=acc, font=\\scriptsize}]\n  \\definecolor{acc}{HTML}{2348F2}\n  % vertical stack of the active units\n  \\node[u, minimum width=22mm] (pc)  at (0,0)     {PC $=$ \\texttt{0x1e}};\n  \\node[u, minimum width=32mm] (im)  at (0,1.6)   {Instruction memory};\n  \\node[u, minimum width=32mm] (rf)  at (0,3.4)   {Register f\\\u002File};\n  \\node[u, minimum width=22mm] (alu) at (0,5.2)   {ALU ($+$)};\n  \\node[u, minimum width=22mm] (cc)  at (4.4,5.2) {CC};\n  \\node[u, minimum width=22mm] (wb)  at (0,7.0)   {Write-back};\n  \\node[u, minimum width=22mm] (npc) at (0,8.6)   {New PC};\n  % vertical wires with live values\n  \\draw[->] (pc.north) -- (im.south) node[w,midway,right]{addr \\texttt{0x1e}};\n  \\draw[->] (im.north) -- (rf.south)\n        node[w,midway,right]{icode \\texttt{6:0}, rA:rB \\texttt{7:0}};\n  \\draw[->] (rf.north) -- (alu.south)\n        node[w,midway,right]{valA$=$3, valB$=$0};\n  \\draw[->] (alu.east)  -- (cc.west) node[w,midway,above]{result};\n  \\node[w, anchor=west] at (2.4,5.55) {ZF$=$0};\n  \\draw[->] (alu.north) -- (wb.south) node[w,midway,right]{valE$=$3 $\\to$ \\%rax};\n  \\draw[->] (wb.north) -- (npc.south) node[w,midway,right]{valP};\n  \\draw[->, acc] (npc.east) -| (6.0,0) -- (pc.east)\n        node[w,pos=0.85,below]{newPC $=$ \\texttt{0x20}};\n\\end{tikzpicture}\n$$\n\nEvery value on that snapshot was derived, not asserted: `valA = 3` because Decode read\n`%rdi`, which cycle 1's `irmovq` set; `valE = 3` because the ALU added `valB = 0` and\n`valA = 3`; `ZF = 0` because the result is nonzero; `newPC = 0x20 = 0x1e + 2` because\n`addq` is two bytes and is not a branch. The control logic of\n[lesson 3](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing) chose\nevery mux input; the stage tables of\n[lesson 2](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages) defined every\ncomputation; the [datapath](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq)\ncarried the bits. Nothing outside the machine intervened.\n\n## A second program: call and ret through the stack\n\n`sum.ys` never touches memory. To watch the stack machinery — the `%rsp` bookkeeping,\nthe memory write of a return address, the `valM`-into-PC wire — run a second program,\nfive instructions long.\n\n```asm [callret.ys]\n        irmovq $0x100, %rsp  # 0x000: set up the stack\n        call sum3            # 0x00a: push 0x013, jump to sum3\n        halt                 # 0x013: after the return\nsum3:\n        irmovq $6, %rax      # 0x014: the function body\n        ret                  # 0x01e: pop 0x013 into the PC\n```\n\nThe layout: `irmovq` (10 bytes) at `0x000`, `call` (9 bytes) at `0x00a`, `halt` at\n`0x013`, then `sum3` at `0x014` with its `irmovq` and the `ret` at `0x01e`. Five\ncycles run: the two `irmovq`s bracket the `call` (cycles 1–3), then `ret` (cycle 4)\nand `halt` (cycle 5). The two cycles worth tracing in full are the `call` and the\n`ret`.\n\n$$\n% caption: Cycle 2 (call sum3, left) and cycle 4 (ret, right), every stage in hex.\n% caption: call computes valE = 0x100 - 8 = 0xf8, stores the return address 0x013\n% caption: there, commits %rsp = 0xf8, and jumps to valC = 0x014. ret reads valA =\n% caption: 0xf8, loads valM = 0x013 from it, commits %rsp = 0x100, and jumps to valM.\n\\begin{tikzpicture}[font=\\footnotesize,\n  lbl\u002F.style={anchor=east, text=acc, font=\\scriptsize}, row\u002F.style={anchor=west}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[anchor=west, text=acc] at (-2.7,0.95) {\\texttt{call sum3}\\ \\ (PC $=$ \\texttt{0x00a})};\n  \\draw[acc!40] (-2.7,0.45) -- (5.6,0.45);\n  \\foreach \\y\u002F\\stage\u002F\\comp in {\n    0\u002F{Fetch}\u002F{icode$=$8; valC$=$0x014; valP$=$0x013},\n    -0.85\u002F{Decode}\u002F{srcB$=$\\%rsp: valB$=$0x100},\n    -1.7\u002F{Execute}\u002F{valE$=$0x100 - 8$=$0xf8},\n    -2.55\u002F{Memory}\u002F{$M_8[\\mathtt{0xf8}] = \\mathtt{0x013}$ (write valP)},\n    -3.4\u002F{Write-back}\u002F{$R[\\mathtt{\\%rsp}] = \\mathtt{0xf8}$},\n    -4.25\u002F{PC update}\u002F{newPC$=$valC$=$0x014}} {\n    \\node[lbl] at (-0.2,\\y) {\\stage};\n    \\node[row] at (0.1,\\y) {\\comp};\n    \\draw[acc!40] (-2.7,\\y-0.42) -- (5.6,\\y-0.42);\n  }\n  \\node[anchor=west, text=acc] at (7.1,0.95) {\\texttt{ret}\\ \\ (PC $=$ \\texttt{0x01e})};\n  \\draw[acc!40] (7.1,0.45) -- (15.4,0.45);\n  \\foreach \\y\u002F\\stage\u002F\\comp in {\n    0\u002F{Fetch}\u002F{icode$=$9; valP$=$0x01f (discarded)},\n    -0.85\u002F{Decode}\u002F{valA$=$valB$=R[\\mathtt{\\%rsp}]=$0xf8},\n    -1.7\u002F{Execute}\u002F{valE$=$0xf8$+$8$=$0x100},\n    -2.55\u002F{Memory}\u002F{valM$=M_8[\\mathtt{0xf8}]=$ 0x013 (read at valA)},\n    -3.4\u002F{Write-back}\u002F{$R[\\mathtt{\\%rsp}] = \\mathtt{0x100}$},\n    -4.25\u002F{PC update}\u002F{newPC$=$valM$=$0x013}} {\n    \\node[lbl] at (7.2,\\y) {\\stage};\n    \\node[row] at (7.5,\\y) {\\comp};\n    \\draw[acc!40] (7.1,\\y-0.42) -- (15.4,\\y-0.42);\n  }\n\\end{tikzpicture}\n$$\n\nThe two tables are mirror images through the stack. `call` writes `0x013`, an\naddress _it computed as `valP`_ (the byte after its own 9-byte body), into memory at\nthe decremented `%rsp`, and that number sits inert at `0xf8` for two cycles while\n`sum3` runs. Then `ret`, knowing nothing about who called, reads whatever the top of\nthe stack holds, and the machine lands back at `halt`. The trace confirms what\nthe [procedures lesson](\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures)\nclaimed: a return address is just a word in memory, trusted absolutely.\n\nCheck the arithmetic that has to line up for this to work, because a single wrong\nconstant would break it. The `call` sits at `0x00a` and is 9 bytes long, so its `valP`\nis $\\texttt{0x00a} + 9 = \\texttt{0x013}$ — the address of the `halt`, the point\nwhere control should resume. Execute decrements the stack pointer by 8, so\n$\\texttt{0x100} - 8 = \\texttt{0xf8}$, and Memory stores `0x013` there. When `ret` runs,\nits Execute adds 8 back ($\\texttt{0xf8} + 8 = \\texttt{0x100}$, restoring `%rsp`), but\nits _address_ is `valA = 0xf8`, the pre-increment top, so it reads the word `0x013`\nthat `call` left — not the word above it. The off-by-eight bug flagged in\n[lesson 3's memory control](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing)\namounts to using `valE = 0x100` as the read address instead of\n`valA = 0xf8`; the trace shows the correct choice landing back on `0x013` and the\n`halt`, and any other choice would return into garbage.\n\n$$\n% caption: The stack during callret.ys. call decrements %rsp from 0x100 to 0xf8 and\n% caption: stores the return address 0x013 at the new top; ret reads it back and\n% caption: restores %rsp to 0x100. The word at 0xf8 still holds 0x013 afterward —\n% caption: ret reads, it does not erase.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  cell\u002F.style={draw, minimum width=30mm, minimum height=8mm, inner sep=1pt},\n  ad\u002F.style={anchor=east, font=\\ttfamily\\footnotesize}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[cell] (c100) at (0,1.6) {};\n  \\node[cell, fill=acc!8] (cf8) at (0,0.8) {\\texttt{0x013}};\n  \\node[cell] (cf0) at (0,0) {};\n  \\node[ad] at (-1.7,1.6) {0x100};\n  \\node[ad] at (-1.7,0.8) {0x0f8};\n  \\node[ad] at (-1.7,0)   {0x0f0};\n  \\node[anchor=south, font=\\scriptsize] at (0,2.1) {higher addresses};\n  \\draw[->, acc] (3.4,1.6) -- (c100.east)\n        node[pos=0,anchor=west,font=\\scriptsize,text=acc]{\\%rsp before call, after ret};\n  \\draw[->, acc] (3.4,0.8) -- (cf8.east)\n        node[pos=0,anchor=west,font=\\scriptsize,text=acc]{\\%rsp after call (return address here)};\n\\end{tikzpicture}\n$$\n\n## Counting cycles and the CPI that motivates pipelining\n\nThe trace also lets us _measure_ SEQ, and the measurement motivates the next module. `sum.ys` executed **13 instructions in 13 cycles**: three `irmovq`, three\nloop iterations of three instructions each, and one `halt`. SEQ runs exactly one\ninstruction per cycle, so its **cycles per instruction (CPI) is exactly 1** — you\ncannot do better than one instruction every clock tick if the whole machine is one big\ncombinational settle per instruction.\n\nCPI is only half of what determines speed. The usual accounting (Bryant & O'Hallaron,\n_CS:APP_ §4.3 and §5.7) writes a program's running time as\n\n$$\n\\text{time} = \\text{instructions} \\times \\text{CPI} \\times \\text{clock period},\n$$\n\nand SEQ wins the middle factor (CPI = 1) only by paying dearly on the third. The clock\nperiod had to cover the _entire_ critical path — instruction fetch, register read, ALU,\ndata memory, and the New-PC mux in series — so on the illustrative delays of\n[the previous lesson](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq) that\nperiod was near 390 ps. Every one of `sum.ys`'s 13 cycles was that long, even the\n`addq` cycles that needed no memory at all.\n\nPipelining attacks the third factor without giving up much of the first. If the six\nstages each get their own clock band and several instructions occupy different stages\nat once, the clock period drops toward the delay of the _single slowest stage_ (roughly\nthe 120 ps of a memory access) rather than the sum of all of them. The ideal is CPI\nstill near 1 but a clock several times faster — which, on a straight-line program like\n`sum.ys`, is a several-fold speedup for free. The catch is the loop: `sum.ys`'s `jne`\ndoes not know its target until it has been executed, and a pipeline that has already\nbegun fetching past the branch may have guessed wrong. Resolving those hazards — data\ndependencies between overlapping instructions, and control dependencies at branches —\nis the entire subject of the [pipelining\nmodule](\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe), and this trace is the\nbaseline it improves on: correct, simple, and one instruction slow at a time.\n\n## What we have built\n\nThe traces close the loop the module opened. Twelve cycles of pure combinational\nchoices, clocked one instruction at a time, took three registers from an initial state\nto the correct answer and stopped at the right place; five more cycles pushed a return\naddress, ran a function, and came back through it, and at no point did anything\ndirect the machine but its own PC and the bytes it pointed at. That is the entire\nclaim of the stored-program computer, realized in logic we specified gate by\ngate.\n\n> **Takeaway.** Run cycle by cycle, SEQ executes `sum.ys` exactly: three `irmovq`\n> initialize the registers, then three loop iterations of `addq`\u002F`subq`\u002F`jne` carry\n> `%rax` $0 \\to 3 \\to 5 \\to 6$ and `%rdi` $3 \\to 0$, the last `subq` sets `ZF = 1` so\n> the final `jne` falls through, and `halt` stops the machine with the sum 6 in\n> `%rax`. Frozen mid-cycle, every named signal — `icode 6:0`, `srcA = 7`,\n> `valE = 0x3`, `newPC = 0x20` — is the control logic evaluated with real bytes; and\n> in `callret.ys`, `call` and `ret` meet through one word of memory at `0xf8`. The\n> machine's behavior follows entirely from the wiring — which means the assembled\n> datapath and control logic _are_ a functioning processor.\n\nThe course has now gone from bits and bytes, through an instruction\nset, through gates and memory, to a circuit that runs programs. From here the\nquestions become _how fast_ — the same six stages, overlapped in a\n[pipeline](\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe) so several\ninstructions are in flight at once — and _how to keep the data close_, with the\nmemory hierarchy and caches.\n",{"text":2015,"minutes":2016,"time":2017,"words":2018},"9 min read",8.155,489300,1631,{"title":162,"description":2006},[2021,2024],{"book":2022,"ref":2023},"Bryant & O'Hallaron","CS:APP — §4.3 Sequential Y86-64 Implementations",{"book":2025,"ref":2026},"Bistriceanu","Computer Architecture Notes — §5 CPU Implementation (Executing an instruction; Hardwired control)","available","03.computer-architecture\u002F04.processor-design\u002F05.tracing-a-program",[138],"6sdB1kYpaBM49PpGW-B9OaQi-1PPkI4hS4QDVPqGBrU",{"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm":2032,"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques":2033,"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis":2034,"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis":2035,"\u002Falgorithms\u002Ffoundations\u002Frecurrences":2036,"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis":2037,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort":2038,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort":2039,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection":2040,"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication":2041,"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort":2042,"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds":2043,"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting":2044,"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":2045,"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures":2046,"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables":2047,"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees":2048,"\u002Falgorithms\u002Fdata-structures\u002Favl-trees":2049,"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees":2050,"\u002Falgorithms\u002Fdata-structures\u002Funion-find":2051,"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees":2052,"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures":2053,"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures":2054,"\u002Falgorithms\u002Fdata-structures\u002Fb-trees":2055,"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms":2056,"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches":2057,"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows":2058,"\u002Falgorithms\u002Fsequences\u002Fprefix-sums":2059,"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks":2060,"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer":2061,"\u002Falgorithms\u002Fsequences\u002Fstring-matching":2062,"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function":2063,"\u002Falgorithms\u002Fsequences\u002Ftries":2064,"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick":2065,"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal":2066,"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search":2067,"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc":2068,"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees":2069,"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim":2070,"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths":2071,"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights":2072,"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow":2073,"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut":2074,"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points":2075,"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor":2076,"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat":2077,"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours":2078,"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching":2079,"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method":2080,"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals":2081,"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes":2082,"\u002Falgorithms\u002Fgreedy\u002Fmatroids":2083,"\u002Falgorithms\u002Fgreedy\u002Fstable-matching":2084,"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples":2085,"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp":2086,"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence":2087,"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack":2088,"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded":2089,"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp":2090,"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp":2091,"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp":2092,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations":2093,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs":2094,"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp":2095,"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals":2096,"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search":2097,"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound":2098,"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking":2099,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics":2100,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality":2101,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization":2102,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics":2103,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation":2104,"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform":2105,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent":2106,"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives":2107,"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull":2108,"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line":2109,"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity":2110,"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions":2111,"\u002Falgorithms\u002Fintractability\u002Fnp-completeness":2112,"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness":2113,"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms":2114,"\u002Falgorithms":2115,"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models":2116,"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function":2117,"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition":2118,"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity":2119,"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change":2120,"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule":2121,"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates":2122,"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials":2123,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem":2124,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph":2125,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization":2126,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives":2127,"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral":2128,"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus":2129,"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule":2130,"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes":2131,"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length":2132,"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability":2133,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials":2134,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions":2135,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule":2136,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts":2137,"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution":2138,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy":2139,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals":2140,"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus":2141,"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates":2142,"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections":2143,"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences":2144,"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test":2145,"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests":2146,"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series":2147,"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series":2148,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product":2149,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes":2130,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces":2150,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves":2151,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion":2152,"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables":2120,"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives":2153,"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule":2154,"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient":2155,"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers":2156,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals":2157,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems":2158,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals":2159,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence":2160,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals":2161,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem":2162,"\u002Fcalculus":2163,"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions":2164,"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra":2165,"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion":2166,"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs":2167,"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion":2168,"\u002Fmechanics\u002Fkinematics\u002Frelative-motion":2169,"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion":2170,"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws":2171,"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams":2172,"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion":2173,"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics":2174,"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems":2175,"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy":2176,"\u002Fmechanics\u002Fenergy\u002Fpotential-energy":2177,"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work":2178,"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding":2179,"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization":2180,"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions":2181,"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions":2182,"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion":2183,"\u002Fmechanics\u002Frotation\u002Frotational-inertia":2184,"\u002Fmechanics\u002Frotation\u002Frotational-dynamics":2185,"\u002Fmechanics\u002Frotation\u002Frolling-motion":2186,"\u002Fmechanics\u002Frotation\u002Fangular-momentum":2187,"\u002Fmechanics\u002Frotation\u002Frolling-resistance":2188,"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession":2189,"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits":2190,"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields":2191,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium":2192,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics":2193,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow":2194,"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion":2195,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity":2196,"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators":2197,"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves":2198,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition":2199,"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves":2200,"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves":2201,"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect":2202,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets":2203,"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling":2204,"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion":2205,"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion":2206,"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators":2207,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries":2208,"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases":2209,"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics":2210,"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law":2211,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes":2212,"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes":2213,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines":2214,"\u002Fmechanics":2215,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors":2216,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law":2217,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force":2218,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps":2219,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles":2220,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields":2221,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors":2222,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential":2223,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials":2224,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure":2225,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems":2226,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials":2227,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals":2204,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks":2228,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force":2229,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown":2230,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance":2200,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis":2065,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients":2231,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories":2191,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect":2232,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors":2233,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles":2234,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry":2235,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields":2236,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law":2237,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops":2238,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law":2239,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism":2240,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials":2165,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux":2241,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law":2242,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law":2243,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf":2244,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents":2245,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance":2246,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy":2247,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits":2248,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals":2183,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance":2182,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance":2249,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power":2250,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers":2251,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current":2252,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves":2253,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum":2254,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation":2255,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization":2256,"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction":2257,"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses":2209,"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors":2207,"\u002Felectricity-and-magnetism":2258,"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms":2259,"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations":2260,"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications":2261,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence":2262,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations":2263,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations":2264,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility":2265,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu":2266,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank":2267,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics":2117,"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors":2268,"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants":2269,"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area":2121,"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces":2270,"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces":2271,"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets":2272,"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems":2273,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank":2274,"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis":2275,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov":2276,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues":2277,"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation":2278,"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization":2279,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations":2280,"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues":2281,"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems":2282,"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method":2283,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality":2284,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections":2285,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr":2286,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems":2287,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications":2288,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces":2289,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices":2156,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms":2290,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization":2291,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition":2292,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging":2293,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation":2294,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky":2295,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point":2296,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis":2297,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares":2298,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd":2299,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations":2300,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates":2301,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets":2302,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes":2303,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces":2304,"\u002Flinear-algebra":2305,"\u002Ftheory-of-computation":2306,"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words":2307,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation":2308,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic":2309,"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point":2310,"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation":2311,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view":2312,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":2313,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic":2314,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow":2315,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures":2316,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment":2317,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows":2318,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":2319,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands":2320,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes":2321,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set":2322,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming":2323,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions":2324,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl":2325,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu":2326,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking":2327,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory":2328,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":2329,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":2330,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing":2331,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":2332,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":2018,"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles":2333,"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe":2334,"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding":2335,"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction":2336,"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor":2337,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap":2338,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality":2339,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped":2340,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies":2341,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code":2342,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":2343,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults":2344,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables":2345,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow":2346,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel":2347,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism":2348,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading":2349,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence":2350,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization":2351,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization":2352,"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":2353,"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":2354,"\u002Fcomputer-architecture":2306,"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields":2355,"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology":2356,"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors":2357,"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact":2121,"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order":2358,"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics":2120,"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler":2127,"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations":2359,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients":2360,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots":2161,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients":2361,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters":2362,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations":2363,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear":2364,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points":2365,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius":2366,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions":2367,"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps":2368,"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution":2369,"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review":2370,"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits":2371,"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices":2372,"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta":2367,"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability":2373,"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability":2374,"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov":2375,"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles":2376,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series":2377,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations":2378,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville":2379,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations":2380,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes":2381,"\u002Fdifferential-equations":2382,"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates":2383,"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime":2384,"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction":2385,"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy":2386,"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity":2266,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval":2387,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation":2388,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity":2389,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance":2390,"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion":2391,"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics":2392,"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame":2136,"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants":2393,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential":2394,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor":2395,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields":2396,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor":2397,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized":2398,"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric":2399,"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols":2400,"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation":2401,"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation":2402,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations":2357,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric":2403,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild":2404,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics":2405,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury":2406,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing":2407,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay":2287,"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps":2408,"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities":2409,"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes":2297,"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics":2410,"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions":2411,"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula":2412,"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events":2413,"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric":2414,"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics":2415,"\u002Frelativity":2416,"\u002Fphysical-computing":2306,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum":2417,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon":2396,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect":2418,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld":2419,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction":2420,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation":2421,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle":2422,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension":2423,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics":2424,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells":2372,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator":2297,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential":2425,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling":2426,"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation":2427,"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues":2428,"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement":2424,"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra":2429,"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle":2404,"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures":2158,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states":2430,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states":2431,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws":2138,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries":2432,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics":2433,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra":2434,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan":2435,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions":2436,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom":2437,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry":2438,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach":2439,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance":2440,"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere":2396,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry":2441,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table":2442,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory":2443,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom":2430,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects":2119,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method":2444,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation":2445,"\u002Fquantum-mechanics":2446,"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions":2380,"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness":2447,"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds":2448,"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability":2270,"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits":2449,"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone":2156,"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass":2450,"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness":2451,"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence":2293,"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement":2402,"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms":2452,"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets":2453,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness":2454,"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness":2455,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness":2456,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions":2429,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions":2457,"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt":2263,"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity":2458,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces":2459,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone":2117,"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative":2460,"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem":2461,"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem":2418,"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d":2146,"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral":2297,"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes":2462,"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral":2463,"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem":2282,"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper":2406,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence":2464,"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits":2465,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass":2466,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode":2302,"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn":2467,"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule":2468,"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema":2469,"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems":2469,"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals":2470,"\u002Freal-analysis":2471,"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations":2472,"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic":2473,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples":2474,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups":2475,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups":2476,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions":2477,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures":2478,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups":2479,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices":2480,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups":2481,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems":2445,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group":2482,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem":2474,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation":2391,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems":2483,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups":2484,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups":2485,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products":2486,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups":2487,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups":2488,"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples":2489,"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms":2490,"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem":2484,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds":2491,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields":2460,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization":2492,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner":2493,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules":2494,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums":2495,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences":2496,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps":2497,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids":2498,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form":2499,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form":2500,"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements":2501,"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions":2135,"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure":2502,"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions":2503,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence":2376,"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields":2504,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions":2505,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials":2433,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic":2505,"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry":2506,"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory":2507,"\u002Fabstract-algebra":2508,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford":2509,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen":2510,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz":2511,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory":2512,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb":2513,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen":2425,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions":2514,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full":2515,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz":2516,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial":2517,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra":2518,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms":2519,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction":2520,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession":2260,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula":2388,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen":2135,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed":2521,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm":2119,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift":2522,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra":2523,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent":2157,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock":2450,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom":2524,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols":2525,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms":2526,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect":2527,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate":2528,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability":2529,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule":2530,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients":2531,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions":2532,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes":2533,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles":2534,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques":2535,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd":2536,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler":2537,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping":2481,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation":2538,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision":2539,"\u002Fatomic-physics":2540,"\u002Fdatabases":2306,"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category":2541,"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories":2542,"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms":2543,"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors":2472,"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations":2544,"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory":2545,"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties":2546,"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts":2547,"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories":2548,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors":2549,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma":2550,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences":2551,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits":2552,"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks":2553,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits":2554,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits":2555,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors":2556,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions":2557,"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits":2558,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows":2559,"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions":2560,"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints":2561,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits":2562,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits":2563,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem":2554,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads":2564,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore":2565,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming":2566,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors":2567,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories":2568,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence":2513,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion":2569,"\u002Fcategory-theory":2570,"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning":2571,"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory":2572,"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation":2573,"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus":2574,"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning":2575,"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher":2576,"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron":2535,"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron":2577,"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions":2578,"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation":2579,"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation":2580,"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units":2581,"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd":2582,"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods":2583,"\u002Fdeep-learning\u002Foptimization\u002Finitialization":2584,"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape":2585,"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods":2586,"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview":2587,"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation":2588,"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing":2589,"\u002Fdeep-learning\u002Fregularization\u002Fnormalization":2590,"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks":2591,"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures":2592,"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks":2593,"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru":2594,"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers":2595,"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture":2596,"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice":2597,"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks":2598,"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models":2599,"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory":2600,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness":2601,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses":2602,"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods":2603,"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models":2547,"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models":2604,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders":2605,"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders":2606,"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks":2607,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows":2608,"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines":2609,"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models":2610,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models":2100,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc":2611,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference":2612,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":2335,"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging":2613,"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning":2614,"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning":2615,"\u002Fdeep-learning\u002Fpractical\u002Fapplications":2616,"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation":2617,"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot":2618,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models":2619,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment":2620,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart":2621,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation":2622,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models":2623,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis":2624,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents":2309,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration":2625,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts":2626,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models":2627,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models":2628,"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning":2345,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control":2629,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks":2630,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic":2631,"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback":2632,"\u002Fdeep-learning":2306,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law":2633,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work":2430,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound":2634,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations":2635,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law":2636,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition":2637,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem":2638,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate":2639,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs":2640,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy":2641,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential":2477,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy":2642,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature":2643,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution":2644,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy":2364,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence":2158,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems":2645,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly":2646,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox":2647,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem":2292,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration":2648,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function":2649,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations":2369,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web":2297,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac":2650,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions":2266,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration":2136,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework":2152,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas":2651,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law":2652,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure":2653,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model":2284,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived":2654,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity":2146,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature":2655,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals":2656,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":2657,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter":2658,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients":2479,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence":2659,"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange":2660,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification":2661,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions":2662,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model":2425,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory":2663,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea":2403,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response":2664,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation":2265,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem":2665,"\u002Fstatistical-mechanics":2666,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms":2667,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus":2131,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange":2390,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces":2668,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra":2669,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure":2670,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands":2671,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers":2672,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids":2673,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems":2264,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones":2674,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors":2675,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion":2676,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos":2677,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity":2406,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport":2678,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction":2679,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity":2680,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect":2681,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons":2682,"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands":2461,"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model":2405,"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method":2683,"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics":2684,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions":2685,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors":2686,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination":2396,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction":2687,"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics":2688,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization":2633,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics":2533,"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism":2261,"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism":2689,"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains":2127,"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons":2690,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology":2691,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect":2272,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory":2692,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory":2526,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc":2693,"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots":2119,"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect":2694,"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology":2130,"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials":2695,"\u002Fcondensed-matter":2446,"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model":2696,"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas":2697,"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies":2698,"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing":2699,"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion":2144,"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms":2700,"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits":2701,"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness":2144,"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages":2702,"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction":2556,"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence":2703,"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing":2704,"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus":2705,"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules":2703,"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness":2706,"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency":2707,"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem":2708,"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity":2709,"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories":2710,"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis":2711,"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic":2712,"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor":2713,"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts":2634,"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability":2714,"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax":2707,"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability":2715,"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem":2716,"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions":2349,"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation":2717,"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages":2534,"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic":2718,"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures":2719,"\u002Flogic":2720,"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning":2721,"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl":2722,"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits":2335,"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms":2723,"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes":2724,"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality":2725,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming":2726,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi":2716,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods":2727,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy":2728,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning":2729,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning":2627,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping":2730,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods":2731,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning":2732,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time":2733,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning":2734,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":2352,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction":2735,"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear":2736,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control":2737,"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control":2738,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad":2543,"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td":2739,"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces":2715,"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda":2740,"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods":2741,"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions":2742,"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods":2363,"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods":2743,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces":2493,"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces":2744,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks":2745,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements":2326,"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo":2746,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control":2747,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies":2748,"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games":2749,"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers":2750,"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems":2603,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow":2751,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2":2752,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control":2753,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2":2638,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl":2754,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2":2755,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration":2756,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2":2352,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl":2419,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2":2757,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl":2758,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2":2759,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl":2760,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2":2761,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl":2762,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2":2763,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models":2764,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps":2765,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2":2766,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl":2767,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2":2768,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization":2769,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement":2770,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control":2771,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error":2772,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain":2773,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition":2774,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning":2775,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement":2776,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems":2777,"\u002Freinforcement-learning":2306,"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai":2778,"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai":2779,"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents":2780,"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures":2781,"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search":2782,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared":2783,"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search":2784,"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions":2785,"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search":2786,"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search":2787,"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search":2788,"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information":2789,"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction":2790,"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure":2632,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty":2487,"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search":2791,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic":2792,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference":2793,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic":2794,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use":2795,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution":2796,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution":2614,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning":2797,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan":2798,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world":2799,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty":2800,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation":2801,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults":2802,"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes":2803,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes":2804,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks":2805,"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks":2806,"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time":2807,"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association":2808,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions":2546,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes":2798,"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory":2809,"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design":2087,"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples":2810,"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families":2811,"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning":2812,"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization":2813,"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning":2814,"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search":2595,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning":2815,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods":2816,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception":2817,"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world":2818,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics":2819,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control":2820,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai":2821,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech":2822,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future":2823,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future":2824,"\u002Fartificial-intelligence":2306,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart":2562,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions":2825,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy":2123,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula":2121,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles":2656,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview":2826,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron":2149,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering":2458,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin":2827,"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model":2828,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates":2829,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle":2518,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations":2830,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes":2831,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium":2832,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory":2717,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance":2833,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino":2834,"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay":2133,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation":2361,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass":2835,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation":2462,"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers":2836,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer":2837,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections":2357,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances":2445,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model":2838,"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics":2839,"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics":2840,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement":2128,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis":2502,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis":2364,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power":2841,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions":2412,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors":2476,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology":2842,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine":2843,"\u002Fnuclear-physics":2844,"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp":2845,"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization":2846,"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance":2483,"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models":2847,"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff":2848,"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment":2849,"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers":2332,"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression":2850,"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons":2851,"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings":2628,"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings":2852,"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models":2797,"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling":2853,"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers":2854,"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms":2855,"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention":2856,"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture":2857,"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models":2858,"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling":2859,"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting":2310,"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment":2860,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing":2861,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation":2803,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing":2862,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing":2863,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd":2864,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction":2865,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction":2866,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates":2867,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse":2868,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure":2869,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics":2727,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics":2870,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing":2871,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing":2872,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction":2873,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates":2874,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence":2875,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence":2876,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars":2877,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars":2878,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation":2879,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation":2880,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering":2881,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms":2581,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots":2748,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants":2337,"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization":2882,"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation":2883,"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics":2884,"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics":2885,"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition":2595,"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications":2886,"\u002Fnatural-language-processing":2306,"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo":2887,"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts":2503,"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers":2888,"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales":2648,"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass":2889,"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam":2890,"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule":2838,"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries":2891,"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt":2892,"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak":2453,"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry":2156,"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3":2893,"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy":2407,"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy":2894,"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics":2440,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation":2895,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors":2694,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory":2896,"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed":2897,"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes":2663,"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling":2898,"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2":2127,"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak":2899,"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays":2900,"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix":2901,"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons":2444,"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons":2660,"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement":2902,"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons":2903,"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization":2519,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1":2904,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking":2564,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism":2905,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery":2906,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model":2453,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations":2486,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns":2907,"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments":2908,"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity":2909,"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems":2542,"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made":2910,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model":2284,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories":2911,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry":2386,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness":2912,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates":2913,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions":2710,"\u002Fparticle-physics":2914,"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars":2504,"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states":2658,"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology":2915,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus":2443,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification":2916,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum":2503,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder":2415,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity":2917,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation":2918,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening":2919,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean":2920,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem":2921,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure":2709,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes":2640,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model":2922,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak":2923,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno":2924,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process":2925,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis":2837,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium":2926,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse":2399,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence":2462,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure":2444,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution":2927,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars":2528,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip":2145,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":2928,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae":2929,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia":2659,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars":2930,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr":2931,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer":2932,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects":2933,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries":2126,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts":2934,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way":2935,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification":2386,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter":2936,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes":2937,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure":2652,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law":2308,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift":2938,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics":2939,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances":2564,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe":2550,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe":2562,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis":2659,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background":2940,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters":2125,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation":2317,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations":2941,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions":2403,"\u002Fastrophysics-cosmology":2508,"\u002Fcolophon":2942,"\u002F":2306},4250,4808,3626,2682,4109,4786,3878,3875,3751,3415,4067,3153,3000,4042,5461,5808,3961,3749,4327,5067,4246,4655,4154,5436,2640,4003,3601,2158,4331,4189,2273,3252,4633,4964,4172,3131,5524,3160,4031,2309,4207,3226,2648,4842,5340,3307,5701,4977,4039,2615,3472,4460,3848,4075,4400,3382,3010,3602,3737,3740,3707,3922,5191,4043,3804,4542,4214,5062,2850,4361,3443,3627,4044,3766,4140,3860,4006,5199,4334,5234,3651,5509,5680,153,1375,1073,1093,1125,1146,1014,1132,876,1541,1189,1173,984,1402,1301,950,1268,1063,1107,1408,1161,925,1012,866,964,1090,1142,1085,1020,1207,973,980,728,764,1225,1329,796,929,801,878,774,1044,1488,1175,1130,890,814,870,154,4073,5140,4961,5127,4870,5382,5195,4955,5369,4501,5576,3824,4132,4289,4307,4570,3403,5084,5105,5201,5116,5341,5175,5368,5188,5211,5499,5155,4981,5125,5415,5255,5304,5130,5167,5552,5164,5094,5239,5036,5190,5004,5099,5035,5159,5088,5026,4937,5023,5264,5244,133,5114,5078,5043,5312,5170,5342,5139,5151,5049,5212,5013,5068,5079,5102,5121,5081,5029,5379,5854,5110,2139,3798,5055,5364,4984,4935,4895,4972,5289,5112,5156,4987,5031,5025,5149,5302,5042,5002,4979,4922,4960,5279,126,1877,1180,1129,907,958,1112,1300,1053,1250,1181,1241,1234,966,1050,734,1190,484,1082,926,733,761,571,607,798,804,952,977,731,784,645,771,1017,742,1004,1000,1562,1254,1288,1101,1011,1486,1061,856,992,1169,988,137,0,2037,1782,2384,2254,2123,2332,1643,1714,2089,1751,1367,1660,2511,1998,1892,1854,1791,2438,2487,1917,2375,2525,2266,1845,2275,1810,2310,2166,2233,2113,2505,2347,2672,2112,2473,2592,2380,3013,2513,3256,3218,2194,2173,2205,2326,2081,3342,3152,1799,1670,1027,960,1095,1291,986,897,1209,1055,1817,1801,1593,1465,1196,1464,1201,1230,1435,1684,1461,1926,1500,1409,1284,1774,1869,162,1487,1122,1188,1001,1351,982,1005,979,1325,1046,943,1279,824,1008,989,1798,1277,1025,987,1043,1211,1074,981,939,1002,739,1139,1108,1013,1070,978,1458,1317,157,1357,1077,2355,1116,1037,1178,1637,1314,1109,1056,1702,1474,1071,1158,832,993,1404,1024,1068,1339,1106,1264,1248,913,1848,1328,1633,1224,1143,135,1378,959,1028,998,911,1527,1203,1266,1483,1165,990,938,965,1257,1418,1099,942,1352,956,1035,1398,1003,1094,1292,138,1721,1827,1449,1354,1148,1184,1285,1281,1213,1290,1271,1252,1274,1778,1591,1503,1437,1571,1584,1957,1117,1781,1648,1342,1667,1510,1965,1607,1365,1849,1259,1303,1356,1238,2208,1564,173,1671,1286,1227,1638,1529,668,1078,918,709,865,880,940,1534,1015,874,922,841,794,1194,822,1105,1658,1359,1296,1438,1921,1844,1570,1429,1324,1400,140,1787,1558,1654,1492,1747,2224,2002,2009,1323,1349,1785,1573,1722,1829,1353,1548,1552,1583,1624,1585,1245,1364,1514,1343,1397,1355,2211,1481,1770,160,2388,2293,2256,2552,2569,2478,2039,2496,2578,2814,2519,2461,2587,2492,2714,3278,2654,3050,2447,2849,2238,2369,2061,2214,2602,2563,2186,2985,2749,3364,2038,2282,2409,2126,2573,2206,2176,2268,2182,2402,2705,2633,2414,2213,2801,3313,3410,3195,1952,2017,1509,2537,2645,2027,2415,2838,2356,1906,3184,2950,2807,2954,1683,1316,1034,1138,1763,1822,1705,1246,1701,1097,1104,1187,1032,1083,1228,916,1489,1033,1652,997,692,837,1023,888,864,1089,1231,1214,1675,1156,1075,1520,1309,139,1205,1051,735,1123,1072,915,567,768,825,1253,983,1007,762,1058,861,862,971,1208,1149,1145,1029,1084,927,810,838,857,807,936,949,2321,1622,1069,1113,1057,854,1958,1528,1618,2049,1432,1679,1796,1685,1346,1275,1476,1505,1610,2018,1599,1215,1838,1909,132,3902,2215,2240,3266,3208,3073,2454,2969,2451,1875,2728,1884,2371,2516,2842,1690,1904,2346,3146,1386,2607,1966,2668,1665,2885,1606,2577,3074,2869,2403,2433,2082,1939,1587,2460,2747,2032,2642,1619,3123,1993,2090,2339,3829,1737,2622,2340,2322,3828,4409,2305,3411,2510,4527,3030,3569,3043,2457,1946,2277,2044,2909,1693,1945,2093,2399,2115,2898,2742,2242,3895,3378,3376,2769,2223,3062,3262,2651,2949,2768,3128,2423,1977,2087,2866,3388,2830,2210,2489,2884,3945,2099,2713,3402,1692,2931,4195,3989,3206,4391,3004,3704,3494,2902,999,881,901,919,748,869,1018,1045,1049,1333,954,1092,1019,976,1771,1480,1396,953,1026,161,3533,2495,1818,3007,2595,3427,3537,2216,1895,2304,3396,1739,2073,1962,2203,1767,2666,2264,2276,2852,1807,3735,1560,4144,1669,1676,1972,2418,3291,1525,2040,2766,2337,2220,2800,3001,2078,1759,2836,1896,2026,1758,1543,1047,896,946,1060,1384,1482,815,1414,1322,1440,1240,1468,1098,1133,847,1009,1381,1052,1191,1258,1370,1712,1441,1199,957,1079,150,1262,1417,1368,1219,1136,1064,1463,1636,1059,931,1115,1736,1174,1376,1363,1411,1247,1746,1313,1299,1617,1102,1076,1495,1265,1193,1263,80,{"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm":2944,"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques":2948,"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis":2952,"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis":2956,"\u002Falgorithms\u002Ffoundations\u002Frecurrences":2960,"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis":2964,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort":2968,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort":2973,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection":2977,"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication":2981,"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort":2985,"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds":2990,"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting":2994,"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":2998,"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures":3002,"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables":3007,"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees":3011,"\u002Falgorithms\u002Fdata-structures\u002Favl-trees":3015,"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees":3019,"\u002Falgorithms\u002Fdata-structures\u002Funion-find":3023,"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees":3027,"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures":3031,"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures":3035,"\u002Falgorithms\u002Fdata-structures\u002Fb-trees":3039,"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms":3043,"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches":3047,"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows":3051,"\u002Falgorithms\u002Fsequences\u002Fprefix-sums":3056,"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks":3060,"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer":3064,"\u002Falgorithms\u002Fsequences\u002Fstring-matching":3068,"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function":3072,"\u002Falgorithms\u002Fsequences\u002Ftries":3076,"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick":3080,"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal":3084,"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search":3089,"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc":3093,"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees":3097,"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim":3101,"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths":3105,"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights":3109,"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow":3113,"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut":3117,"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points":3121,"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor":3125,"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat":3129,"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours":3133,"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching":3137,"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method":3141,"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals":3146,"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes":3150,"\u002Falgorithms\u002Fgreedy\u002Fmatroids":3154,"\u002Falgorithms\u002Fgreedy\u002Fstable-matching":3158,"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples":3162,"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp":3167,"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence":3171,"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack":3175,"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded":3179,"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp":3183,"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp":3187,"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp":3191,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations":3195,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs":3199,"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp":3203,"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals":3207,"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search":3212,"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound":3216,"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking":3220,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics":3224,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality":3229,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization":3233,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics":3237,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation":3241,"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform":3245,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent":3249,"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives":3253,"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull":3258,"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line":3262,"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity":3266,"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions":3270,"\u002Falgorithms\u002Fintractability\u002Fnp-completeness":3275,"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness":3279,"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms":3283,"\u002Falgorithms":3287,"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models":3290,"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function":3295,"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition":3299,"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity":3303,"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change":3307,"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule":3312,"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates":3316,"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials":3320,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem":3324,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph":3329,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization":3333,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives":3337,"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral":3341,"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus":3346,"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule":3350,"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes":3354,"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length":3359,"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability":3363,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials":3367,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions":3372,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule":3376,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts":3380,"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution":3385,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy":3389,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals":3393,"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus":3397,"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates":3402,"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections":3406,"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences":3410,"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test":3415,"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests":3419,"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series":3423,"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series":3427,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product":3431,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes":3436,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces":3440,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves":3444,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion":3448,"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables":3452,"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives":3457,"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule":3460,"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient":3464,"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers":3468,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals":3472,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems":3477,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals":3481,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence":3485,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals":3489,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem":3493,"\u002Fcalculus":3497,"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions":3500,"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra":3504,"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion":3508,"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs":3513,"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion":3517,"\u002Fmechanics\u002Fkinematics\u002Frelative-motion":3521,"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion":3525,"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws":3529,"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams":3534,"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion":3538,"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics":3542,"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems":3546,"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy":3550,"\u002Fmechanics\u002Fenergy\u002Fpotential-energy":3555,"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work":3559,"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding":3563,"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization":3567,"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions":3571,"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions":3576,"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion":3580,"\u002Fmechanics\u002Frotation\u002Frotational-inertia":3584,"\u002Fmechanics\u002Frotation\u002Frotational-dynamics":3589,"\u002Fmechanics\u002Frotation\u002Frolling-motion":3593,"\u002Fmechanics\u002Frotation\u002Fangular-momentum":3597,"\u002Fmechanics\u002Frotation\u002Frolling-resistance":3601,"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession":3605,"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits":3609,"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields":3614,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium":3618,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics":3622,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow":3626,"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion":3630,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity":3634,"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators":3638,"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves":3643,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition":3647,"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves":3651,"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves":3655,"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect":3659,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets":3663,"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling":3667,"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion":3671,"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion":3675,"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators":3679,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries":3683,"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases":3687,"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics":3692,"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law":3696,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes":3700,"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes":3704,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines":3708,"\u002Fmechanics":3712,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors":3715,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law":3720,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force":3724,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps":3728,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles":3732,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields":3736,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors":3741,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential":3745,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials":3750,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure":3754,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems":3758,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials":3762,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals":3766,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks":3771,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force":3775,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown":3779,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance":3783,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis":3788,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients":3792,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories":3796,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect":3801,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors":3805,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles":3809,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry":3813,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields":3817,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law":3822,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops":3826,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law":3830,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism":3834,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials":3838,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux":3842,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law":3847,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law":3851,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf":3855,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents":3859,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance":3863,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy":3867,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits":3871,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals":3875,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance":3880,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance":3884,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power":3888,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers":3892,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current":3896,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves":3901,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum":3905,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation":3909,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization":3913,"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction":3917,"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses":3922,"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors":3926,"\u002Felectricity-and-magnetism":3930,"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms":3933,"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations":3938,"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications":3942,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence":3946,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations":3950,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations":3954,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility":3959,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu":3963,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank":3967,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics":3971,"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors":3975,"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants":3980,"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area":3984,"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces":3988,"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces":3993,"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets":3997,"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems":4001,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank":4005,"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis":4009,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov":4013,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues":4017,"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation":4022,"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization":4026,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations":4030,"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues":4034,"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems":4038,"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method":4042,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality":4046,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections":4051,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr":4055,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems":4059,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications":4063,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces":4067,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices":4071,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms":4076,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization":4080,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition":4084,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging":4088,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation":4092,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky":4097,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point":4101,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis":4105,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares":4109,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd":4113,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations":4117,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates":4122,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets":4126,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes":4130,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces":4134,"\u002Flinear-algebra":4138,"\u002Ftheory-of-computation":4141,"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words":4144,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation":4145,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic":4146,"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point":4147,"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation":4148,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view":4149,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":4150,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic":4151,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow":4152,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures":4153,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment":4154,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows":4155,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":4156,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands":4157,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes":4158,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set":4159,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming":4160,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions":4161,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl":4162,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu":4163,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking":4164,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory":4165,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":4166,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":4167,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing":4168,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":4169,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":4170,"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles":4171,"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe":4172,"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding":4173,"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction":4174,"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor":4175,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap":4176,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality":4177,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped":4178,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies":4179,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code":4180,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":4181,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults":4182,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables":4183,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow":4184,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel":4185,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism":4186,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading":4187,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence":4188,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization":4189,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization":4190,"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":4191,"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":4192,"\u002Fcomputer-architecture":4193,"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields":4196,"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology":4200,"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors":4204,"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact":4209,"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order":4213,"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics":4217,"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler":4221,"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations":4225,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients":4229,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots":4234,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients":4238,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters":4242,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations":4246,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear":4250,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points":4254,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius":4259,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions":4263,"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps":4267,"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution":4272,"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review":4276,"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits":4281,"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices":4285,"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta":4289,"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability":4294,"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability":4298,"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov":4303,"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles":4307,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series":4311,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations":4316,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville":4320,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations":4324,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes":4329,"\u002Fdifferential-equations":4333,"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates":4336,"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime":4341,"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction":4345,"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy":4349,"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity":4353,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval":4357,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation":4362,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity":4366,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance":4370,"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion":4374,"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics":4379,"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame":4383,"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants":4387,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential":4391,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor":4396,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields":4400,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor":4404,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized":4408,"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric":4413,"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols":4417,"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation":4421,"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation":4425,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations":4429,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric":4433,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild":4438,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics":4442,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury":4446,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing":4451,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay":4455,"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps":4459,"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities":4463,"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes":4468,"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics":4472,"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions":4476,"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula":4481,"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events":4485,"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric":4489,"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics":4494,"\u002Frelativity":4498,"\u002Fphysical-computing":4501,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum":4504,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon":4509,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect":4513,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld":4517,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction":4521,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation":4526,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle":4530,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension":4534,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics":4539,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells":4543,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator":4547,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential":4551,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling":4555,"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation":4559,"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues":4564,"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement":4568,"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra":4572,"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle":4576,"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures":4580,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states":4584,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states":4589,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws":4593,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries":4597,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics":4601,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra":4605,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan":4609,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions":4613,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom":4618,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry":4622,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach":4626,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance":4631,"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere":4635,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry":4639,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table":4644,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory":4648,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom":4653,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects":4657,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method":4661,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation":4665,"\u002Fquantum-mechanics":4669,"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions":4672,"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness":4677,"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds":4681,"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability":4685,"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits":4689,"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone":4694,"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass":4698,"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness":4702,"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence":4706,"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement":4710,"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms":4714,"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets":4719,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness":4723,"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness":4727,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness":4731,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions":4735,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions":4739,"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt":4743,"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity":4747,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces":4751,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone":4755,"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative":4759,"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem":4764,"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem":4768,"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d":4772,"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral":4776,"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes":4781,"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral":4785,"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem":4789,"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper":4792,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence":4796,"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits":4801,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass":4805,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode":4809,"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn":4813,"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule":4818,"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema":4822,"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems":4826,"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals":4830,"\u002Freal-analysis":4834,"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations":4837,"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic":4841,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples":4845,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups":4850,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups":4854,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions":4858,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures":4862,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups":4867,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices":4871,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups":4875,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems":4879,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group":4883,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem":4887,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation":4892,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems":4896,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups":4900,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups":4904,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products":4909,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups":4913,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups":4917,"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples":4921,"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms":4926,"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem":4930,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds":4934,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields":4939,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization":4943,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner":4947,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules":4951,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums":4956,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences":4960,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps":4964,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids":4968,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form":4973,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form":4977,"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements":4981,"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions":4986,"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure":4990,"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions":4994,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence":4998,"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields":5003,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions":5007,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials":5011,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic":5015,"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry":5019,"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory":5024,"\u002Fabstract-algebra":5028,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford":5031,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen":5036,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz":5040,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory":5044,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb":5048,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen":5052,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions":5057,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full":5061,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz":5065,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial":5069,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra":5073,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms":5077,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction":5081,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession":5086,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula":5090,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen":5094,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed":5098,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm":5103,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift":5107,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra":5111,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent":5116,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock":5120,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom":5124,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols":5128,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms":5132,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect":5136,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate":5141,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability":5145,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule":5149,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients":5154,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions":5158,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes":5162,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles":5166,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques":5171,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd":5175,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler":5179,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping":5184,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation":5188,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision":5192,"\u002Fatomic-physics":5196,"\u002Fdatabases":5199,"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category":5202,"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories":5206,"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms":5210,"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors":5214,"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations":5218,"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory":5222,"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties":5226,"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts":5231,"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories":5235,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors":5239,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma":5244,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences":5248,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits":5252,"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks":5257,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits":5261,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits":5265,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors":5269,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions":5273,"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits":5278,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows":5282,"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions":5286,"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints":5290,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits":5295,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits":5299,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem":5303,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads":5307,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore":5312,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming":5316,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors":5320,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories":5324,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence":5329,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion":5333,"\u002Fcategory-theory":5337,"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning":5340,"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory":5344,"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation":5348,"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus":5352,"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning":5355,"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher":5359,"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron":5363,"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron":5367,"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions":5372,"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation":5376,"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation":5380,"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units":5384,"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd":5388,"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods":5393,"\u002Fdeep-learning\u002Foptimization\u002Finitialization":5397,"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape":5401,"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods":5405,"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview":5409,"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation":5414,"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing":5418,"\u002Fdeep-learning\u002Fregularization\u002Fnormalization":5422,"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks":5426,"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures":5431,"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks":5435,"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru":5439,"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers":5443,"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture":5447,"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice":5451,"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks":5455,"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models":5459,"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory":5463,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness":5468,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses":5472,"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods":5476,"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models":5480,"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models":5484,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders":5489,"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders":5493,"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks":5497,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows":5501,"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines":5505,"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models":5509,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models":5513,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc":5518,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference":5522,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":5526,"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging":5531,"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning":5535,"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning":5539,"\u002Fdeep-learning\u002Fpractical\u002Fapplications":5543,"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation":5547,"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot":5551,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models":5555,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment":5560,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart":5564,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation":5568,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models":5572,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis":5576,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents":5580,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration":5584,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts":5588,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models":5592,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models":5596,"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning":5600,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control":5605,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks":5609,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic":5613,"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback":5617,"\u002Fdeep-learning":5621,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law":5624,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work":5628,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound":5632,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations":5636,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law":5640,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition":5644,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem":5649,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate":5653,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs":5657,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy":5661,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential":5666,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy":5670,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature":5674,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution":5678,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy":5683,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence":5687,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems":5691,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly":5695,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox":5699,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem":5704,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration":5708,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function":5712,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations":5717,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web":5721,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac":5725,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions":5730,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration":5734,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework":5738,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas":5742,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law":5747,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure":5751,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model":5755,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived":5759,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity":5763,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature":5767,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals":5772,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":5776,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter":5780,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients":5784,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence":5789,"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange":5793,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification":5797,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions":5802,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model":5806,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory":5810,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea":5814,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response":5818,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation":5823,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem":5827,"\u002Fstatistical-mechanics":5831,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms":5834,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus":5839,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange":5843,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces":5847,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra":5851,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure":5856,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands":5860,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers":5864,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids":5868,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems":5873,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones":5877,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors":5881,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion":5885,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos":5890,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity":5894,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport":5898,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction":5902,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity":5907,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect":5911,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons":5915,"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands":5919,"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model":5924,"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method":5928,"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics":5932,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions":5936,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors":5941,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination":5945,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction":5949,"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics":5953,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization":5957,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics":5962,"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism":5966,"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism":5971,"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains":5975,"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons":5979,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology":5983,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect":5988,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory":5992,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory":5996,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc":6000,"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots":6004,"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect":6009,"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology":6013,"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials":6017,"\u002Fcondensed-matter":6021,"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model":6024,"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas":6028,"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies":6033,"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing":6037,"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion":6041,"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms":6045,"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits":6049,"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness":6053,"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages":6057,"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction":6062,"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence":6066,"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing":6070,"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus":6074,"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules":6079,"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness":6083,"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency":6087,"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem":6091,"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity":6096,"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories":6100,"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis":6104,"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic":6108,"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor":6113,"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts":6117,"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability":6121,"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax":6125,"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability":6130,"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem":6134,"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions":6138,"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation":6143,"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages":6147,"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic":6152,"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures":6156,"\u002Flogic":6160,"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning":6163,"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl":6167,"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits":6171,"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms":6175,"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes":6179,"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality":6183,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming":6187,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi":6191,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods":6195,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy":6199,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning":6203,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning":6207,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping":6211,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods":6215,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning":6219,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time":6223,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning":6227,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":6231,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction":6235,"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear":6240,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control":6244,"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control":6248,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad":6252,"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td":6256,"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces":6260,"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda":6264,"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods":6268,"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions":6272,"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods":6276,"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods":6280,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces":6284,"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces":6288,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks":6292,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements":6296,"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo":6300,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control":6304,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies":6308,"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games":6312,"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers":6316,"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems":6320,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow":6324,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2":6329,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control":6333,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2":6337,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl":6341,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2":6345,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration":6349,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2":6353,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl":6357,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2":6361,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl":6365,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2":6369,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl":6373,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2":6377,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl":6381,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2":6385,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models":6389,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps":6393,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2":6397,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl":6401,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2":6405,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization":6409,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement":6413,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control":6418,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error":6422,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain":6426,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition":6430,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning":6434,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement":6438,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems":6442,"\u002Freinforcement-learning":6446,"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai":6448,"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai":6452,"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents":6456,"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures":6460,"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search":6464,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared":6469,"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search":6473,"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions":6477,"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search":6481,"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search":6485,"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search":6489,"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information":6493,"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction":6497,"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure":6501,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty":6505,"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search":6509,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic":6513,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference":6518,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic":6522,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use":6526,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution":6530,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution":6534,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning":6538,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan":6542,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world":6546,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty":6550,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation":6554,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults":6558,"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes":6562,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes":6567,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks":6571,"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks":6575,"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time":6579,"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association":6583,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions":6587,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes":6591,"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory":6594,"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design":6598,"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples":6602,"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families":6607,"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning":6611,"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization":6615,"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning":6619,"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search":6622,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning":6626,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods":6630,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception":6634,"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world":6639,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics":6643,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control":6647,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai":6651,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech":6655,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future":6659,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future":6663,"\u002Fartificial-intelligence":6667,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart":6670,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions":6675,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy":6679,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula":6683,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles":6687,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview":6691,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron":6696,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering":6700,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin":6704,"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model":6708,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates":6713,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle":6717,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations":6721,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes":6725,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium":6730,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory":6734,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance":6739,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino":6743,"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay":6748,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation":6752,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass":6756,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation":6760,"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers":6765,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer":6769,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections":6773,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances":6778,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model":6782,"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics":6786,"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics":6791,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement":6795,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis":6800,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis":6804,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power":6808,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions":6813,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors":6817,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology":6821,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine":6825,"\u002Fnuclear-physics":6829,"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp":6832,"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization":6836,"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance":6840,"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models":6844,"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff":6848,"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment":6852,"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers":6857,"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression":6861,"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons":6865,"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings":6869,"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings":6874,"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models":6878,"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling":6882,"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers":6886,"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms":6890,"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention":6894,"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture":6898,"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models":6901,"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling":6904,"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting":6908,"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment":6912,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing":6916,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation":6921,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing":6925,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing":6929,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd":6933,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction":6937,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction":6941,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates":6945,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse":6949,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure":6953,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics":6957,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics":6961,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing":6965,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing":6969,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction":6973,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates":6977,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence":6981,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence":6985,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars":6989,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars":6993,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation":6997,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation":7001,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering":7005,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms":7009,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots":7013,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants":7017,"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization":7021,"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation":7025,"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics":7029,"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics":7034,"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition":7038,"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications":7042,"\u002Fnatural-language-processing":7046,"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo":7049,"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts":7053,"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers":7057,"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales":7061,"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass":7066,"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam":7070,"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule":7074,"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries":7078,"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt":7083,"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak":7087,"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry":7091,"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3":7095,"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy":7100,"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy":7104,"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics":7108,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation":7112,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors":7117,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory":7121,"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed":7125,"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes":7130,"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling":7134,"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2":7138,"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak":7142,"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays":7147,"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix":7151,"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons":7155,"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons":7159,"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement":7164,"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons":7168,"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization":7172,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1":7176,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking":7181,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism":7185,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery":7189,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model":7193,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations":7197,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns":7202,"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments":7206,"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity":7210,"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems":7215,"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made":7219,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model":7223,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories":7227,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry":7231,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness":7235,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates":7239,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions":7243,"\u002Fparticle-physics":7247,"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars":7250,"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states":7255,"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology":7259,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus":7263,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification":7268,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum":7272,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder":7276,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity":7280,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation":7285,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening":7289,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean":7293,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem":7297,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure":7302,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes":7306,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model":7310,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak":7314,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno":7319,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process":7323,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis":7327,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium":7331,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse":7336,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence":7340,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure":7344,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution":7349,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars":7353,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip":7357,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":7361,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae":7365,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia":7369,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars":7373,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr":7377,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer":7381,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects":7386,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries":7390,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts":7394,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way":7398,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification":7403,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter":7407,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes":7411,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure":7415,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law":7419,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift":7424,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics":7428,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances":7431,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe":7435,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe":7439,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis":7444,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background":7448,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters":7452,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation":7456,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations":7460,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions":7464,"\u002Fastrophysics-cosmology":7468,"\u002Fcolophon":7471,"\u002F":7474},{"path":2945,"title":2946,"module":5,"summary":2947},"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm","What Is an Algorithm?","An algorithm is a finite, mechanical recipe that transforms inputs into outputs. We define what counts as an algorithm, how we write one down, and the three things we always ask of it: is it correct, is it fast, and can we prove it.\n",{"path":2949,"title":2950,"module":5,"summary":2951},"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques","Proof Techniques","An algorithm without a proof is a conjecture. This lesson collects the handful\nof arguments that certify the algorithms in this course — direct proof,\ncontrapositive, contradiction, ordinary and strong induction, construction, and\ndisproof by counterexample — each with a small worked\nexample and a picture. Loop invariants are a form of induction,\nrecursive correctness falls to strong induction, and the classic broken proofs\n(all horses are the same color) show where inductions go wrong.\n",{"path":2953,"title":2954,"module":5,"summary":2955},"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis","Asymptotic Analysis","We measure an algorithm's running time as a function of its input size, then strip away machine-specific constants and lower-order terms to compare algorithms cleanly. This lesson defines the RAM model and the $O$, $\\Omega$, $\\Theta$, $o$, and $\\omega$ notations, proves the polynomial theorem, and shows how to rank growth rates with the limit test, L'Hôpital, base substitution, and the logarithm identities the arguments lean on.\n",{"path":2957,"title":2958,"module":5,"summary":2959},"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis","Growth Rates and Loop Analysis","With the asymptotic notations in hand, we rank the functions that actually arise in running times — from constant to factorial — proving the orderings between rungs, then read the running time of a loop nest straight off the page. Sequential blocks add, nested loops multiply, index scaling gives logarithms; a worked trace and a tour of cache-aware and galactic algorithms close the lesson.\n",{"path":2961,"title":2962,"module":5,"summary":2963},"\u002Falgorithms\u002Ffoundations\u002Frecurrences","Recurrences and the Master Theorem","Recursive and divide-and-conquer algorithms describe their own running time with a recurrence: $T(n)$ in terms of $T$ on smaller inputs. We solve recurrences three ways — drawing the recursion tree, guessing-and-verifying by induction, and applying the Master Theorem — using merge sort as the running example, then handle unequal splits with Akra–Bazzi.\n",{"path":2965,"title":2966,"module":5,"summary":2967},"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis","Amortized Analysis","Some operations are occasionally expensive but cheap on average across any\nsequence. Amortized analysis bounds the average cost per operation over a\nworst-case sequence — not an expectation — so a rare costly step is paid for by\nthe many cheap ones around it. This lesson develops the aggregate, accounting,\nand potential methods on dynamic-array doubling, the binary counter, and a\nstack with multipop.\n",{"path":2969,"title":2970,"module":2971,"summary":2972},"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort","Divide and Conquer & Mergesort","Divide & Conquer","Divide and conquer breaks a problem into smaller copies of itself, solves\nthem recursively, and stitches the answers together. We meet the paradigm\nthrough mergesort — its merge step, its loop-invariant proof, and the\nrecursion tree that pins its cost at $\\Theta(n\\log n)$ — then count inversions\nwith the same machinery and distill the whole pattern into the master theorem.\n",{"path":2974,"title":2975,"module":2971,"summary":2976},"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort","Quicksort","Quicksort sorts in place by partitioning around a pivot and recursing on\neach side. We give Lomuto and Hoare partitioning with a correctness\ninvariant, see why a bad pivot costs $\\Theta(n^2)$ while a balanced one gives\n$\\Theta(n\\log n)$, and prove that randomizing the pivot makes the expected\ncost $\\Theta(n\\log n)$ on every input.\n",{"path":2978,"title":2979,"module":2971,"summary":2980},"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection","Linear-Time Selection","Finding the $k$-th smallest element looks like it should require sorting, but\nit does not. Quickselect adapts quicksort's partition to recurse on just one\nside, achieving expected $O(n)$. The median-of-medians algorithm guarantees a\ngood pivot with the groups-of-five trick, pushing the worst case down to a\nprovable $O(n)$.\n",{"path":2982,"title":2983,"module":2971,"summary":2984},"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication","Fast Multiplication","Grade-school multiplication is $\\Theta(n^2)$, yet divide and conquer beats it.\nKaratsuba multiplies $n$-bit integers with three half-size products instead of\nfour, giving $\\Theta(n^{\\log_2 3})$, and Strassen multiplies matrices with\nseven block products instead of eight, giving $\\Theta(n^{\\log_2 7})$. Both\nspend cheap additions to save an expensive multiplication, and the master\ntheorem quantifies the savings.\n",{"path":2986,"title":2987,"module":2988,"summary":2989},"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort","Heaps and Heapsort","Sorting & Order Statistics","A binary heap is a tree we store flat in an array, with index arithmetic\nstanding in for pointers. We build the max-heap property bottom-up in $O(n)$\ntime, sort in place in $\\Theta(n\\log n)$ by repeatedly extracting the maximum,\nand reuse the same structure to implement a priority queue.\n",{"path":2991,"title":2992,"module":2988,"summary":2993},"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds","Lower Bounds for Comparison Sorting","Every sort we have seen runs in $\\Omega(n\\log n)$, and that is no accident.\nModeling a sort as a decision tree of comparisons, we show any such tree must\nhave $n!$ leaves, forcing height $\\ge \\log_2(n!) = \\Omega(n\\log n)$ — a bound\nno comparison sort beats in the worst case, on average, or with randomness.\n",{"path":2995,"title":2996,"module":2988,"summary":2997},"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting","Sorting in Linear Time","The $\\Omega(n\\log n)$ barrier only binds algorithms that compare. By instead\nusing keys as array indices we slip past it: counting sort runs in\n$\\Theta(n+k)$ and is stable, radix sort layers it digit by digit, and bucket\nsort averages $\\Theta(n)$ on uniform data. We see exactly when each applies.\n",{"path":2999,"title":3000,"module":2988,"summary":3001},"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting","External Sorting","When the data dwarfs main memory, the cost that matters is no longer\ncomparisons but block transfers to and from disk. External merge sort sorts\nmemory-sized runs, then folds them together with a heap-driven $k$-way merge in\n$\\Theta(\\log_k(N\u002FM))$ passes. Larger fan-out cuts passes; replacement selection\nbuilds longer runs to cut them further.\n",{"path":3003,"title":3004,"module":3005,"summary":3006},"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures","Elementary Data Structures","Data Structures","Every container is built one of two ways: **contiguous** in an array, or\n**linked** through pointers. We trade cache-friendly random access against\n$O(1)$ splicing, derive the **amortized $O(1)$** append of a doubling dynamic\narray, and assemble the two ordered access disciplines — the LIFO **stack** and\nthe FIFO **queue** (with its generalization, the **deque**) — on top of both.\n",{"path":3008,"title":3009,"module":3005,"summary":3010},"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables","Hash Tables","A hash table implements the dictionary — insert, search, delete — in expected\n$O(1)$ time by scattering keys across an array with a hash function. We build\nup from direct addressing, handle collisions by chaining and by open\naddressing, analyze the load factor $\\alpha$, and see how universal hashing\nachieves its expected-time guarantee against every input.\n",{"path":3012,"title":3013,"module":3005,"summary":3014},"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees","Binary Search Trees","A binary search tree keeps keys ordered so that every operation follows a\nsingle root-to-leaf path. We state the BST property, trace search, insert,\nsuccessor, and all three delete cases on concrete trees, prove the inorder\nwalk sorts, and note the drawback — every operation costs $O(h)$, and a\ncarelessly built tree degrades to height $h = \\Theta(n)$, motivating balance.\n",{"path":3016,"title":3017,"module":3005,"summary":3018},"\u002Falgorithms\u002Fdata-structures\u002Favl-trees","AVL Trees","An AVL tree is the first balanced BST: at every node the two subtrees' heights\ndiffer by at most $1$. A Fibonacci-style minimal-node argument forces height\n$h \\le 1.44\\log_2 n = O(\\log n)$, so search, insert, and delete are all\n$O(\\log n)$. Insertion rebalances with at most one of four rotation cases\n(LL, RR, LR, RL); deletion may rotate all the way to the root.\n",{"path":3020,"title":3021,"module":3005,"summary":3022},"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees","Balanced Search Trees","An ordinary BST can degrade to height $\\Theta(n)$; balanced search trees\nguarantee $h = O(\\log n)$ by maintaining invariants and repairing them after\nevery update. We meet rotations, the local restructuring primitive, then\nred-black trees, whose color invariants force logarithmic height, and finally\nB-trees, which trade tall-and-thin for short-and-wide to win on disk.\n",{"path":3024,"title":3025,"module":3005,"summary":3026},"\u002Falgorithms\u002Fdata-structures\u002Funion-find","Disjoint Sets (Union-Find)","The disjoint-set data structure tracks a partition of elements into groups,\nanswering \"are these two in the same group?\" and merging groups on demand. A\nforest of parent pointers, sped up by union by rank and path compression,\ndrives every operation to near-constant $O(\\alpha(n))$ amortized time — the\nstructure behind connectivity queries and Kruskal's minimum spanning tree.\n",{"path":3028,"title":3029,"module":3005,"summary":3030},"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees","Fenwick & Segment Trees","A prefix-sum array answers a range sum in $O(1)$ but pays $O(n)$ per update;\na plain array updates in $O(1)$ but pays $O(n)$ per range sum. Fenwick and\nsegment trees give us _both_ in $O(\\log n)$. The Fenwick (binary indexed) tree\nis a tiny array keyed by the low bit; the segment tree is a general balanced\ntree over canonical ranges that handles any associative aggregate and, with\nlazy propagation, range updates too.\n",{"path":3032,"title":3033,"module":3005,"summary":3034},"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures","Spatial Data Structures","A balanced BST orders keys on a line, but points in the plane have no single\nnatural order. Quadtrees subdivide space recursively into quadrants; k-d trees\nsplit on alternating coordinates at the median. Both make range and\nnearest-neighbour queries fast by carving the plane into boxes a query can\nprune away. Range trees nest a y-tree in an x-tree for fast orthogonal range\nreporting; interval trees index intervals to answer stabbing queries.\n",{"path":3036,"title":3037,"module":3005,"summary":3038},"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures","Skip Lists & Probabilistic Structures","Balanced trees achieve $O(\\log n)$ with rotations and invariants; randomization\ngives the same bound far more simply. A skip list is a layered linked list whose\nexpress lanes are chosen by coin flips, giving expected $O(\\log n)$ search and\ninsert with no rebalancing. A Bloom filter trades exactness for space: a bit\narray and a few hashes answer set membership with no false negatives and a\ntunable false-positive rate, but cannot delete.\n",{"path":3040,"title":3041,"module":3005,"summary":3042},"\u002Falgorithms\u002Fdata-structures\u002Fb-trees","B-Trees","When data lives on disk, the cost that dominates is block transfers, not\ncomparisons — and a binary tree of a billion keys is thirty reads deep. A\nB-tree of minimum degree $t$ is short and wide: $t-1$ to $2t-1$ keys per node,\nall leaves at one depth, height $O(\\log_t n)$. Insertion splits a full node on\nthe way down and pushes its median up; deletion borrows or merges to keep nodes\nfull enough. High fan-out is what minimizes disk I\u002FO.\n",{"path":3044,"title":3045,"module":3005,"summary":3046},"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms","Data-Stream Algorithms","Most of this course assumes data sits in fast memory, addressable at will.\nExternal sorting relaxed that to a re-readable disk. The streaming model goes\nfurther: items arrive one at a time, are seen once, and must be discarded, with\nonly sublinear, often polylogarithmic, memory. In exchange, the answers are\napproximate and probabilistic. We set up the model, then meet reservoir\nsampling for a uniform sample of an unknown-length stream and Morris counting\nfor an approximate tally in doubly-logarithmic space.\n",{"path":3048,"title":3049,"module":3005,"summary":3050},"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches","Streaming Sketches","Sampling and counting kept a random subset or a single approximate tally.\nSketches go further: fixed, tiny summaries that answer questions about a\nstream's frequencies. We meet the Count–Min sketch for point frequency\nestimation, Misra–Gries for heavy hitters, and HyperLogLog for distinct\ncounts, each trading a controlled error for space that never grows with the\nstream.\n",{"path":3052,"title":3053,"module":3054,"summary":3055},"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows","Two Pointers & Sliding Windows","Sequences & Strings","A family of array idioms that collapse an obvious $O(n^2)$ scan into a single\n$O(n)$ pass by maintaining an invariant as indices move. We meet two pointers\n(converging on a sorted array, and a fast\u002Fslow pair for in-place rewriting)\nand the sliding window (fixed and variable size, amortized $O(n)$). The\ncompanion lesson on prefix sums picks up where the window's positivity\nassumption fails.\n",{"path":3057,"title":3058,"module":3054,"summary":3059},"\u002Falgorithms\u002Fsequences\u002Fprefix-sums","Prefix Sums & Difference Arrays","Prefix sums precompute the running total once so that any range-sum query is a\nsingle subtraction, $P[r{+}1]-P[l]$, in $O(1)$. A hash map of prefix\nfrequencies then counts subarrays summing to $k$ in $O(n)$ — even with negative\nentries, where the sliding window fails. The difference-array dual turns $m$\nrange-adds into $O(m+n)$, and the whole idea lifts to 2-D rectangle sums by\ninclusion–exclusion.\n",{"path":3061,"title":3062,"module":3054,"summary":3063},"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks","Monotonic Stacks & Queues","A **monotonic stack** keeps its contents sorted by popping every element that\nwould break the order before each push — turning a family of \"previous\u002Fnext\ngreater (or smaller) element\" questions into a single $O(n)$ scan. We trace\nthe next-greater-element routine push by push and prove its amortized bound,\nfuse two such scans to measure the **largest rectangle in a histogram** in\nlinear time, extend the idea to a **monotonic deque** that streams the\n**sliding-window maximum** in $O(n)$, and use asymmetric tie-breaking to\ncount **subarray minimums** without double-counting duplicates.\n",{"path":3065,"title":3066,"module":3054,"summary":3067},"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer","Binary Search on the Answer","Binary search locates the boundary of a **monotone predicate** $p(x)$ in\n$O(\\log(\\text{range}))$ probes; sorted arrays are only one instance. We first\nestablish the half-open `while (lo \u003C hi)` template for $\\textsc{lower\\_bound}$\nand $\\textsc{upper\\_bound}$, then generalize to \"binary search on the answer\":\nwhenever feasibility is monotone in a numeric parameter, we binary search the\nparameter itself, calling a feasibility check at each step.\n",{"path":3069,"title":3070,"module":3054,"summary":3071},"\u002Falgorithms\u002Fsequences\u002Fstring-matching","String Matching: Naive & Rabin–Karp","Given a text $T$ of length $n$ and a pattern $P$ of length $m$, find every\noccurrence of $P$ in $T$. The naive scan costs $O(nm)$ and re-reads text it has\nalready seen. Rabin–Karp fixes the first inefficiency with a **rolling hash**:\neach length-$m$ window is summarized by one number, updated in $O(1)$ per slide,\nverified on a hash match to kill collisions, for expected $O(n+m)$. A companion\nlesson removes the re-reading entirely with KMP and the Z-function.\n",{"path":3073,"title":3074,"module":3054,"summary":3075},"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function","String Matching: KMP & the Z-Function","Two linear-time matchers that beat Rabin–Karp's expected bound with a\nworst-case guarantee and no randomness. KMP precomputes a **failure function**\n$\\pi$ so a mismatch slides the pattern by $q-\\pi[q-1]$ and the text pointer\nnever backs up, for $O(n+m)$. The **Z-function** computes the longest\nprefix-match at every position via the Z-box, giving the same bound from a\ndifferent angle; the two encodings of a string's self-overlap convert freely.\n",{"path":3077,"title":3078,"module":3054,"summary":3079},"\u002Falgorithms\u002Fsequences\u002Ftries","Tries & Prefix Trees","A **trie** stores a set of strings in a tree keyed by _characters_, so that\ninsert, search, delete, and prefix-test all run in $O(L)$ time — the length\nof the key, _independent of how many keys are stored_. Shared prefixes are\nstored once, which makes tries the natural structure for autocomplete,\nwildcard dictionaries, board word-search, and — over the alphabet $\\{0,1\\}$\n— the maximum-XOR-pair problem. Radix (Patricia) trees compress the chains.\n",{"path":3081,"title":3082,"module":3054,"summary":3083},"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick","Suffix Arrays, LCP & Aho–Corasick","A **suffix array** sorts all $n$ suffixes of a string, indexing every substring\nat once; built in $O(n\\log n)$, it locates a pattern by binary search in\n$O(m\\log n)$. Its companion **LCP array** (Kasai's $O(n)$ algorithm) counts\ndistinct substrings and finds the longest repeated substring. **Aho–Corasick**\ngeneralises KMP to a whole dictionary: a trie of patterns plus failure links\nscans the text once in $O(\\text{text} + \\text{matches})$ to report every\noccurrence of every pattern. Manacher's algorithm finds all palindromic\nsubstrings in $O(n)$.\n",{"path":3085,"title":3086,"module":3087,"summary":3088},"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal","Graph Representations and Traversal","Graphs","A graph captures _relationships_ — who connects to whom. We fix the\nvocabulary, weigh the two standard representations (adjacency list versus\nmatrix), then meet the single search skeleton behind everything that follows:\nWhatever-First-Search, and its breadth-first reading, which finds shortest\npaths by number of edges in $O(V + E)$.\n",{"path":3090,"title":3091,"module":3087,"summary":3092},"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search","Depth-First Search","Swap BFS's queue for a stack and the search plunges instead of fanning out.\nDepth-first search stamps every vertex with discovery and finish times that\nnest like parentheses, classifies each edge as tree, back, forward, or cross,\nand — through the back edge — decides in one pass whether a graph has a cycle.\nThese timestamps underpin topological sort, strong\nconnectivity, and the rest of this module.\n",{"path":3094,"title":3095,"module":3087,"summary":3096},"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc","Topological Sort and Strong Connectivity","Directed acyclic graphs model dependencies: tasks that must precede other\ntasks. A _topological order_ lays such a graph out in a line so every edge\npoints forward, and depth-first finish times yield one almost for free.\nWe then ask the harder question for graphs _with_ cycles: which vertices can\nreach each other? The answer is the strongly connected components, found by a\ntwo-pass DFS.\n",{"path":3098,"title":3099,"module":3087,"summary":3100},"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees","Minimum Spanning Trees","Given a weighted network, how do we connect everything as cheaply as possible?\nThe answer is a minimum spanning tree, and one lemma — the cut property —\njustifies _every_ correct MST algorithm. We prove the cut and cycle\nproperties by exchange arguments, use them to settle uniqueness, and meet the\noldest MST algorithm, Borůvka's, whose parallel component-merging rounds fall\nstraight out of the cut rule.\n",{"path":3102,"title":3103,"module":3087,"summary":3104},"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim","Kruskal and Prim","The two minimum-spanning-tree algorithms you will actually implement.\nKruskal grows a forest edge by edge, cheapest first, using a union-find\nstructure to reject cycle-closing edges; Prim grows one tree outward from a\nroot with a priority queue, exactly Dijkstra rekeyed by attachment cost. Both\ntraced in full on a nine-town graph, with the edge cases, the bottleneck\nproperty, and where each one wins.\n",{"path":3106,"title":3107,"module":3087,"summary":3108},"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths","Shortest Paths","Finding the cheapest route through a weighted network is one of the most-used\nalgorithms in computing, and a single operation — _relaxation_ — underlies\nevery method. We build the primitive, prove the triangle inequality and\noptimal substructure that make it work, then meet Dijkstra's algorithm: the\ngreedy solution for non-negative weights, traced vertex by vertex, with the\ncut argument that proves each extraction is final.\n",{"path":3110,"title":3111,"module":3087,"summary":3112},"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights","All-Pairs and Negative Weights","Dijkstra's greedy schedule breaks the moment an edge goes negative. We give it\nup for dynamic programming: Bellman-Ford derived as a DP over edge budgets,\nwith its negative-cycle detector, and Floyd-Warshall computing the distance\nbetween _every_ pair of vertices via a DP over which vertices a path may pass\nthrough. We close with Johnson's algorithm and the arbitrage problems that\nnegative cycles encode.\n",{"path":3114,"title":3115,"module":3087,"summary":3116},"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow","Network Flow","How much can flow through a network from source to sink? We build flow\nnetworks with capacity and conservation constraints, increase a flow by\npushing along augmenting paths in the residual graph, and see how reverse\nedges let the algorithm undo earlier routing. Ford-Fulkerson and its BFS refinement\nEdmonds-Karp find a maximum flow, traced end to end on a worked network.\n",{"path":3118,"title":3119,"module":3087,"summary":3120},"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut","Max-Flow Min-Cut and Applications","Why is the flow found when no augmenting path remains actually optimal? The\nanswer is a duality theorem: the maximum flow equals the minimum cut. We prove\nit, read the minimum cut off the final residual graph, then derive bipartite\nmatching and a catalog of modeling reductions from the flow\nabstraction — before touching the modern algorithms that supersede\nEdmonds-Karp.\n",{"path":3122,"title":3123,"module":3087,"summary":3124},"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points","Bridges & Articulation Points","A **bridge** is an edge whose removal disconnects the graph; an **articulation\npoint** is a vertex whose removal does. Both are single points of failure in a\nnetwork. A single depth-first search computes discovery times and **low-links**,\nand two local criteria — $low[v] > disc[u]$ for bridges, $low[v] \\ge disc[u]$\nfor cut vertices — find them all in $O(V+E)$.\n",{"path":3126,"title":3127,"module":3087,"summary":3128},"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor","Lowest Common Ancestor & Binary Lifting","Given a rooted tree, the lowest common ancestor of $u$ and $v$ is the deepest\nnode that is an ancestor of both. A naive walk answers one query in $O(h)$;\n**binary lifting** precomputes the $2^k$-th ancestor of every node in\n$O(n\\log n)$, then answers $k$-th-ancestor and LCA queries in $O(\\log n)$ each.\nWe derive both jumps, apply them to tree distance, and compare against the\nEuler-tour + RMQ and Tarjan offline alternatives.\n",{"path":3130,"title":3131,"module":3087,"summary":3132},"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat","2-SAT via Implication Graphs","A boolean formula whose every clause has exactly two literals can be solved in\n_linear_ time — even though its three-literal cousin is NP-complete. The idea\nis to read each clause as a pair of implications, build a directed graph on the\n$2n$ literals, and ask a question we already know how to answer: which literals\nshare a strongly connected component? The formula is satisfiable iff no variable\nlands in the same SCC as its own negation, and the SCCs' topological order\nyields a satisfying assignment for free.\n",{"path":3134,"title":3135,"module":3087,"summary":3136},"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours","Eulerian Tours","An **Eulerian tour** uses every _edge_ of a graph exactly once. We give the\nexact parity and balance conditions under which one exists (even degree\nfor undirected graphs, in-degree equal to out-degree for directed) and Hierholzer's\n$O(E)$ algorithm that constructs one by splicing closed sub-tours. We contrast\nthis sharply with the **Hamiltonian** problem (visit every _vertex_ once),\nwhich is NP-complete: visiting edges is easy, visiting vertices is hard.\n",{"path":3138,"title":3139,"module":3087,"summary":3140},"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching","Bipartite Matching","Pairing applicants to jobs, students to slots, files to disks: all are\n**maximum bipartite matching**. We solve it combinatorially with **augmenting\npaths** (Kuhn's algorithm, $O(VE)$), speed it up to $O(E\\sqrt V)$ with\n**Hopcroft–Karp**, and uncover the structure behind it — **König's theorem**\n(max matching equals min vertex cover) and **Hall's marriage theorem** (a\nperfect matching exists iff every set has enough neighbors).\n",{"path":3142,"title":3143,"module":3144,"summary":3145},"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method","The Greedy Method","Greedy Algorithms","A greedy algorithm builds a solution one locally-best choice at a time and\nnever looks back. We isolate the two properties that make this work — the\ngreedy-choice property and optimal substructure — prove the canonical\nactivity-selection algorithm correct with an exchange argument, watch greedy\nfail on the 0\u002F1 knapsack, and glimpse matroids as the theory\nthat says exactly when the greedy method is optimal.\n",{"path":3147,"title":3148,"module":3144,"summary":3149},"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals","Scheduling & Interval Partitioning","Three classic scheduling problems all yield to greedy algorithms — and all\nthree turn on a single design decision: which key to sort by. Interval\nscheduling sorts by **finish** time to pack the most compatible jobs;\ninterval partitioning sorts by **start** time and proves the rooms needed\nequal the maximum overlap **depth**; minimizing maximum lateness sorts by\n**deadline** and is justified by an adjacent-swap exchange argument.\n",{"path":3151,"title":3152,"module":3144,"summary":3153},"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes","Huffman Codes","Huffman coding builds a\nprovably optimal prefix-free binary code by repeatedly merging the two least\nfrequent symbols. We develop prefix-free codes as binary trees, give the\nalgorithm with a priority queue, build a Huffman tree from example\nfrequencies, prove optimality with the same greedy-choice-plus-substructure\nargument, and pin the running time at $O(n\\log n)$.\n",{"path":3155,"title":3156,"module":3144,"summary":3157},"\u002Falgorithms\u002Fgreedy\u002Fmatroids","Matroids & Exchange Arguments","The capstone of the greedy module: _why_ and _when_ a greedy algorithm is\nprovably optimal. We recap the two correctness templates — **greedy-stays-ahead**\nand the **exchange argument** — then meet the **matroid** $M=(S,\\mathcal{I})$, an\nabstraction whose **exchange property** is the structure greedy needs.\nThe matroid–greedy theorem says sorting by weight and taking what stays\nindependent yields a maximum-weight basis _if and only if_ the structure is a\nmatroid. Kruskal's MST is the canonical instance; 0\u002F1 knapsack and TSP are the\ncanonical failures.\n",{"path":3159,"title":3160,"module":3144,"summary":3161},"\u002Falgorithms\u002Fgreedy\u002Fstable-matching","Stable Matching (Gale–Shapley)","Two sides each rank the other; we want a matching with no **blocking pair** — no\ntwo participants who both prefer each other to their assigned partners. The\n**Gale–Shapley deferred-acceptance** algorithm has proposers propose in\npreference order while receivers tentatively hold the best offer so far. We prove\nit terminates in $\\O(n^2)$ proposals, returns a **perfect** matching, and that\nthe matching is **stable**. A sharper asymmetry follows: deferred acceptance is\n**proposer-optimal** and **receiver-pessimal**, the structural fact behind the\nresidency match and school-choice systems.\n",{"path":3163,"title":3164,"module":3165,"summary":3166},"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples","Principles of Dynamic Programming","Dynamic Programming","Dynamic programming is recursion with memory: when a recursive solution\nre-solves the same subproblems again and again, we solve each one once and\nstore the answer. We identify the two structural conditions that make this\nwork — overlapping subproblems and optimal substructure — contrast top-down\nmemoization with bottom-up tabulation, and distil the whole method into a\nfive-step recipe.\n",{"path":3168,"title":3169,"module":3165,"summary":3170},"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp","Sequence Alignment & LCS","Two strings can be compared by how much of one appears inside the\nother. The longest common subsequence (LCS) and edit distance are the two\nclassic measures, and they are the _same_ dynamic program with different\ncosts. We derive the LCS recurrence by examining the last characters, fill a\nworked DP table, reconstruct the subsequence, and then show edit distance as\nthe identical $\\Theta(mn)$ pattern.\n",{"path":3172,"title":3173,"module":3165,"summary":3174},"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence","Longest Increasing Subsequence","Given a sequence of numbers, how long is its longest strictly increasing\nsubsequence? A first dynamic program indexes subproblems by the element each\nsubsequence _ends at_, giving an $O(n^2)$ solution with parent-pointer\nreconstruction. A sharper idea, the patience-sorting _tails_ array searched by\nbinary search, drops the time to $O(n\\log n)$. We then fold in the\nvariants: non-decreasing, counting, Russian-doll envelopes, and bitonic.\n",{"path":3176,"title":3177,"module":3165,"summary":3178},"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack","Knapsack & Subset Problems","We start from $\\textsc{Subset-sum}$ — does some sublist hit a target $t$? — and its\ninclude\u002Fexclude recurrence over a boolean table $A(i, u)$, then bolt on values\nto get 0\u002F1 knapsack as the same machine with $\\lor$ promoted to $\\max$. We fill\nboth tables, recover the chosen items, and confront the surprise that the\n$\\Theta(nt)$ running time is only _pseudo-polynomial_ — exponential in the bit\nlength $b$, and unimprovable unless $\\mathrm{P}=\\mathrm{NP}$ since subset-sum is\n$\\textsc{NP-complete}$. The fractional variant reveals the sharp line between greedy\nand dynamic programming.\n",{"path":3180,"title":3181,"module":3165,"summary":3182},"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded","Coin Change & Unbounded Knapsack","The previous lesson let each item be taken at most once. Drop that cap — items\nmay be reused _any number of times_ — and the 0\u002F1 knapsack collapses from a\ntwo-dimensional table to a one-dimensional one, because there is no longer a\nprefix of \"already-used\" items to track. We meet **unbounded knapsack**, then\nits most famous instance, **coin change**: the minimum-coins recurrence\n$C[a] = 1 + \\min_c C[a-c]$, and the counting variant where the _order of the\nloops_ decides whether you count unordered combinations or ordered sequences —\nthe classic bug. Greed fails in general but works for canonical coin systems.\n",{"path":3184,"title":3185,"module":3165,"summary":3186},"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp","Interval DP","Many problems ask for the best way to combine a contiguous range of items, and\nthe answer is a dynamic program over subintervals $[i,j]$ that chooses a split\npoint $k$. We derive the pattern from matrix-chain multiplication —\nparenthesising a product to minimize scalar multiplications in $O(n^3)$ — distil\nit into a reusable template filled by increasing interval length, and then meet\nits sharpest variant: the \"last operation\" trick behind Burst Balloons and\ncutting a stick, where fixing the _last_ move (not the first) makes the two\nsides independent.\n",{"path":3188,"title":3189,"module":3165,"summary":3190},"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp","Dynamic Programming on Trees","When the subproblems of a dynamic program are _rooted subtrees_, a single\npost-order DFS solves the whole thing in $O(n)$: each node combines the\nalready-computed answers of its children. We meet the archetype — maximum-weight\nindependent set on a tree — then the \"path through a node\" pattern behind tree\ndiameter and maximum path sum, and finally **rerooting**, which computes a\nper-node answer for _every_ node as root in $O(n)$ with two passes.\n",{"path":3192,"title":3193,"module":3165,"summary":3194},"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp","Bitmask DP","When a subproblem depends not on an index or a prefix but on _which subset_ of\na small ground set has been used, we can encode that subset as the bits of an\ninteger and index a DP table by it. With $n \\le \\sim 20$ the $2^n$ subsets fit\nin a table, turning $\\Theta(n!)$ brute force into $O(2^n \\cdot \\text{poly}(n))$.\nWe meet the bit tricks, the Held–Karp TSP archetype, assignment by mask,\nsubset-sum partitioning, and submask enumeration with its $3^n$ bound.\n",{"path":3196,"title":3197,"module":3165,"summary":3198},"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations","DP Optimizations","A correct DP recurrence is only half the battle; its naive evaluation is often\na factor of $n$ slower than necessary. This capstone surveys five techniques,\nmonotonic-queue, the convex hull trick, divide-and-conquer optimization,\nKnuth's optimization, and SOS DP, that each exploit _structure in the\ntransition_ (a sliding window, linear costs, monotone optimal splits, the\nquadrangle inequality, or subset lattices) to shave an $O(n)$, $O(\\log n)$, or\nworse factor off the running time.\n",{"path":3200,"title":3201,"module":3165,"summary":3202},"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs","Dynamic Programming on Graphs","Many graph algorithms are dynamic programs: the subproblem is the\n_best value reachable under a restricted resource_ — intermediate vertices\nallowed, edges allowed, or a topological prefix — and edge _relaxation_ is the\nDP transition. We frame Floyd–Warshall as the archetype ($O(V^3)$ all-pairs\nshortest paths), Bellman–Ford as a DP over path length (the at-most-$K$-stops\nvariant), DAG-DP in topological order ($O(V+E)$), and Warshall's transitive\nclosure as the boolean analog.\n",{"path":3204,"title":3205,"module":3165,"summary":3206},"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp","Digit & Probability DP","Two DP patterns with unusual state. _Digit DP_ counts the\nintegers in a range $[L, R]$ that satisfy a digit constraint by walking the\ndecimal places of the bound, carrying a _tight_ flag that marks when the prefix\nstill equals the bound's. _Probability\u002FExpectation DP_ replaces \"best value\" with\n\"expected value,\" using linearity of expectation to make each state an\naverage over its weighted transitions — the natural tool for expected step\ncounts and absorbing Markov chains.\n",{"path":3208,"title":3209,"module":3210,"summary":3211},"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals","Backtracking: Subsets, Permutations & Combinations","Backtracking & Search","Backtracking builds a solution one choice at a time and abandons a partial\nsolution the moment it cannot be completed, exploring a state-space tree by\ndepth-first search. We meet the universal choose\u002Fexplore\u002Fun-choose template,\nderive the canonical enumerations — subsets ($2^n$), permutations ($n!$), and\ncombinations ($\\binom{n}{k}$) — handle duplicate elements by skipping equal\nsiblings, and see how pruning turns an exponential search into a tractable one.\n",{"path":3213,"title":3214,"module":3210,"summary":3215},"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search","Constraint Search: N-Queens & Sudoku","Many hard puzzles are **constraint satisfaction problems**: assign each\nvariable a value from its domain so that every constraint holds. Backtracking\nsolves them by assigning variables one at a time and rejecting a partial\nassignment the instant a constraint breaks. We make the rejection cheap — $O(1)$\nconflict checks for N-Queens via column and diagonal sets — and prune harder\nwith **forward checking**, **MRV** ordering, and **constraint propagation**,\nwhich is what lets an exponential search actually finish.\n",{"path":3217,"title":3218,"module":3210,"summary":3219},"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound","Branch & Bound and Meet in the Middle","Plain backtracking prunes a search tree by _feasibility_; for _optimization_\nproblems we can prune far more aggressively by _value_. **Branch and bound**\nkeeps the best complete solution found so far and discards any partial solution\nwhose optimistic bound cannot beat it. **Meet in the middle** splits the\ninstance in two, enumerates each half, and recombines by binary search — turning\n$2^n$ into $O(2^{n\u002F2}\\,n)$ and pushing exact search out to $n \\approx 40$.\n",{"path":3221,"title":3222,"module":3210,"summary":3223},"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking","Graph Backtracking: m-Coloring & Hamiltonian Paths","Two famous graph problems have no known efficient algorithm, yet yield cleanly\nto backtracking with the right pruning. **Graph $m$-coloring** assigns one of\n$m$ colors to each vertex so no edge is monochromatic; we color vertices in turn\nand reject a color the instant a neighbor already has it. **Hamiltonian\npath\u002Fcycle** asks for a walk visiting every vertex exactly once; we extend a path\ngreedily and backtrack on dead ends. Both are NP-complete, so the worst case is\nexponential — but feasibility pruning and good vertex ordering make real\ninstances tractable, and the contrast with the easy Eulerian condition shows why.\n",{"path":3225,"title":3226,"module":3227,"summary":3228},"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics","Number Theory: GCD & Modular Arithmetic","Mathematical Algorithms","This lesson opens the mathematical-algorithms module with the bedrock of\ncomputational number theory. We prove Euclid's recurrence\n$\\gcd(a,b)=\\gcd(b,\\,a\\bmod b)$ and its $O(\\log\\min(a,b))$ running time, extend\nit to recover Bézout coefficients $x,y$ with $ax+by=\\gcd(a,b)$, and build\nmodular arithmetic on residue classes — including when a modular inverse\n$a^{-1}\\bmod m$ exists and how to compute it.\n",{"path":3230,"title":3231,"module":3227,"summary":3232},"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality","Modular Exponentiation & Primality","Computing $a^n \\bmod m$ naively costs $n$ multiplications; **repeated squaring**\ndoes it in $O(\\log n)$ by reading the bits of the exponent. We use this routine\nto state **Fermat's little theorem** (and the modular inverse it gives), then to\ntest primality — trial division, the probabilistic **Fermat** and **Miller–Rabin**\ntests, and the deterministic witness set that settles primality for every 64-bit\nnumber.\n",{"path":3234,"title":3235,"module":3227,"summary":3236},"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization","Sieves & Factorization","The previous lesson tested one number for primality; here we ask for _all_\nprimes up to $n$ at once. The **sieve of Eratosthenes** cross-cuts composites\nin $O(n\\log\\log n)$, and a **linear sieve** does it in $O(n)$ while recording\neach number's **smallest prime factor**, which then factors any $x \\le n$ in\n$O(\\log x)$. From a factorization $x = \\prod p_i^{e_i}$ the multiplicative\nfunctions $\\tau$, $\\sigma$, and Euler's totient $\\varphi$ fall out immediately.\n",{"path":3238,"title":3239,"module":3227,"summary":3240},"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics","Combinatorics & Counting","Counting is the arithmetic of finite sets. We build up from permutations\n$n!$ and combinations $\\binom{n}{k}$, prove Pascal's rule by a bijection,\nand count multisets with stars and bars. The practical core is computing\n$\\binom{n}{k}\\bmod p$ in $O(1)$ from precomputed factorials and inverse\nfactorials. We close with inclusion–exclusion and the Chinese Remainder\nTheorem, both of which lean on the modular inverse from the previous lesson.\n",{"path":3242,"title":3243,"module":3227,"summary":3244},"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation","Matrix Exponentiation","A linear recurrence advances by a fixed linear rule, so one step is a\n**matrix–vector** product and $n$ steps are a **matrix power**. Packaging\nFibonacci, and any $k$-term recurrence, into a transition matrix lets us jump\nto the $n$-th term in $O(k^3 \\log n)$ by **exponentiation by squaring** — the\nsame doubling trick from modular exponentiation, now over matrices.\n",{"path":3246,"title":3247,"module":3227,"summary":3248},"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform","Fast Fourier Transform","Multiplying two degree-$n$ polynomials by the schoolbook method costs\n$\\Theta(n^2)$. Evaluating them at the **$n$-th roots of unity** turns\nmultiplication into pointwise products, and the **Cooley–Tukey FFT** computes\nall those evaluations in $\\Theta(n\\log n)$ by splitting even and odd\ncoefficients. The inverse FFT interpolates back, giving $\\Theta(n\\log n)$\npolynomial and big-integer multiplication.\n",{"path":3250,"title":3251,"module":3227,"summary":3252},"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent","Numerical Optimization and Gradient Descent","Most of this course chases **discrete** optima over finite structures; here the\nsearch space is **continuous** and the objective $f$ is differentiable. The\n**gradient** points uphill, so stepping against it —\n$x_{t+1} = x_t - \\eta\\,\\nabla f(x_t)$ — walks downhill. **Convexity** makes every\nlocal minimum global; for convex $L$-smooth $f$ gradient descent converges at\n$O(1\u002Ft)$, and **geometrically** under strong convexity. **Newton's method** uses\nthe Hessian for local quadratic convergence, and **bisection** is the robust\nbracketing fallback for roots.\n",{"path":3254,"title":3255,"module":3256,"summary":3257},"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives","Geometric Primitives & Orientation","Computational Geometry","Computational geometry is built on a single reliable primitive — the\n**orientation test**, a sign of a cross product that tells whether three points\nturn left, right, or lie collinear. From points-as-vectors and the dot and\ncross products we derive orientation, segment intersection, the shoelace area\nformula, and point-in-polygon tests, keeping all arithmetic **exact and\ninteger** so that no floating-point rounding can corrupt a sign.\n",{"path":3259,"title":3260,"module":3256,"summary":3261},"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull","Convex Hull","The convex hull is the smallest convex polygon enclosing a point set — the\nrubber band snapped around the nails. We build it with Andrew's monotone chain,\nsorting by $(x,y)$ and sweeping a lower and upper hull while popping any\nnon-left turn via the orientation primitive, in $O(n\\log n)$. A reduction from\nsorting shows that bound is optimal, and the hull yields diameter, smallest\nenclosing rectangle, and more through rotating calipers.\n",{"path":3263,"title":3264,"module":3256,"summary":3265},"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line","Sweep-Line Algorithms","The plane-sweep paradigm turns a static $2$-D geometry problem into a dynamic\n$1$-D ordered-set problem: a vertical line sweeps left to right, stopping at an\n$x$-sorted **event queue** while a balanced-BST **status structure** tracks the\nobjects it currently crosses, ordered by $y$. We derive Bentley–Ottmann segment\nintersection in $O((n+k)\\log n)$, recover closest-pair in $O(n\\log n)$, and\nreduce skyline, rectangle-area, and overlap problems to $\\pm1$ event sweeps.\n",{"path":3267,"title":3268,"module":3256,"summary":3269},"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity","Polygons & Proximity","Four classics that live on top of the orientation primitive and the convex\nhull. **Closest pair** falls to divide-and-conquer in $\\Theta(n\\log n)$, where a\npacking argument caps the cross-boundary combine at seven neighbours per point.\n**Point-in-polygon** is the ray-casting parity test or the winding-number count\nthat also handles self-intersecting boundaries, both with their edge caveats. The **shoelace formula**\ngives signed area as a sum of cross products, and **rotating calipers** walk the\nhull to read off diameter and width in $O(n)$.\n",{"path":3271,"title":3272,"module":3273,"summary":3274},"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions","P, NP, and Reductions","Intractability","Most problems we have met so far have fast algorithms. A vast and important\nfamily seemingly does not. This lesson builds the vocabulary for that\ndivide: decision problems, the class $\\mathsf{P}$ of problems we can solve\nquickly, the class $\\mathsf{NP}$ of problems whose solutions we can _check_\nquickly, and polynomial-time reductions, the tool that lets us compare the\ndifficulty of two problems without solving either.\n",{"path":3276,"title":3277,"module":3273,"summary":3278},"\u002Falgorithms\u002Fintractability\u002Fnp-completeness","NP-Completeness","Some problems in $\\mathsf{NP}$ are universally hardest: every other problem\nin $\\mathsf{NP}$ reduces to them. This lesson defines $\\mathsf{NP}$-hard and\n$\\mathsf{NP}$-complete, states the Cook–Levin theorem that anchors the\ntheory on **SAT**, walks the web of reductions that grows from it, and gives\nthe four-step recipe for proving a brand-new problem $\\mathsf{NP}$-complete.\n",{"path":3280,"title":3281,"module":3273,"summary":3282},"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness","Coping with NP-Hardness","An $\\mathsf{NP}$-hardness proof rules out an exact polynomial-time algorithm,\nnot the need for answers. This lesson surveys four practical responses to\nhardness: approximation algorithms with a provable ratio (worked through a\n2-approximation for vertex cover), heuristics and local search, exact\nexponential methods like branch and bound, and exploiting special structure\nin the instances you actually face.\n",{"path":3284,"title":3285,"module":3273,"summary":3286},"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms","Approximation Algorithms","When a problem is $\\mathsf{NP}$-hard we can still ask for a solution\nprovably close to optimal. This lesson makes the approximation ratio\n$\\rho$ precise, separates absolute from relative guarantees, and proves the\nratios of four classic algorithms: greedy set cover ($H_n \\approx \\ln n$),\nthe MST-doubling $2$-approximation for metric TSP, load balancing, and the\nknapsack FPTAS. It closes with the hierarchy PTAS \u002F FPTAS and the limits of\ninapproximability.\n",{"path":3288,"title":3289,"module":306,"summary":306},"\u002Falgorithms","Algorithms",{"path":3291,"title":3292,"module":3293,"summary":3294},"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models","Functions and Mathematical Models","Limits and Continuity","A function assigns exactly one output to each input and can be presented four ways: verbally, numerically, graphically, or by a formula. The elementary families — linear, polynomial, power, rational, trigonometric, exponential — model most elementary phenomena, and transformation, combination, and composition build every other function from them.\n",{"path":3296,"title":3297,"module":3293,"summary":3298},"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function","The Limit of a Function","The tangent and velocity problems both ask for a value a ratio approaches but never reaches — the limit. Its intuitive two-sided form splits into one-sided limits that must agree; a limit fails to exist when they disagree or when the function grows without bound, the latter producing a vertical asymptote.\n",{"path":3300,"title":3301,"module":3293,"summary":3302},"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition","Limit Laws and the ε–δ Definition","The Limit Laws reduce a limit to arithmetic on simpler limits, and direct substitution settles polynomials and rational functions outright. The 0\u002F0 forms that resist substitution yield to algebra or the Squeeze Theorem, and the ε–δ definition makes \"arbitrarily close\" precise as a pair of quantified inequalities.\n",{"path":3304,"title":3305,"module":3293,"summary":3306},"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity","Continuity","A function is continuous at a point when its limit there equals its value, so the graph has no break. Continuity fails in three geometric ways; it is closed under arithmetic and composition, so the elementary families and their combinations are continuous; and on a closed interval it forces the Intermediate Value Theorem, which locates roots.\n",{"path":3308,"title":3309,"module":3310,"summary":3311},"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change","The Derivative and Rates of Change","Derivatives","A single limit with three readings: the slope of the tangent line, the instantaneous velocity of a moving object, and the rate of change of one quantity with respect to another. Built from the difference quotient, extended from a value at one point to a function of x, and undefined exactly where a corner, jump, or vertical tangent appears.\n",{"path":3313,"title":3314,"module":3310,"summary":3315},"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule","Differentiation Rules and the Chain Rule","Computing every derivative from the limit definition is tedious. A short list of rules — power, constant multiple, sum, product, quotient — differentiates any polynomial or rational function by inspection. The trigonometric derivatives follow from one limit, and the chain rule extends everything to composite functions by multiplying rates along the composition.\n",{"path":3317,"title":3318,"module":3310,"summary":3319},"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates","Implicit Differentiation and Related Rates","Not every curve is the graph of y = f(x). Implicit differentiation finds a slope from an equation in x and y directly, treating y as an unknown function and differentiating both sides. The same chain-rule idea drives related rates, where one measured rate of change forces another through a geometric constraint, and interprets the derivative as a rate across the sciences.\n",{"path":3321,"title":3322,"module":3310,"summary":3323},"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials","Linear Approximations and Differentials","A differentiable curve looks like its tangent line under enough magnification, so the tangent is a usable stand-in for the function near the point of contact. The linear approximation and its linearization, written in the language of differentials dy and dx, estimate both function values and the measurement error propagated into a computed quantity.\n",{"path":3325,"title":3326,"module":3327,"summary":3328},"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem","Extrema and the Mean Value Theorem","Applications of Derivatives","Absolute and local extrema, the Extreme Value Theorem that guarantees them, and Fermat's Theorem pinning candidates to critical numbers. The Closed Interval Method turns the search for extrema into a finite checklist. Rolle's Theorem and the Mean Value Theorem then connect a function's values to its derivative, giving the tool that most of differential calculus rests on.\n",{"path":3330,"title":3331,"module":3327,"summary":3332},"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph","How Derivatives Shape a Graph","The sign of the first derivative fixes where a function rises and falls, and a sign change identifies each local extremum through the First Derivative Test. The second derivative sets concavity and inflection points and gives a faster Second Derivative Test. Limits at infinity describe end behavior and the horizontal asymptotes a curve settles toward.\n",{"path":3334,"title":3335,"module":3327,"summary":3336},"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization","Curve Sketching and Optimization","A checklist that synthesizes domain, symmetry, asymptotes, monotonicity, extrema, and concavity into a hand sketch of any function, plus the slant asymptote for rational functions whose degree exceeds the denominator's. The same extremum machinery, applied to a word problem, becomes the optimization template: model one quantity, reduce it to a function of a single variable, and find its absolute extremum.\n",{"path":3338,"title":3339,"module":3327,"summary":3340},"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives","Newton's Method and Antiderivatives","Newton's method solves $f(x) = 0$ by repeatedly replacing the curve with its tangent line and jumping to the tangent's root, converging fast when it works and diverging when the derivative is small. Antiderivatives reverse differentiation: every antiderivative of a function differs from another by a constant, so the general antiderivative is a family of parallel curves, pinned to one by an initial condition.\n",{"path":3342,"title":3343,"module":3344,"summary":3345},"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral","Area and the Definite Integral","Integrals","The area under a curve is defined as a limit of sums of rectangle areas. The same limit — a Riemann sum taken as the mesh shrinks to zero — defines the definite integral, a single number measuring signed area, total distance, and every accumulated quantity built the same way. Its properties, comparison bounds, and reading as net area follow directly from the limit.\n",{"path":3347,"title":3348,"module":3344,"summary":3349},"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus","The Fundamental Theorem of Calculus","Differentiation and integration are inverse operations. Part 1 says the derivative of an area-accumulation function is the integrand; Part 2 says a definite integral equals the change in any antiderivative across the interval. Together they replace limits of Riemann sums with antiderivative lookups, define the indefinite integral, and give the Net Change Theorem for rates.\n",{"path":3351,"title":3352,"module":3344,"summary":3353},"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule","The Substitution Rule","Substitution runs the Chain Rule backward: spotting an inner function whose derivative also appears in the integrand lets the variable change to $u$ and collapse a composite integral to a simple one. The rule applies to indefinite and definite integrals, with two ways to handle the limits, and it yields the symmetry shortcuts that double even integrands and vanish odd ones.\n",{"path":3355,"title":3356,"module":3357,"summary":3358},"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes","Areas Between Curves and Volumes","Applications of Integration","A definite integral computes any quantity that a limit of Riemann sums approximates. Applied to geometry it gives the area between two curves and the volume of a solid: by cross-sections, by disks and washers when the region is revolved, and by cylindrical shells when inverting the boundary is awkward.\n",{"path":3360,"title":3361,"module":3357,"summary":3362},"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length","Work, Average Value, Arc Length, and Surface Area","The work done by a force that varies with position, the average value of a function and the Mean Value Theorem it satisfies, the length of a curve, and the area of a surface swept out by revolving that curve. Each is a limit of Riemann sums, hence a definite integral.\n",{"path":3364,"title":3365,"module":3357,"summary":3366},"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability","Applications to Physics, Economics, and Probability","Definite integrals in physics, economics, and statistics: the force a fluid exerts on a submerged plate, the balance point of a plane region, the money consumers save at a market price, and the probability that a continuous random variable lands in an interval, together with its mean.\n",{"path":3368,"title":3369,"module":3370,"summary":3371},"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials","Inverse Functions, Logarithms, and Exponentials","Exponential, Logarithmic, and Inverse Functions","A one-to-one function has an inverse that reverses it, with a graph mirrored across y = x and a derivative given by the reciprocal-slope rule. The exponential e^x is its own derivative and the natural logarithm has derivative 1\u002Fx; logarithmic differentiation turns products, quotients, and variable powers into sums.\n",{"path":3373,"title":3374,"module":3370,"summary":3375},"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions","Growth, Decay, Inverse Trigonometric, and Hyperbolic Functions","Any quantity whose rate of change is proportional to its size grows or decays exponentially, the single equation y' = ky behind populations, radioactive decay, cooling, and continuously compounded interest. The inverse trigonometric functions have algebraic derivatives, and the hyperbolic functions, built from e^x and e^{-x}, describe the hanging cable.\n",{"path":3377,"title":3378,"module":3370,"summary":3379},"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule","Indeterminate Forms and l'Hospital's Rule","When a limit produces 0\u002F0 or infinity over infinity, the value is undetermined by the forms alone. l'Hospital's Rule resolves both by replacing the ratio of functions with the ratio of their derivatives. Products, differences, and powers reduce to a quotient the rule can handle, and repeated use ranks the growth of logarithms, powers, and exponentials.\n",{"path":3381,"title":3382,"module":3383,"summary":3384},"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts","Integration by Parts","Techniques of Integration","The product rule for derivatives reverses into integration by parts, trading the integral of $u\\,\\d v$ for the integral of $v\\,\\d u$ whenever the second is easier. The LIATE ordering fixes which factor to differentiate. Standard cases: a polynomial against a transcendental factor, repeated parts, cyclic integrals that solve for themselves, and reduction formulas that peel an exponent down by recursion.\n",{"path":3386,"title":3387,"module":3383,"summary":3388},"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution","Trigonometric Integrals and Substitution","Two related techniques. Trigonometric integrals evaluate powers and products of sine, cosine, tangent, and secant by splitting off one factor and converting the rest with a Pythagorean identity, or by dropping even powers with half-angle formulas. Trigonometric substitution runs the idea in reverse: replace x by a sine, tangent, or secant to clear a radical, integrate, then read the answer back off a reference triangle.\n",{"path":3390,"title":3391,"module":3383,"summary":3392},"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy","Partial Fractions and Integration Strategy","Any rational function integrates in closed form: factor the denominator, split the fraction into simple pieces by partial fractions, and integrate each piece as a logarithm or an arctangent. Four denominator cases exhaust the possibilities. A four-step strategy then sorts an arbitrary integrand by its shape to the technique that fits it, and a short catalog records elementary functions whose antiderivatives are not elementary.\n",{"path":3394,"title":3395,"module":3383,"summary":3396},"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals","Approximate and Improper Integrals","Two definite integrals the Fundamental Theorem cannot reach. With no antiderivative available, the Midpoint, Trapezoidal, and Simpson rules approximate the integral from sample values, each carrying a provable error bound. With an infinite interval or an integrand that blows up, the improper integral is defined as a limit that either converges or diverges; the Comparison Test settles which without evaluating it.\n",{"path":3398,"title":3399,"module":3400,"summary":3401},"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus","Parametric Curves and Their Calculus","Parametric Equations and Polar Coordinates","A parametric curve gives x and y separately as functions of a third variable, recording not only a path but the direction and timing with which it is traced. Eliminating the parameter recovers a Cartesian equation; the slope, area, arc-length, and surface-area formulas run directly on the parameter, with the cycloid and astroid as worked examples.\n",{"path":3403,"title":3404,"module":3400,"summary":3405},"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates","Polar Coordinates","Polar coordinates locate a point by a distance from the pole and an angle from the polar axis, giving circles, spirals, and flower-shaped curves short equations. Conversion between the two systems is right-triangle trigonometry, and treating a polar curve as a parametric curve in the angle yields the tangent, area, and arc-length formulas.\n",{"path":3407,"title":3408,"module":3400,"summary":3409},"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections","Conic Sections","Parabolas, ellipses, and hyperbolas are the plane curves cut from a double cone. Each has a focus-based geometric definition and a standard Cartesian equation. A single number, the eccentricity, ties the three together, and placing a focus at the pole gives all of them one polar equation that describes planetary orbits.\n",{"path":3411,"title":3412,"module":3413,"summary":3414},"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences","Sequences","Infinite Sequences and Series","A sequence is a function on the positive integers, and its limit is defined almost exactly like a limit at infinity. The Limit Laws and Squeeze Theorem carry over from functions, monotonic and bounded sequences give a convergence criterion, and the Monotonic Sequence Theorem guarantees a limit exists without naming it.\n",{"path":3416,"title":3417,"module":3413,"summary":3418},"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test","Series and the Integral Test","Adding infinitely many terms is made precise as the limit of partial sums. The two series with closed-form partial sums are geometric and telescoping; the harmonic series diverges even as its terms shrink to zero. The Integral Test compares a positive series to an improper integral, settling the p-series and supplying a remainder bound for estimating sums.\n",{"path":3420,"title":3421,"module":3413,"summary":3422},"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests","The Convergence Tests","The comparison, alternating-series, ratio, and root tests decide convergence without a closed-form partial sum. Absolute convergence is stronger than conditional convergence and is preserved under rearrangement; an alternating series errs by less than its first omitted term. A test is chosen from the shape of the general term.\n",{"path":3424,"title":3425,"module":3413,"summary":3426},"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series","Power Series","A power series is a polynomial of infinite degree whose convergence set is an interval centered at $a$, with a radius the Ratio Test finds and endpoints that must be tested by hand. Inside that interval the series represents a function that can be differentiated and integrated term by term, generating new representations from the geometric series.\n",{"path":3428,"title":3429,"module":3413,"summary":3430},"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series","Taylor and Maclaurin Series","If a function equals a power series, its coefficients are forced: the nth is the nth derivative at the center over n factorial. We derive that formula, use Taylor's Inequality to prove the standard series for the exponential, sine, and cosine, record the binomial series and a reference table, and bound the error when a Taylor polynomial replaces a function.\n",{"path":3432,"title":3433,"module":3434,"summary":3435},"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product","Three-Dimensional Coordinates, Vectors, and the Dot Product","Vectors and the Geometry of Space","Space needs three coordinates, so we set up the rectangular system, the distance formula, and the equation of a sphere. Vectors then package magnitude and direction into a single algebraic object with its own arithmetic. The dot product turns two vectors into a number that measures the angle between them, gives a clean test for orthogonality, and produces the projection of one vector onto another.\n",{"path":3437,"title":3438,"module":3434,"summary":3439},"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes","The Cross Product, Lines, and Planes","The cross product multiplies two vectors into a third perpendicular to both, with length equal to the area of the parallelogram they span. That one construction supplies the direction of a line, the normal of a plane, and, through the scalar triple product, the volume of a parallelepiped. Lines carry a point and a direction vector; planes carry a point and a normal, which fixes the angle between planes and the distance from a point to a plane.\n",{"path":3441,"title":3442,"module":3434,"summary":3443},"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces","Cylinders and Quadric Surfaces","A surface whose equation omits one variable is a cylinder: the graph of a plane curve swept along the missing axis. A second-degree equation in three variables is a quadric, and translation and rotation reduce every one to a short standard list. Traces — the curves cut by planes parallel to the coordinate planes — sort the six quadrics into ellipsoid, the two paraboloids, the cone, and the two hyperboloids.\n",{"path":3445,"title":3446,"module":3434,"summary":3447},"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves","Vector Functions and Space Curves","A vector function assigns a vector to each value of a parameter, and as the parameter runs its tip traces a space curve. Taking limits, derivatives, and integrals component by component carries all of single-variable calculus into three dimensions. The derivative of a vector function is the tangent vector to its curve, and normalizing it gives the unit tangent that points the way along the path.\n",{"path":3449,"title":3450,"module":3434,"summary":3451},"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion","Arc Length, Curvature, and Motion in Space","Integrating the speed of a vector function gives the length of its curve and a natural parameter, arc length, that depends only on the curve's shape. Curvature measures how fast the unit tangent turns, and together with the normal and binormal it builds the moving TNB frame. Reading the same vector function as a trajectory, its first two derivatives are velocity and acceleration, and acceleration splits cleanly into tangential and normal parts.\n",{"path":3453,"title":3454,"module":3455,"summary":3456},"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables","Functions of Several Variables, Limits, and Continuity","Partial Derivatives","A function of several variables assigns one number to each point of a region in the plane or in space. Domain, graph, level curve, and level surface describe it; limits and continuity extend to two variables, where a limit must agree along every path of approach, not just from the left and the right.\n",{"path":3458,"title":3455,"module":3455,"summary":3459},"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives","A partial derivative holds every variable but one fixed and differentiates in the ordinary sense. Geometrically it is the slope of a trace curve cut from the surface by a coordinate plane. The freeze-and-differentiate rule computes the two first partials; the four second partials follow, and the two mixed ones agree under Clairaut's Theorem when they are continuous.\n",{"path":3461,"title":3462,"module":3455,"summary":3463},"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule","Tangent Planes, Linear Approximation, and the Chain Rule","Near a point, a smooth surface looks like its tangent plane, and the plane's equation is built from the two partial derivatives. That linearization defines the total differential and the meaning of differentiability in two variables. The chain rule then propagates derivatives through composed functions, tracked by a tree diagram, and yields clean formulas for implicit differentiation.\n",{"path":3465,"title":3466,"module":3455,"summary":3467},"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient","Directional Derivatives and the Gradient","The partial derivatives measure slope along the two axes; the directional derivative measures slope along any chosen direction, and equals the gradient dotted with a unit vector. The gradient points in the direction of steepest increase, its length is the greatest rate, and it stands perpendicular to level curves and surfaces, which fixes the tangent plane to a level surface.\n",{"path":3469,"title":3470,"module":3455,"summary":3471},"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers","Optimization and Lagrange Multipliers","Extrema of a two-variable function sit at critical points where the gradient vanishes; the Second Derivatives Test sorts them into peaks, valleys, and saddles by the sign of a discriminant. Absolute extrema on a closed region also need the boundary. When the domain is itself a constraint curve, Lagrange multipliers set the two gradients parallel and solve the constrained problem.\n",{"path":3473,"title":3474,"module":3475,"summary":3476},"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals","Double Integrals","Multiple Integrals and Vector Calculus","The double integral extends the definite integral to functions of two variables: a limit of Riemann sums that measures signed volume under a surface. Fubini's Theorem turns it into two ordinary integrations done one after the other, general regions of type I and type II fix the inner limits, polar coordinates absorb circular symmetry through the factor r, and the same machine computes mass, center of mass, and moments of a lamina.\n",{"path":3478,"title":3479,"module":3475,"summary":3480},"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems","Triple Integrals and Coordinate Systems","The triple integral integrates a function of three variables over a solid, as a limit of Riemann sums evaluated by three nested single integrations. Cylindrical coordinates add the factor r to handle axial symmetry, spherical coordinates add rho-squared sine-phi for radial symmetry, and the general change of variables shows both volume elements are Jacobian determinants of the coordinate map. Surface area for a graph completes the measurement toolkit.\n",{"path":3482,"title":3483,"module":3475,"summary":3484},"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals","Vector Fields and Line Integrals","A vector field assigns a vector to every point of space; the line integral of a field along a curve accumulates its tangential component, measuring work. Conservative fields are gradients of a potential, and for them the Fundamental Theorem for Line Integrals makes the integral depend only on the endpoints. Path independence, closed-loop integrals of zero, and the component test for a potential are three faces of the same property.\n",{"path":3486,"title":3487,"module":3475,"summary":3488},"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence","Green's Theorem, Curl, and Divergence","Green's Theorem equates the line integral of a field around a positively oriented closed curve with a double integral over the enclosed region, turning a boundary computation into an area computation and vice versa. Curl measures local circulation and divergence measures local outflow; the two vector forms of Green's Theorem express the boundary integral as the integrated curl or divergence, the planar case of Stokes' and the Divergence Theorem.\n",{"path":3490,"title":3491,"module":3475,"summary":3492},"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals","Parametric Surfaces and Surface Integrals","A parametric surface is the image of a two-variable vector function; its area element is the magnitude of the cross product of the two tangent vectors. The surface integral of a scalar function sums it over that area, and the flux integral of a vector field sums the field's normal component, measuring flow through the surface. Orientation by a choice of unit normal makes flux well-defined, the integral Stokes' and the Divergence Theorem operate on.\n",{"path":3494,"title":3495,"module":3475,"summary":3496},"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem","Stokes' Theorem and the Divergence Theorem","Stokes' Theorem lifts Green's Theorem into space: the line integral of a field around the boundary of a surface equals the flux of its curl through the surface. The Divergence Theorem relates the outward flux across a closed surface to the triple integral of divergence over the solid it encloses. Together with the Fundamental Theorem of Calculus and its line-integral and Green counterparts, they are one theorem: the integral of a derivative over a region equals the integral of the field over its oriented boundary.\n",{"path":3498,"title":3499,"module":306,"summary":306},"\u002Fcalculus","Calculus",{"path":3501,"title":3502,"module":5,"summary":3503},"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions","Measurement and Dimensions","Every physical quantity is a number attached to a unit, and that pairing is what lets you check an equation before computing anything, since terms that add together must carry the same dimensions. We build the SI base units and the notion of dimension, then use dimensional analysis to test a proposed relation and form scaling groups — a method that fixes a formula's shape but never its numerical constants. The lesson also sets how precisely a result may be stated, through significant figures, propagated uncertainty, and order-of-magnitude checks that catch errors a raw calculator answer hides.\n",{"path":3505,"title":3506,"module":5,"summary":3507},"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra","Vector Algebra","Force, velocity, and displacement all carry a direction, so mechanics needs an arithmetic that respects it; adding magnitudes alone gives the wrong answer the moment two arrows point different ways. We set up vectors and their components in a chosen basis, then build the two products that carry most of the physics — the dot product, which extracts the part of one vector along another and yields work and power, and the cross product, which measures oriented area and yields torque and angular momentum. Rotating the axes changes the components while leaving the vector itself untouched, and the same component method resolves a force along whatever directions a constraint picks out.\n",{"path":3509,"title":3510,"module":3511,"summary":3512},"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion","One-Dimensional Motion","Kinematics","Motion along a line already forces the two questions the whole of kinematics repeats: how fast is the object moving now, and where will it be next? Velocity and acceleration answer the first as derivatives of position; integrating them back — the signed area under a graph — answers the second. We derive the constant-acceleration equations, mark exactly where the \"constant\" assumption is load-bearing, and see why sign, not magnitude, is what carries direction.\n",{"path":3514,"title":3515,"module":3511,"summary":3516},"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs","Motion Graphs","Draw a motion as a graph and its two most useful facts turn geometric: the slope of the position curve is the velocity, and the area under the velocity curve is the displacement. We read motion in both directions — differentiating a graph for the next rate, integrating it back to recover position — and handle the curved, piecewise, and noisy graphs that real measurements produce. Along the way we see why a velocity estimated from two positions belongs to the midpoint of their interval, not its end.\n",{"path":3518,"title":3519,"module":3511,"summary":3520},"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion","Projectile Motion","Throw an object and it seems to trace one curved path, but the motion is really two independent one-dimensional motions running at once: constant velocity across the ground and free fall in the vertical. Splitting it that way turns every projectile question — how long it stays up, how far it lands, how high it climbs, whether it clears an obstacle — into a pair of equations you already know. We derive the parabolic trajectory, work both the forward and the inverse problems, and show why the familiar $45^\\circ$ range-maximizing angle holds only when launch and landing heights match.\n",{"path":3522,"title":3523,"module":3511,"summary":3524},"\u002Fmechanics\u002Fkinematics\u002Frelative-motion","Relative Motion","A velocity is only ever measured relative to some observer, so a boat's speed through the water, over the ground, and as seen from another boat are three different vectors. Choosing the right frame — and subtracting one motion from another — collapses river crossings, crosswind headings, pursuit, and closest-approach problems into a single vector equation. We build the relative-velocity and relative-position relations for uniformly moving frames, show why acceleration is the one quantity all such observers agree on, and note where rotating frames break the simple subtraction.\n",{"path":3526,"title":3527,"module":3511,"summary":3528},"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion","Circular Motion","An object going around a circle at a steady speed is still accelerating, because its velocity is forever changing direction — the fact that governs everything from a car on a curve to a satellite in orbit. We tie the angular description (angle, angular velocity, angular acceleration) to the linear one through $v=r\\omega$, split the acceleration into an inward part that turns the velocity and a tangential part that changes its speed, and extend the inward $v^2\u002Fr$ result to any curved path through its local radius of curvature. Constant angular acceleration then mirrors straight-line motion equation for equation.\n",{"path":3530,"title":3531,"module":3532,"summary":3533},"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws","Newton's Laws","Dynamics","What makes a body change its motion, and in which frames does the answer take its simplest form? Newton's three laws settle both: inertial frames are the ones where a force-free body coasts, force is whatever changes momentum, and every interaction pushes back on its source. We write the second law as $\\sum\\vec F=\\d\\vec p\u002F\\d t$, reduce it to $m\\vec a$ at constant mass, and separate what a scale actually reads — the support force — from the weight $m\\vec g$ it is so often mistaken for.\n",{"path":3535,"title":3536,"module":3532,"summary":3537},"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams","Free-Body Diagrams","Once several forces act on a body at once, the reliable way to predict its motion is to isolate that one body and draw every external push and pull on it — nothing more, nothing less. The free-body diagram is that discipline. We fix a system boundary, resolve $\\sum\\vec F=m\\vec a$ into components along axes chosen to fit the geometry, and solve for the unknowns a problem hands us — normal forces, tensions, friction, and the acceleration a constraint permits — seeing why internal forces drop out only when the boundary encloses both bodies that share them.\n",{"path":3539,"title":3540,"module":3532,"summary":3541},"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion","Friction and Curved Motion","Real surfaces grip before they slip, fluids push back harder the faster you move through them, and anything rounding a bend must be pulled toward the inside of the curve by something. This lesson supplies the force laws for those three cases. We bound static friction by $|f_s|\\leq\\mu_sN$ and switch to kinetic friction $\\mu_kN$ once sliding starts, model drag as a speed-dependent resistance that levels off at a terminal speed, and show that circular motion demands an inward net force $mv^2\u002Fr$ furnished by real interactions — friction, a banked normal force, tension — never by an invented outward one.\n",{"path":3543,"title":3544,"module":3532,"summary":3545},"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics","Numerical Dynamics","Most force laws — quadratic drag, coupled oscillators, anything nonlinear — admit no closed-form trajectory, so we advance the motion one small time step at a time and let arithmetic do what algebra cannot. This lesson turns $\\d\\vec y\u002F\\d t=f(t,\\vec y)$ into a marching rule. We derive the Euler, Euler--Cromer, midpoint, and Verlet updates, weigh their accuracy and stability, watch a drifting energy expose a bad scheme, and use step-halving and conserved quantities to separate the error of the method from the error of the model.\n",{"path":3547,"title":3548,"module":3532,"summary":3549},"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems","Center-of-Mass Systems","A firework bursts into a dozen fragments, yet one point keeps gliding along the original parabola as though nothing had happened. That point is the centre of mass, and following it collapses a many-body tangle into a single equation of motion. We define $\\vec R=\\frac1M\\sum_i m_i\\vec r_i$ and its continuous form, show that internal forces cancel so that only external ones move it, $M\\vec A_{\\rm cm}=\\sum\\vec F_{\\rm ext}$, and put the result to work on recoil, collisions viewed from the centre-of-mass frame, and rocket propulsion, where mass leaving the boundary carries momentum with it.\n",{"path":3551,"title":3552,"module":3553,"summary":3554},"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy","Work and Kinetic Energy","Energy","A constant push along a straight path is trivial to score, but real forces vary and bend along curved trajectories, and only the component along the motion transfers any energy. Work captures exactly that transfer as the line integral $W=\\int\\vec F\\cdot\\d\\vec r$, and the work-kinetic-energy theorem turns it into a statement about speed: the net work on a particle equals the change in its $\\tfrac12 mv^2$. We build work up from the dot product to the signed area under a force curve, derive the theorem from Newton's second law, and read power as its instantaneous rate $P=\\vec F\\cdot\\vec v$.\n",{"path":3556,"title":3557,"module":3553,"summary":3558},"\u002Fmechanics\u002Fenergy\u002Fpotential-energy","Potential Energy","When a force does the same work no matter which path a particle takes, that work can be stored as a function of position alone, and solving for the motion becomes bookkeeping instead of integration. We single out the forces that qualify — the conservative ones, for which $\\oint\\vec F\\cdot\\d\\vec r=0$ — define their potential energy through $\\vec F=-\\nabla U$, and use conservation of mechanical energy to read speeds, turning points, and equilibria straight off a potential curve. Friction breaks the shortcut, so we also track where mechanical energy leaks away as heat.\n",{"path":3560,"title":3561,"module":3553,"summary":3562},"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work","Multiparticle Work","A single particle has one velocity and one kinetic energy; a system of many can spin, deform, explode, and warm up while its centre of mass glides along as if nothing happened. Splitting the motion into a centre-of-mass part and an internal part separates the energy that momentum already fixes from the energy left free for relative motion, $K=\\tfrac12MV_{\\rm cm}^2+K'$. We derive the centre-of-mass work theorem, see why an explosion or a released spring can raise total kinetic energy with no external work at all, and use the reduced-mass and centre-of-mass frames to make collisions and internal transfers clean.\n",{"path":3564,"title":3565,"module":3553,"summary":3566},"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding","Mass-Energy and Binding","Relativity puts rest itself on the energy ledger: a mass $m$ carries energy $mc^2$ even when it sits still, so weighing a system's separated pieces and weighing the assembled whole give different answers, and the gap is binding energy. We convert freely between mass units and MeV, compute the energy that holds a nucleus together, and read the binding-energy-per-nucleon curve that explains why fusing light nuclei and splitting heavy ones both release energy. Reaction $Q$ values, thresholds, and recoil then follow from the same mass-difference accounting, once the frame and mass convention are fixed.\n",{"path":3568,"title":3569,"module":3553,"summary":3570},"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization","Photons and Quantization","Light delivers its energy in indivisible lumps: a photon of frequency $f$ carries exactly $hf$, and this one fact explains why a dim blue lamp ejects electrons that an intense red one cannot. We fix a photon's energy and momentum from its wavelength, follow the quanta through emission, absorption, and the photoelectric threshold $K_{\\rm max}=hf-\\phi$, and watch energy and momentum conservation together produce the Compton wavelength shift when a photon scatters from an electron. The recurring discipline is unit and frame care, where a stray factor of $10^9$ or a forgotten rest energy quietly ruins an answer.\n",{"path":3572,"title":3573,"module":3574,"summary":3575},"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions","Momentum and Collisions","Momentum","When two objects collide, the forces between them are too brief and too tangled to integrate directly, yet the result is fixed by one conserved quantity. Linear momentum $\\vec p=m\\vec v$ turns Newton's second law into the impulse-momentum theorem $\\vec J=\\Delta\\vec p$, and for an isolated system into a conservation law that holds through any internal collision, however dissipative. We use it to separate elastic from inelastic collisions, follow the centre of mass, and read impulse as the signed area under a force-time curve — always tracking which external impulses the chosen system and interval let us drop.\n",{"path":3577,"title":3578,"module":3574,"summary":3579},"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions","Center-of-Mass Collisions","A two-body collision that looks asymmetric in the laboratory becomes almost trivial in the frame that rides along with the centre of mass, where the total momentum is zero and the two momenta stay equal and opposite. We build that frame, reduce the pair to a single relative coordinate carrying the reduced mass $\\mu$, and show that an elastic collision there only rotates one momentum vector while its length holds fixed. Transforming back to the laboratory then handles elastic and inelastic collisions, scattering angles, and reaction thresholds with the same construction — and shows why relative speed, not laboratory kinetic energy, measures what a collision can convert.\n",{"path":3581,"title":3582,"module":3574,"summary":3583},"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion","Rocket Propulsion","A rocket speeds up by throwing mass backward, so its own mass drops as it flies and $\\vec F=m\\vec a$ no longer applies to a fixed body. Tracking the momentum the exhaust carries across the vehicle boundary gives thrust $T=Ru_e$ and, for a force-free burn, the rocket equation $\\Delta v=u_e\\ln(m_i\u002Fm_f)$ — a logarithm that makes large velocity changes expensive in propellant and forces staging. We then add the forces a real ascent cannot ignore, gravity, drag, and steering, and show how thrust and mass-flow records are cross-checked to infer the exhaust speed.\n",{"path":3585,"title":3586,"module":3587,"summary":3588},"\u002Fmechanics\u002Frotation\u002Frotational-inertia","Rotational Inertia","Rotation","Push a wheel and a merry-go-round with the same force and they speed up at wildly different rates: the same mass resists rotation differently depending on where it sits relative to the axis. That single fact is the moment of inertia, $I=\\int r_\\perp^2\\,\\d m$, and this lesson builds it from the ground up. We tie angular motion to linear through $s=r\\theta$, $v=r\\omega$, and $a_t=r\\alpha$, derive $I$ for rods, disks, and spheres, and use the parallel- and perpendicular-axis theorems to move between axes — always naming the axis, because the same body has as many moments of inertia as it has lines to spin about.\n",{"path":3590,"title":3591,"module":3587,"summary":3592},"\u002Fmechanics\u002Frotation\u002Frotational-dynamics","Rotational Dynamics","A force applied to a wheel does nothing unless it acts off the axis: what turns a rigid body is torque, force times lever arm. This lesson makes that precise and turns it into the rotational Newton's second law, $\\sum\\tau=I\\alpha$ about a fixed axis, the exact analogue of $\\sum F=ma$. From there we get rotational work $W=\\int\\tau\\,\\d\\theta$ and power $P=\\tau\\omega$, size a motor to a load, and solve pulleys and Atwood machines where the pulley's own inertia can no longer be ignored — always insisting that every torque be measured about the same axis.\n",{"path":3594,"title":3595,"module":3587,"summary":3596},"\u002Fmechanics\u002Frotation\u002Frolling-motion","Rolling Motion","A rolling wheel is doing two things at once — translating and spinning — but the no-slip condition $v_{cm}=R\\omega$ locks them together, and that single constraint is what makes rolling tractable. We use it to split the kinetic energy into $\\tfrac12Mv_{cm}^2+\\tfrac12I\\omega^2$, find how fast a cylinder reaches the bottom of an incline, and show why the contact point is instantaneously at rest. The static friction that enforces rolling does no work; we track its direction from the tendency to slip, and mark exactly where the model breaks once the required friction exceeds $\\mu_sN$.\n",{"path":3598,"title":3599,"module":3587,"summary":3600},"\u002Fmechanics\u002Frotation\u002Fangular-momentum","Angular Momentum","A skater pulls in her arms and spins faster, with no torque acting: that is angular momentum conservation, and it lets us answer questions that would be hopeless force by force. We build $\\vec L=\\vec r\\times\\vec p$, show it obeys $\\vec\\tau_{ext}=\\d\\vec L\u002F\\d t$, and use its conservation under zero external torque to link before and after in collisions, reconfigurations, and coupled rotors without ever resolving the internal forces. The catch is bookkeeping: the origin, the system boundary, and the frame must be fixed first, and a change in total $\\vec L$ always points to an external impulse someone forgot.\n",{"path":3602,"title":3603,"module":3587,"summary":3604},"\u002Fmechanics\u002Frotation\u002Frolling-resistance","Rolling Resistance","Ideal rolling should coast forever, yet every real wheel slows down. The reason is that a deformable tire and road do not press through a single point: the contact patch spreads, the normal-force resultant shifts ahead of the axle, and that offset is a resisting moment even with no gross sliding. We package it as an equivalent force $F_{rr}=C_{rr}N$, tie the coefficient to load, surface, speed, and temperature, and use coast-down, towing, and traction tests to separate this contact loss from aerodynamic drag, bearing friction, and the adhesion limit where rolling gives way to skidding.\n",{"path":3606,"title":3607,"module":3587,"summary":3608},"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession","Gyroscopic Precession","A spinning top leans over but does not fall — it swings its axis in a slow horizontal circle instead. The paradox dissolves once torque is read as the rate of change of a vector: gravity's torque is perpendicular to the spin angular momentum, so it turns $\\vec L$ rather than toppling it. We derive the steady precession rate $\\Omega\\simeq Mgr\u002F(I_s\\omega_s)$ in the fast-top limit, state the assumptions it leans on — dominant spin, slow tilt, negligible bearing torque — and read nutation, support motion, and a decaying spin as the ways real gyroscopes depart from it.\n",{"path":3610,"title":3611,"module":3612,"summary":3613},"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits","Keplerian Orbits","Gravitation and Matter","Why do the planets trace ellipses rather than any other curve? Newton's inverse-square law collapses the two-body problem onto a single conic section, and the answer falls out of two conserved quantities: a central force can exert no torque, so angular momentum is fixed, and gravity is conservative, so energy is fixed. We read an orbit's size and shape straight off those invariants, recover all three of Kepler's laws, and derive escape speed, the vis-viva relation, and the timing of a pass. We also mark where the ideal ellipse breaks down — drag, oblateness, and a third body slowly move a real orbit.\n",{"path":3615,"title":3616,"module":3612,"summary":3617},"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields","Gravitational Fields","Instead of tracking the force between every pair of masses, we attach a field to the source and ask a test mass to read it off locally. That move pays off because gravity is conservative: the field is the gradient of a single scalar potential, and potentials from many sources simply add. We build the field-potential picture, use spherical symmetry and the shell theorem to get the point-mass exterior field and the zero interior field of a shell, and read tides straight out of the field's gradient. Along the way we mark exactly when the constant-$g$ and point-mass shortcuts hold and when a shape correction is needed.\n",{"path":3619,"title":3620,"module":3612,"summary":3621},"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium","Static Equilibrium","What does it take for a loaded structure to stay put? A body at rest needs its forces to cancel and its turning effects to cancel — $\\sum\\vec F=0$ and $\\sum\\vec\\tau=0$ about any point — and almost all of statics is the craft of turning a physical setup into those equations. We build free-body diagrams, replace supports, cables, friction, couples, and distributed loads with their idealized reactions, and locate the centre of gravity that decides whether a body tips. We also count equations against unknowns to separate a determinate problem from one that needs the material's deformation to resolve, and read every negative or inconsistent reaction as a sign that a contact or a boundary was chosen wrong.\n",{"path":3623,"title":3624,"module":3612,"summary":3625},"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics","Fluid Statics","A fluid at rest cannot support a shear, so the only stress it carries is a pressure that must grow with depth to hold up the fluid above it. That single balance, $\\d p\u002F\\d z=-\\rho g$, runs the whole subject: it sets manometer readings, the force on a dam, and — integrated over a submerged boundary — Archimedes' buoyant force $F_B=\\rho g V_{\\rm disp}$. We derive these, use them to decide when a body floats and whether it floats upright, and mark where acceleration, rotation, compressibility, or capillarity forces a richer pressure model.\n",{"path":3627,"title":3628,"module":3612,"summary":3629},"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow","Fluid Flow","Two accounting rules carry most of steady flow: mass cannot pile up, so the same volume crosses every section each second, and mechanical energy is conserved along a streamline when the fluid is ideal. From those we get continuity, Bernoulli's relation between pressure, speed, and height, and the results that follow — Torricelli's efflux speed, the Venturi meter, the Pitot tube. We then let go of the ideal assumptions one at a time: viscosity adds wall shear and head loss, Reynolds number decides laminar versus turbulent, and Mach number marks where a gas stops behaving as incompressible.\n",{"path":3631,"title":3632,"module":3612,"summary":3633},"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion","Orbital Motion","A circular orbit is nothing but free fall with enough sideways speed to keep missing the ground, and setting gravity equal to the centripetal requirement fixes that speed and the period once and for all. From the same energy bookkeeping we read off escape speed, sort orbits into bound, parabolic, and hyperbolic by the sign of their specific energy, and see why a tangential burn is the efficient way to change an orbit. We build the Hohmann transfer and its launch window, work the numbers for a geostationary orbit and an escape burn, and mark where finite thrust, perturbations, and an uncertain initial state pull a real trajectory off the ideal.\n",{"path":3635,"title":3636,"module":3612,"summary":3637},"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity","Stress and Elasticity","Rigid bodies are a fiction; every real material stretches, shears, or squeezes under load, and the useful question is how much. We define stress as force per area and strain as fractional deformation, then find that for small deformations the two are simply proportional — Hooke's law — with Young's, shear, and bulk moduli as the constants for stretch, twist, and volume change. From these we compute extensions, torsional twist, and stored elastic energy, and read a tensile curve for the yield, ultimate, and fracture points where linear elasticity ends. We also mark the practical limits: stress concentrations, fatigue, and the multiaxial states a single uniaxial modulus cannot capture.\n",{"path":3639,"title":3640,"module":3641,"summary":3642},"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators","Damped Oscillators","Oscillations and Waves","Every real oscillator eventually stops: friction, drag, and internal loss drain its energy, so free motion is a decay rather than a permanent swing. Adding a velocity-proportional resistance to the spring-mass equation produces one dimensionless number, $b\u002F(2\\sqrt{mk})$, that decides whether the mass rings down through many cycles, returns once without overshoot, or crawls back slowly. We solve the three regimes, tie the observed decay to the power balance $b\\dot x^2$, and turn a measured ring-down into the decay rate and quality factor of the apparatus — reading damping off the data instead of assuming it.\n",{"path":3644,"title":3645,"module":3641,"summary":3646},"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves","Travelling Waves","A wave carries a shape, not the material: each element of a rope or air column oscillates in place while the disturbance travels through it. Writing that shape as $f(x\\mp vt)$ turns \"the pattern moves\" into a statement about the cosine's argument, and a local force balance on one string segment fixes the speed at $v=\\sqrt{T\u002F\\mu}$ — restoring stiffness over inertia, with amplitude nowhere in it. We build the sinusoidal wave and its phase, derive the wave equation from Newton's second law, and follow the energy a travelling wave transports, then check speed and power against those predictions.\n",{"path":3648,"title":3649,"module":3641,"summary":3650},"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition","Wave Superposition","When two waves cross the same point, what does a probe read? In a linear medium the answer is arithmetic: the displacements add, $y=y_1+y_2$, and the pulses pass through each other unchanged. That one rule produces interference — reinforcement where the signs agree, cancellation where they oppose — and it guards against a common mistake, since displacement can vanish at an instant while the energy sits in transverse motion instead. We work out the signed sum, the phase bookkeeping for equal-frequency components, and why a null in the record is not a null in the wave.\n",{"path":3652,"title":3653,"module":3641,"summary":3654},"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves","Standing Waves","Clamp a string at both ends and only certain frequencies survive: the ends must be nodes, and that single geometric demand quantizes the wave into a discrete set of modes $f_n=nv\u002F(2L)$. The travelling wave becomes a fixed pattern of nodes and antinodes — standing, not moving — because equal waves running in opposite directions superpose. We build the standing wave from its counter-propagating pieces, read the harmonic sequence off the boundary conditions (half-wavelengths for a fixed-fixed string, odd quarter-wavelengths for a closed pipe), and test the ideal model against node scans and resonance peaks.\n",{"path":3656,"title":3657,"module":3641,"summary":3658},"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves","Sound Waves","Sound is a pressure wave so small that a loud tone displaces air molecules by less than the width of an atom, yet a microphone reads it easily — because pressure, not displacement, is what the ear and the instrument sense. The acoustic impedance $Z=\\rho c$ ties pressure, density, and particle velocity together, fixes the intensity a wave carries, and sets the reference for the decibel, a logarithm that tames a $10^{12}$ range in power. We derive the sound speed from the gas's stiffness, convert between pressure and intensity levels, and treat the measurement itself — calibration, geometry, background, averaging — as part of the physics.\n",{"path":3660,"title":3661,"module":3641,"summary":3662},"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect","Doppler Effect","A passing siren drops in pitch not because the source changes but because motion repacks the wavefronts: an approaching source crowds its crests, a receding one stretches them, and a moving listener samples them at a different rate. For mechanical waves every velocity is measured against the medium, and one signed ratio $f_r=f_s(v-u_r)\u002F(v-u_s)$ captures both effects at once. We separate source motion, which sets crest spacing, from receiver motion, which sets arrival rate, invert the shift to recover radial velocity, and mark where the model breaks — supersonic sources, moving air, and reflected paths that carry two shifts, not one.\n",{"path":3664,"title":3665,"module":3641,"summary":3666},"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets","Wave Packets","No real signal is a single frequency: a disturbance that starts and stops is built from a band of wave numbers, and the width of that band is what makes it local. We ask how such a packet moves — carrier crests at the phase velocity $v_\\mathrm p=\\omega\u002Fk$, the envelope at the group velocity $v_\\mathrm g=\\d\\omega\u002F\\d k$ — and why the two differ once a medium is dispersive. Curvature $\\d^2\\omega\u002F\\d k^2$ spreads and chirps the packet as it travels, and the Fourier reciprocity that ties bandwidth to duration explains why a finite record, aliasing, or a coarse probe can imitate that spreading unless the sampling limits are respected.\n",{"path":3668,"title":3669,"module":3641,"summary":3670},"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling","Beats and Coupling","Add two tones a few hertz apart and the sum swells and fades at their difference frequency — a beat — though neither source is changing. We work out that envelope, then ask the mechanical version of the same question: join two oscillators and a single resonance splits into normal modes, with energy sloshing between the coordinates at their frequency difference. The lesson identifies when a slow amplitude envelope signals genuine coupling rather than two independent sources, drift, or deliberate modulation, reading it from envelope timing, spectral sidebands, and the mode shapes.\n",{"path":3672,"title":3673,"module":3641,"summary":3674},"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion","Simple Harmonic Motion","Any system pushed back toward equilibrium by a force proportional to its displacement obeys one equation, $\\ddot x+\\omega_0^2x=0$, and so moves sinusoidally at $\\omega_0=\\sqrt{k\u002Fm}$ whatever the amplitude. We derive that motion, follow its energy $E=mv^2\u002F2+kx^2\u002F2$ trading between kinetic and potential form at constant total, and read the elliptical phase-space orbit Hooke's law implies. Period, amplitude, velocity, and acceleration then supply redundant checks: an amplitude-dependent period or a curved force residual is the signature that the linear model has failed, and mass-loading and offset tests separate a calibration error from a real frequency shift.\n",{"path":3676,"title":3677,"module":3641,"summary":3678},"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion","Pendulum Motion","A pendulum keeps time only because, for small swings, gravity supplies a restoring torque proportional to the angle — and $T=2\\pi\\sqrt{L\u002Fg}$ then follows without the mass appearing at all. We derive that result, mark exactly which assumptions carry it (small angle, negligible pivot loss, a rigid support), then relax them: finite amplitude lengthens the period through an elliptic integral, and an extended body replaces $L$ with the ratio of its moment of inertia to its center-of-mass distance. How the period drifts with amplitude or pivot position is what diagnoses the geometric, damping, and distributed-mass corrections.\n",{"path":3680,"title":3681,"module":3641,"summary":3682},"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators","Driven Oscillators","Drive a damped oscillator at a frequency you control and it eventually forgets its own: $m\\ddot x+b\\dot x+kx=F_0\\cos\\omega t$ settles into a steady response whose amplitude and phase depend sharply on how close the drive sits to resonance. We solve for that response, show how damping alone fixes the resonance width, the peak power, and the settling time, and treat base excitation as the same problem with a different input. The steady-state formulas hold only for constant $m$, $b$, and $k$; level-dependent peaks or hysteresis between up- and down-sweeps are how nonlinearity or an extra mode announces itself.\n",{"path":3684,"title":3685,"module":3641,"summary":3686},"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries","Wave Boundaries","A pulse traveling along a string does something abrupt where the string's properties change: part reflects, part transmits, and which is which is set by the impedance mismatch alone. We impose continuity of displacement and transverse force at the join to get the reflection and transmission coefficients in terms of $Z=\\sqrt{T\\mu}$, fix their signs and the polarity flip, and balance the energy. The clean result assumes linear, nondispersive segments meeting at a localized join; pulse polarity, return timing, and energy ratios are the measurements that expose a real connector's mass, loss, or distributed transition.\n",{"path":3688,"title":3689,"module":3690,"summary":3691},"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases","Kinetic Theory of Ideal Gases","Thermodynamics","A gas has no springs and no gears, yet it pushes on its container with a definite pressure and stores energy in a lawful way. Kinetic theory explains both from the motion of the molecules alone: pressure is the accumulated recoil of countless elastic impacts, and temperature is the average translational kinetic energy each molecule carries. We derive $pV=\\tfrac13Nm\\overline{v^2}$ from momentum transfer, read off $\\overline{K}_{\\rm tr}=\\tfrac32kT$, and use the Maxwell–Boltzmann distribution to separate the most probable, mean, and rms speeds — each the right average for a different question — while marking where the dilute, classical assumptions stop holding.\n",{"path":3693,"title":3694,"module":3690,"summary":3695},"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics","First Law of Thermodynamics","Heat a gas and it may warm, expand, or both; compress it and the same energy can reappear as a temperature rise. The first law settles the bookkeeping: internal energy is a state property whose change equals the heat added plus the work done on the system, $\\Delta E_{\\rm int}=Q_{\\rm in}+W_{\\rm on}$. We fix a system boundary and one sign convention, compute boundary work as $\\int p\\,\\d V$ along a path, and use calorimetry to measure heat and heat capacities. The recurring point is that heat and work are path-dependent transfers while their sum is not, so an energy ledger closes only once every boundary crossing is named.\n",{"path":3697,"title":3698,"module":3690,"summary":3699},"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law","Entropy and the Second Law","The first law lets energy flow either way; it never says which way heat actually goes. The second law supplies the missing arrow. Entropy, defined through the reversible transfer $\\d S=\\delta Q_{\\rm rev}\u002FT$, can only increase in an isolated system, and that single inequality fixes the direction of heat flow and caps every engine, refrigerator, and heat pump at its Carnot value. We build entropy ledgers for reservoirs and working substances, separate the entropy carried by heat from the entropy generated by irreversibility, and read the sign of the total as a hard check on any proposed thermal machine.\n",{"path":3701,"title":3702,"module":3690,"summary":3703},"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes","Thermal Processes","Heat rarely sits still: it stretches solids, pushes real gases off their ideal isotherms, and leaks across walls by conduction, convection, and radiation. Each behavior becomes a number a designer can use. Thermal expansion sets the gaps in a bridge and the stress in a clamped rod; the van der Waals equation and a phase diagram fix when $pV=nRT$ or a latent-heat term applies; Fourier's law, Newton cooling, and Stefan–Boltzmann radiation give the rate of heat flow. We assemble these into thermal-resistance networks and transient time constants, then mark where contact resistance, phase change, or a hidden thermal bridge breaks the simple model.\n",{"path":3705,"title":3706,"module":3690,"summary":3707},"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes","Phase Changes","Add heat to ice and its temperature climbs — until it reaches $0\\ ^\\circ\\mathrm C$, where the thermometer stalls while the ice melts. That plateau is the whole subject: at a phase boundary the energy rearranges molecules, $Q=mL$, instead of raising temperature, which resumes only once one phase is gone. We stage a heating path into sensible-heat legs ($Q=mc\\Delta T$) and latent plateaus, use the Clausius–Clapeyron relation to track how a boiling point moves with pressure, and solve calorimetry by testing each coexistence endpoint — so a melt fraction that lands outside $[0,1]$ flags a wrong final-state guess rather than a real state.\n",{"path":3709,"title":3710,"module":3690,"summary":3711},"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines","Thermal Machines","An engine, a refrigerator, and a heat pump are one machine read three ways: each shuttles heat between a hot and a cold reservoir while trading work at the boundary, and only the flow you call useful separates them. A heat engine turns part of $Q_h$ into work, $W=Q_h-Q_c$; a refrigerator spends work to pull $Q_c$ from the cold side; a heat pump counts the warm-side delivery instead. We measure each with its own ratio — efficiency or coefficient of performance — bound them all by the Carnot limit that reservoir temperatures alone set, and track how finite temperature differences, throttling, and friction generate entropy and pull real machines below that bound.\n",{"path":3713,"title":3714,"module":306,"summary":306},"\u002Fmechanics","Mechanics & Dynamics",{"path":3716,"title":3717,"module":3718,"summary":3719},"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors","Charge and Conductors","Electric Fields","Rub two objects together and one pulls electrons from the other; nothing is created, only moved. We define what electric charge is — conserved, additive, and quantized in units of $e$ — and why a conductor's mobile carriers rearrange until its interior field vanishes and its surface sits at one potential. We follow charge through contact, induction, and grounding, treat the field-free cavity that turns a conductor into a shield, and mark where finite conductivity and leakage set the limits of the electrostatic picture.\n",{"path":3721,"title":3722,"module":3718,"summary":3723},"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law","Coulomb's Law","Two charges at rest push or pull along the line joining them, and the whole of electrostatics is assembled by adding up such pairs. We measure that force — its inverse-square falloff, its linear dependence on each charge, the sign that says attract or repel — and write it as a vector so direction survives superposition. We work the magnitude and component forms on real numbers, check them against limiting cases and dimensions, and fix the point-charge approximation to source sizes small against every separation.\n",{"path":3725,"title":3726,"module":3718,"summary":3727},"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force","Electric Field and Force","Rather than ask how one charge reaches across empty space to another, we credit the source with a field that fills the space and let a second charge respond to whatever field sits at its own location. Electric field is force per unit positive test charge, $\\vec E=kq\\hat r\u002Fr^2$ for a point source, and source fields add before any receiving charge is placed. We compute those fields and the force $\\vec F=q\\vec E$ they exert, then follow a charge along its parabolic path through a uniform field and into nonuniform fields where the dynamics turn position-dependent.\n",{"path":3729,"title":3730,"module":3718,"summary":3731},"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps","Electric Field Maps","A field is a vector at every point of space, and the quickest way to grasp one is to draw it. We build the two standard pictures — continuous field lines tangent to $\\vec E$, and scaled vector arrows — and read direction, magnitude, and the location of nulls straight off them. We fix what a line drawing can and cannot say: density encodes magnitude only under a stated seeding rule, and integral curves never cross at a regular point. From there we work the topology near sources, sinks, and conductor surfaces, and state the step-size and interpolation checks a numerical map must pass.\n",{"path":3733,"title":3734,"module":3718,"summary":3735},"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles","Electric Dipoles","Most neutral matter carries no net charge yet still responds to an electric field, because its positive and negative charge sit slightly apart. That separation is a dipole, moment $\\vec p=q\\vec d$ pointing from the negative to the positive charge, and it is the leading term in how any neutral distribution looks from far away. We derive the torque $\\vec p\\times\\vec E$ and energy $-\\vec p\\cdot\\vec E$ a uniform field imposes, the net force a field gradient adds, and the axial and equatorial $1\u002Fr^3$ fields the pair produces, then measure how far out the point-dipole approximation still holds.\n",{"path":3737,"title":3738,"module":3739,"summary":3740},"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields","Continuous Charge Fields","Continuous Charge Distributions","A charged rod, ring, or disk is not a point, yet its field is still nothing but Coulomb's law added up over the charge it carries. We replace the discrete sum by an integral, with $\\d q=\\lambda\\d\\ell$, $\\sigma\\d A$, or $\\rho\\d V$, so the real work becomes geometry: writing the vector from each source element to the field point, and letting symmetry cancel the components that must cancel before any integral is attempted. We carry the line, ring, and disk fields through in full, then check each result against its near field, its far field, and its dimensions.\n",{"path":3742,"title":3743,"module":3739,"summary":3744},"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors","Gauss's Law and Conductors","Adding up Coulomb's law over a whole distribution is laborious; Gauss's law trades that sum for a single statement, that the flux of $\\vec E$ out of any closed surface counts the charge inside, $\\oint\\vec E\\cdot\\d\\vec A=Q_{\\rm enc}\u002F\\varepsilon_0$. The law is always true, but it hands over the field only when the source is symmetric enough to pull $E$ outside the integral. We apply it to spheres, lines, and sheets, then turn it on conductors, where the zero interior field drives every excess charge to the surface and fixes the normal-field jump $\\sigma\u002F\\varepsilon_0$, the charge induced on a cavity wall, and electrostatic shielding.\n",{"path":3746,"title":3747,"module":3748,"summary":3749},"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential","Point-Charge Potential","Electric Potential","The electrostatic force is conservative, so the work it does between two points\ndepends only on the endpoints. That lets us trade the vector field for a single\nscalar attached to each point, the electric potential, the potential energy a unit\ncharge would have there. We build potential from the work integral, fix the usual\nreference at infinity, and add point sources as scalars, $V=k\\sum_i q_i\u002Fr_i$,\navoiding the vector bookkeeping the field demands. Signed charges, the reference\nchoice, equipotential motion, and far-field expansions each give an independent\ncheck on a result.\n",{"path":3751,"title":3752,"module":3748,"summary":3753},"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials","Potential Gradients and Equipotentials","Given the potential everywhere, how do we recover the field? The field is the\nnegative gradient, $\\vec E=-\\nabla V$: it points down the steepest local drop in\npotential, and its magnitude is set by how fast $V$ changes, not by the shape of a\ncontour. We read off components with directional derivatives, reconstruct fields\nfrom measured potential grids using centered differences, and use closed-loop\nintegrals and grid refinement to test whether a reconstructed field is physically\nconsistent.\n",{"path":3755,"title":3756,"module":3748,"summary":3757},"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure","Electrostatic Energy and Pressure","Assembling a charge configuration takes work, and that work is stored, but where\nis it kept and how much is there? We total it two ways: as a sum over the charges,\n$U=\\tfrac12\\sum_i q_iV_i$, and as an integral over the field itself,\n$u_E=\\tfrac12\\varepsilon_0E^2$, energy the field carries in every region it fills.\nDifferentiating the stored energy at fixed charge or at fixed voltage recovers the\nmechanical force on a conductor, and at a charged surface the same field scale\nappears as an outward electrostatic pressure. We work the parallel-plate case in\nfull and mark where curvature and fringing make the pressure nonuniform.\n",{"path":3759,"title":3760,"module":3748,"summary":3761},"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems","Laplace Boundary Problems","Often the charges are not given, only the conductors and the voltages held on\nthem, and the potential in the empty space between has to be found. There $V$ obeys\nLaplace's equation $\\nabla^2V=0$, and the boundary data alone determine a unique solution.\nWe solve it two ways: separation of variables into boundary-matched modes, whose\nhigher spatial frequencies die away with depth into the domain, and finite-difference\nrelaxation for boundaries no analytic mode fits. Residual norms, boundary error, and\nflux balance tell us when the computed potential and its field can be trusted.\n",{"path":3763,"title":3764,"module":3748,"summary":3765},"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials","Continuous Charge Potentials","When charge is spread over a line, a surface, or a volume, the sum over point\nsources becomes an integral, $V(\\vec r)=k\\int \\d q\u002F|\\vec r-\\vec r'|$. Because\npotential is a scalar, this integral sidesteps the component algebra the field\nwould force, until the field is actually wanted through $\\vec E=-\\nabla V$. We set\nup the right density element for each geometry, choose a workable reference, handle\nthe integrable singularities that arise when the observation point sits on the\ncharge, and check every result against symmetry, dimensions, and the far-field\nmultipole limit.\n",{"path":3767,"title":3768,"module":3769,"summary":3770},"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals","Capacitance Fundamentals","Capacitance","How much charge must you separate onto two conductors to hold a given voltage between\nthem? That ratio, $C=Q\u002F\\Delta V$, is fixed by the conductor geometry and the medium,\nnot by how much charge is presently stored. We compute it from the field for the\nparallel-plate, isolated-sphere, concentric-sphere, and coaxial geometries, trace how\nsurface charge and boundary conditions set each result, and see where fringing,\nguarding, and stray coupling separate the ideal formula from what a bridge measures.\n",{"path":3772,"title":3773,"module":3769,"summary":3774},"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks","Capacitor Networks","Wire several capacitors together and the source sees one equivalent capacitance — but\nwhich? The answer comes not from how the symbols are drawn but from which conductors\nshare a node: parallel branches hold a common voltage and add, $C_{\\rm eq}=\\sum_iC_i$,\nwhile series branches share a common charge and add reciprocally. We derive both rules\nfrom charge conservation on the floating internal node, then extend the node-charge\nmethod to unequal, precharged, and stray-coupled branches and carry a worked reduction\nthrough to the charge and voltage on every element.\n",{"path":3776,"title":3777,"module":3769,"summary":3778},"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force","Capacitor Energy and Force","Charging a capacitor takes work, because every increment of charge is pushed through\nthe voltage the earlier charge already established. We total that work three\nequivalent ways, $U=Q^2\u002F(2C)=Q\\Delta V\u002F2=C(\\Delta V)^2\u002F2$, locate it in the field as\na density $u=\\tfrac12\\epsilon_0E^2$, then let the plates move. Differentiating the\nstored energy at fixed charge, or the coenergy at fixed voltage, gives the mechanical\nforce; the two boundaries differ only by the work the source supplies. We work the\nparallel-plate attraction and its electrostatic pressure in full, and follow the same\ngradient into pull-in, tilt, comb drives, and traceable force calibration.\n",{"path":3780,"title":3781,"module":3769,"summary":3782},"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown","Dielectric Polarization and Breakdown","Slide a dielectric between the plates and the capacitance rises — but why, and how\nhard can you drive it before the insulator fails? Bound charge answers the first:\npolarization $\\vec P$ sets up surface and volume charge that partly cancels the\napplied field, so $\\vec D=\\varepsilon_0\\vec E+\\vec P$ separates what the circuit\ncontrols from what the material contributes. We follow the field across layered\ndielectrics and interfaces, tie permittivity and loss to their frequency dependence,\nand treat dielectric strength as a measured, geometry-dependent limit rather than one\nmaterial number.\n",{"path":3784,"title":3785,"module":3786,"summary":3787},"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance","Current and Resistance","Direct-Current Circuits","What does it mean, physically, for charge to flow, and what sets how hard a wire resists that flow? Current counts charge crossing a surface, $I=\\int\\vec J\\cdot\\d\\vec A$, and traces back to a slow drift of many carriers, $\\vec J=nq\\vec v_d$. We establish when the linear law $V=IR$ actually holds, how resistivity and geometry combine into bulk resistance, why real sources sag under load through their internal resistance, and how the three power forms $P=IV=I^2R=V^2\u002FR$ tie electrical work to heating and component ratings.\n",{"path":3789,"title":3790,"module":3786,"summary":3791},"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis","Kirchhoff Network Analysis","Once a circuit has more than one loop, no amount of series-parallel folding will reduce it — you need the two conservation laws written as equations. Kirchhoff's junction law is charge conservation at a node; his loop law is energy conservation around a closed path. We turn a labelled network into a linear system in node voltages or mesh currents, fix the sign conventions so a negative answer just means a reversed arrow, and use power balance as an independent check that the algebra describes the circuit that was actually built.\n",{"path":3793,"title":3794,"module":3786,"summary":3795},"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients","RC Transients","How does a circuit get from one steady state to the next when a capacitor refuses to change its voltage all at once? Because a jump would demand infinite current, an RC circuit slides between states exponentially, with a single time constant $\\tau=RC$ that sets the whole schedule: charging fills as $1-e^{-t\u002F\\tau}$, discharge empties as $e^{-t\u002F\\tau}$. We solve the first-order loop equation, read the response off three numbers — the switch-instant voltage, the final dc voltage, and the Thevenin resistance the capacitor sees — and mark where source and probe resistance shift $\\tau$ or where a second storage element hides a mode a one-$\\tau$ fit misses.\n",{"path":3797,"title":3798,"module":3799,"summary":3800},"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories","Magnetic Trajectories","Magnetic Field","A charged particle in a magnetic field never speeds up or slows down, yet its path curves relentlessly. We work out why: the magnetic force is always perpendicular to velocity, so it does no work and bends the transverse motion into a circle of radius $r=mv_\\perp\u002F(|q|B)$ while leaving the parallel motion untouched, producing a helix. We derive the cyclotron frequency, show why it is independent of speed until relativity intervenes, and turn the geometry around: a measured curvature reads back a particle's momentum, which is how tracking detectors weigh what they cannot see.\n",{"path":3802,"title":3803,"module":3799,"summary":3804},"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect","Hall Effect","Current tells you charge is moving, but not whether the movers are positive or negative, nor how many there are. A magnetic field settles both questions. Push current through a strip in a transverse field and the carriers pile up on one edge until a transverse electric field just balances the magnetic deflection; the sign of the resulting Hall voltage names the carrier's charge and its size counts the carriers per volume. We derive the balance $q\\vec E+q\\vec v_d\\times\\vec B=0$, read off $V_H=IB\u002F(nqt)$, and see why field-and-current reversal is what separates the real Hall signal from the offsets that mimic it.\n",{"path":3806,"title":3807,"module":3799,"summary":3808},"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors","Magnetic Force on Conductors","A magnet pushes on a current-carrying wire even though the wire is electrically neutral. The reason is that each moving carrier feels the Lorentz force, and those microscopic pushes add up to a force the wire's supports must hold. We sum them into $\\d\\vec F=I\\,\\d\\vec\\ell\\times\\vec B$, collapse it to $\\vec F=I\\vec L\\times\\vec B$ for a straight segment in a uniform field, and see exactly when that shortcut fails and the full path integral is needed. The same law runs backward as a measurement: a force-versus-current slope weighs a magnetic field against a known length.\n",{"path":3810,"title":3811,"module":3799,"summary":3812},"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles","Magnetic Dipoles","A compass needle turns to point north; a current loop in a field does the same thing, and for the same reason. Both are magnetic dipoles, and a uniform field cannot push a dipole anywhere, only twist it. We package a loop's response into one vector, the magnetic moment $\\vec\\mu=IA\\hat n$, from which torque $\\vec\\tau=\\vec\\mu\\times\\vec B$ and orientation energy $U=-\\vec\\mu\\cdot\\vec B$ both follow. Stable alignment sits at the energy minimum, a field gradient is what it takes to produce a net force $\\vec F=\\nabla(\\vec\\mu\\cdot\\vec B)$, and the same moment reappears whenever anything from an electron to a planet acts magnetic.\n",{"path":3814,"title":3815,"module":3799,"summary":3816},"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry","Mass Spectrometry","To weigh a single atom you cannot use a scale, so you use a magnetic field instead. A charged ion of unknown mass bends in a field by an amount that depends on its momentum and charge, so if every ion enters with the same velocity, its landing position reads off its mass-to-charge ratio directly. We build the instrument in two stages: crossed electric and magnetic fields that pass only ions with $v=E\u002FB$, and a magnetic sector that bends the survivors along $r=mv\u002F(|q|B)$. Then we ask what blurs a spectral line and how reference ions turn a position into a calibrated mass.\n",{"path":3818,"title":3819,"module":3820,"summary":3821},"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields","Moving-Charge Fields","Magnetic Sources","Every magnetic field comes from charge in motion, and the simplest source is a single point charge drifting past. We work out the field it produces — normal to both the velocity and the line of sight, falling off as the inverse square — and read off why it vanishes straight ahead of the charge and peaks broadside. Summing many such charges is the bridge to steady currents, valid while speeds stay far below $c$ and the motion changes little during the time its field takes to propagate outward.\n",{"path":3823,"title":3824,"module":3820,"summary":3825},"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law","Biot–Savart Law","A steady current is a continuous stream of current elements, and the Biot–Savart law hands each one a magnetic contribution — a right-hand cross product that falls off as the inverse square of distance. Summing the contributions along a conductor is a vector line integral, which we carry out for the straight wire to get the endpoint-angle formula. The infinite-wire field $B=\\mu_0 I\u002F2\\pi s$ falls out as the limit where both ends recede, and we mark how fast a finite wire departs from it and when a thin-filament model is safe.\n",{"path":3827,"title":3828,"module":3820,"summary":3829},"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops","Circular Current Loops","A ring of current is the simplest source with a well-defined magnetic axis, and it is the building block of every coil and electromagnet. Symmetry kills the transverse Biot–Savart contributions along that axis and leaves a single clean integral; we evaluate it to get $B_z=\\mu_0 I R^2\u002F[2(R^2+z^2)^{3\u002F2}]$, read off the centre field $\\mu_0 I\u002F2R$, and watch it fall into the $1\u002Fz^3$ tail of a magnetic dipole far away. Stacking turns just adds their axial contributions, which is what makes a solenoid out of a pile of loops.\n",{"path":3831,"title":3832,"module":3820,"summary":3833},"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law","Ampère’s Law","When a current arrangement is symmetric enough, the Biot–Savart integral is overkill: Ampère's law, $\\oint_C\\vec B\\cdot\\d\\vec\\ell=\\mu_0 I_{\\rm enc}$, gets the field from a single line of reasoning about how much current a loop encloses. We see why the law holds for any steady current, then use cylindrical, planar, and toroidal symmetry to turn the circulation into simple algebra — the field inside and outside a wire, an infinite sheet, a solenoid, and a toroid. We also mark the catch: without symmetry the law still holds but no longer hands you the field pointwise.\n",{"path":3835,"title":3836,"module":3820,"summary":3837},"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism","Gauss’s Law for Magnetism","Electric field lines start and end on charges; magnetic field lines do neither, because no one has ever found an isolated magnetic pole. That single experimental fact is Gauss's law for magnetism: the flux of $\\vec B$ through any closed surface is zero, $\\oint\\vec B\\cdot\\d\\vec A=0$, or in differential form $\\nabla\\cdot\\vec B=0$. We work through what it says — every field line that enters a closed surface must leave it, so field lines close on themselves — and, just as important, what it does not say, since flux through an open surface is generally nonzero.\n",{"path":3839,"title":3840,"module":3820,"summary":3841},"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials","Magnetic Materials","Put matter in a magnetic field and its atoms respond, each acting as a tiny current loop; the aligned moments per unit volume are the magnetization $\\vec M$, whose bound currents add to the field. Separating what we control (the free current) from what the material supplies leads to $\\vec H$ and the relation $\\vec B=\\mu_0(\\vec H+\\vec M)$. We sort materials into diamagnets, paramagnets, and ferromagnets by how $\\vec M$ answers, follow a ferromagnet around its hysteresis loop, and see why the loop's area is the energy dissipated per cycle and why a sample's shape changes the field it actually feels.\n",{"path":3843,"title":3844,"module":3845,"summary":3846},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux","Magnetic Flux","Electromagnetic Induction","A magnetic field threading a loop collapses to one signed number, the flux, and every induced voltage in this module turns out to be a rate of change of that number — so defining the flux and its sign comes first. We define it as the surface integral of $\\vec B$ over an oriented surface, reduce it to $BA\\cos\\theta$ for a uniform field on a flat loop, and carry the flux linkage $N\\Phi_B$ of a coil. The chosen normal fixes the sign; reversing it flips the sign without touching the field. Nonuniform fields and curved surfaces force the integral, so we also build the numerical estimate and the checks that separate a reliable value from a nominal field-times-area product.\n",{"path":3848,"title":3849,"module":3845,"summary":3850},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law","Faraday's Law","Move a magnet toward a coil, or ramp the current in a nearby circuit, and a voltage appears with no battery in sight. Faraday's law names the cause: the emf around a loop equals minus the rate of change of the magnetic flux through it, so any change of field, area, orientation, or position that alters the flux drives an emf. We separate the emf, which lives around the boundary whether or not current can flow, from the current that follows only when the path is closed; fix the single sign convention that ties flux to loop orientation; and read the emf off rotating coils and off flux sampled at discrete times.\n",{"path":3852,"title":3853,"module":3845,"summary":3854},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law","Lenz's Law","The minus sign in Faraday's law is not decoration: it decides which way the induced current flows, and it always chooses the direction that fights the change that produced it. Lenz's law reads that sign off energy conservation — a current that aided the change would be free energy — and turns it into a repeatable procedure. We fix a surface normal and a positive loop direction so the sign is calculable, then work through approaching magnets, expanding loops, coupled coils, and rotating generators, using mechanical work and Joule heating as an independent check on every direction we draw.\n",{"path":3856,"title":3857,"module":3845,"summary":3858},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf","Motional EMF","Push a wire through a magnetic field and its free charges feel a sideways magnetic force that piles them up at the ends — a battery made of motion. Motional emf is that effect: the work per unit charge a moving conductor supplies is the line integral of $\\vec v\\times\\vec B$ along it, which for a rod moving perpendicular to both its length and the field collapses to $B\\ell v$. We chase where the energy comes from — the hand or motor fighting the magnetic drag, never the magnetic force itself — solve the sliding-rail circuit from both flux and carrier forces, and carry the idea into rotating rods, homopolar disks, generators, and the back emf of a motor.\n",{"path":3860,"title":3861,"module":3845,"summary":3862},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents","Eddy Currents","A wire carries current along one path; a solid block of metal offers a continuum of them, and any changing flux threading that block sets charge circulating in closed loops it chooses for itself. We ask what those eddy currents do — where they heat, where they drag, and how Lenz's law fixes their direction — and why the same circulation is a feature in an induction furnace and a loss to be suppressed in a transformer core. From a representative-loop estimate we get the scaling (heating grows with the square of frequency and flux rate) and the two design levers, lamination and resistivity, that break the paths a solid conductor would otherwise hand the current.\n",{"path":3864,"title":3865,"module":3845,"summary":3866},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance","Self-Inductance","A coil resists changes to its own current. Drive current through it and the flux it produces threads its own turns; change that current and Faraday's law turns the coil against the source with a back emf $\\mathcal E_L=-L\\,\\d I\u002F\\d t$. We define self-inductance as the flux linkage per ampere fixed by winding and core geometry, derive the long-solenoid value $L=\\mu_0 N^2A\u002F\\ell$, and follow the consequence that dominates circuits: because a finite voltage can only sustain a finite $\\d I\u002F\\d t$, an inductor's current cannot jump — which is why opening a switch on a live coil throws a spark.\n",{"path":3868,"title":3869,"module":3845,"summary":3870},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy","Magnetic Energy","Building current in a coil means working against its back emf, and that work does not vanish — it sits in the magnetic field as recoverable energy $U_B=\\tfrac12LI^2$, spread through space at density $u_B=B^2\u002F(2\\mu_0)$. We derive both forms, show they agree for a solenoid, and read a force out of the same energy: an armature is pulled toward higher inductance, and $B^2\u002F(2\\mu_0)$ doubles as a magnetic pressure. The lesson closes on the accounting a real switching event demands, where recoverable energy, copper heating, core loss, and clamp dissipation must balance a single ledger.\n",{"path":3872,"title":3873,"module":3845,"summary":3874},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits","RL Circuits","Put a resistor and an inductor in series and the current cannot switch on or off at will: it climbs to $V_0\u002FR$ and falls away exponentially on a single time scale $\\tau=L\u002FR$ set by how much flux the coil hoards against how fast the resistor bleeds it. We solve the turn-on and turn-off, then confront the practical sting — because the coil's current refuses to stop instantly, breaking its path throws up a large voltage, which is why real inductive circuits carry freewheel diodes and clamps that trade voltage stress against how quickly the current dies.\n",{"path":3876,"title":3877,"module":3878,"summary":3879},"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals","AC Fundamentals","Alternating Current","A wall socket delivers a voltage that averages to zero over each cycle, yet it still heats a filament and runs a motor. The resolution is that dissipation follows the mean of the square, not the mean, so we define the root-mean-square value that makes an alternating source the equal of a DC one for resistive heating. We show a sinusoid's RMS is its peak divided by $\\sqrt2$, work out the average power an ideal resistor draws when its current stays in phase with the applied voltage, and separate the peak, average, and RMS descriptions that a single number cannot combine.\n",{"path":3881,"title":3882,"module":3878,"summary":3883},"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance","Reactance","A resistor obeys Ohm's law instant by instant, but a capacitor responds to how fast its voltage changes and an inductor to how fast its current changes. Under a steady sinusoid that rate-dependence collapses to a fixed quarter-cycle phase shift and a frequency-dependent amplitude ratio, the reactance. We derive $X_C=1\u002F(\\omega C)$ and $X_L=\\omega L$, adopt phasors to turn the defining derivatives into multiplication by $j\\omega$ so a single complex impedance carries amplitude and phase together, and track the energy an ideal reactance stores and returns without dissipating it. Real windings and dielectrics add loss, leakage, and self-resonance that bound where the ideal formulas hold.\n",{"path":3885,"title":3886,"module":3878,"summary":3887},"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance","RLC Resonance","Put a resistor, inductor, and capacitor in one loop and their reactances work against each other: inductive reactance grows with frequency while capacitive reactance shrinks, and at one frequency they cancel exactly. There the branch looks purely resistive, the current peaks, and the inductor and capacitor voltages can swing far above the source. We locate that resonance at $\\omega_0=1\u002F\\sqrt{LC}$, measure how sharp the peak is with the quality factor $Q=\\omega_0L\u002FR$, tie its half-power bandwidth $R\u002FL$ to the ringdown of the unforced circuit, and read the same poles off as bandpass and peaked filters at the R, L, or C terminals.\n",{"path":3889,"title":3890,"module":3878,"summary":3891},"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power","AC Power","Multiply an AC load's RMS voltage by its RMS current and you get an answer in volt-amperes that the wiring must carry, but not in general the watts the load consumes. The phase between voltage and current splits that product into a part that does net work and a part that merely sloshes energy back and forth. We derive the average power $P=V_{\\rm rms}I_{\\rm rms}\\cos\\phi$, package amplitude and phase into complex power $S=P+jQ$ so that real, reactive, and apparent power form one right triangle, and see why a harmonic-rich current forces the time-domain definition $P=\\langle vi\\rangle$ in place of a single phase angle.\n",{"path":3893,"title":3894,"module":3878,"summary":3895},"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers","Transformers","Two coils sharing an iron core exchange no charge, yet a changing current in one drives a voltage in the other, and the ratio of their turns sets how voltage and current trade off between the windings. That lets a transformer step a voltage up or down, isolate two circuits, and make a load look larger or smaller to the source by the square of the turns ratio. We build the ideal ratio element from Faraday's law and the dot convention, derive the reflected-impedance rule, then add the winding resistance, leakage, magnetizing current, and core loss that turn the ideal ratios into real regulation, efficiency, and a bounded voltage-frequency range.\n",{"path":3897,"title":3898,"module":3899,"summary":3900},"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current","Displacement Current","Maxwell’s Equations and Electromagnetic Waves","Ampère's law asks for the current through a surface bounded by a loop, but a charging capacitor breaks it: slide the surface off the wire and into the gap and the enclosed conduction current drops to zero, while the magnetic field around the loop plainly does not. Maxwell's repair is to count a changing electric flux as itself a source of magnetic circulation. We derive the displacement-current term $\\varepsilon_0\\,\\d\\Phi_E\u002F\\d t$, show that charge continuity demands it, compute the magnetic field it produces inside a charging capacitor, and see how it closes the Ampère–Maxwell law so that electric and magnetic fields can sustain one another as a wave.\n",{"path":3902,"title":3903,"module":3899,"summary":3904},"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves","Electromagnetic Waves","Once a changing electric flux can drive a magnetic field, the two curl laws feed each other: a disturbance in one regenerates the other, and the pair walks off through empty space with no medium holding it up. We take the curl of Faraday's law, land on a wave equation whose speed is fixed entirely by $\\mu_0$ and $\\varepsilon_0$, and find that $c=1\u002F\\sqrt{\\mu_0\\varepsilon_0}$ falls out of purely electric and magnetic constants. The plane-wave solution then fixes the geometry — $\\vec E$, $\\vec B$, and the propagation direction mutually perpendicular, oscillating in phase, with amplitudes locked at $E=cB$ — a set of independent predictions any real measurement must meet at once.\n",{"path":3906,"title":3907,"module":3899,"summary":3908},"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum","Electromagnetic Momentum","A light beam carries no mass, yet it pushes: shine it on a surface and the surface feels a force. We trace that force back to the fields, which store energy with density $\\varepsilon_0E^2$ and carry it along the Poynting vector $\\vec S=\\vec E\\times\\vec B\u002F\\mu_0$. Because that energy also carries momentum $U\u002Fc$, an absorbed beam presses with $I\u002Fc$ and a mirror with $2I\u002Fc$. We derive the Poynting theorem as local energy conservation, tie intensity to field amplitude, and work the momentum balance carefully enough that oblique incidence, partial reflection, and finite beams all drop out of one accounting.\n",{"path":3910,"title":3911,"module":3899,"summary":3912},"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation","Dipole Radiation","Only accelerating charge radiates, and the simplest accelerator is a charge sloshing back and forth: an oscillating electric dipole. We work out the field it throws off, keeping the part that survives to large distance — the $1\u002Fr$ radiation field whose intensity goes as $\\sin^2\\theta\u002Fr^2$, zero along the dipole axis and strongest broadside. From it follow the $\\omega^4$ scaling of total radiated power, radiation resistance as the feed's view of that escaping power, and, through reciprocity, the fact that a good transmitter receives well in the same directions. The near-zone terms that fall off faster carry no net power, and we mark carefully where each description is allowed to be used.\n",{"path":3914,"title":3915,"module":3899,"summary":3916},"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization","Polarization","A plane wave still leaves one thing free: which way its electric field points as it oscillates. That freedom is polarization, set entirely by the relative amplitude and phase of the two transverse field components — in phase gives a line, equal amplitudes a quarter cycle apart give a circle, everything else an ellipse. We work out how a linear analyzer reads a state through Malus's law $I=I_0\\cos^2\\theta$, why that scan alone cannot tell circular light from unpolarized, and how a quarter-wave plate plus a few analyzer settings recover the full Stokes vector and the degree of polarization.\n",{"path":3918,"title":3919,"module":3920,"summary":3921},"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction","Reflection and Refraction","Geometrical Optics","Light meeting a boundary between two transparent media splits into a reflected ray and a bent transmitted one, and predicting where those rays go is the whole starting point of geometrical optics. Fixing one convention — every angle measured from the surface normal — we get reflection's equal angles and derive Snell's law $n_1\\sin\\theta_1=n_2\\sin\\theta_2$ from wavefront timing. That single relation, applied once or twice, yields the critical angle and total internal reflection, prism deviation, the lateral shift through a window, apparent depth, and a fiber's acceptance cone; a wavelength-dependent index then adds dispersion. We mark throughout where the ray picture is trustworthy: feature sizes large against the wavelength and clean interface geometry.\n",{"path":3923,"title":3924,"module":3920,"summary":3925},"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses","Thin Lenses","A lens gathers the light spreading from one point back onto another, and a single paraxial relation $1\u002Fs+1\u002Fs'=1\u002Ff$ predicts where that image lands and how large it is. We collapse two refractions into one bending plane, read image position and orientation off the three principal rays, and trace focal length back to glass and curvature through the lensmaker equation. Sign conventions carry the physics here — they separate real from virtual images and upright from inverted — so we drill them before chaining lenses in sequence and in contact. The lesson ends on how focal length is actually measured on a bench, and where finite thickness, aperture, and dispersion break the thin-lens picture.\n",{"path":3927,"title":3928,"module":3920,"summary":3929},"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors","Spherical Mirrors","Curve a mirror and it stops merely reflecting an image and starts forming one: the same $1\u002Fs+1\u002Fs'=1\u002Ff$ that governs lenses reappears, now with $f=R\u002F2$ and reflected rays and object sharing one side of the glass. We derive the mirror equation from the reflection geometry of a single paraxial ray, then let signed distances do the sorting — real inverted images on the near branch, virtual upright ones behind the surface — and check the concave, convex, and plane-mirror limits against each other. The second half turns to how focal length is actually measured on a bench, by finite conjugates, distant targets, return imaging, and sagitta, and to the aperture and off-axis aberrations the single paraxial focus cannot capture.\n",{"path":3931,"title":3932,"module":306,"summary":306},"\u002Felectricity-and-magnetism","Electricity & Magnetism",{"path":3934,"title":3935,"module":3936,"summary":3937},"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms","Systems of Linear Equations and Row Reduction","Linear Equations in Linear Algebra","A linear system is a finite set of linear equations in shared variables. Elementary row operations rewrite it without changing its solution set, and reducing the augmented matrix to echelon form decides both existence and uniqueness. Pivot positions say whether the solution set is empty, a single point, or infinite.\n",{"path":3939,"title":3940,"module":3936,"summary":3941},"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations","Vector Equations and the Matrix Equation Ax = b","The same linear system reads three equivalent ways: a system of equations, a vector equation asking whether b is a linear combination of fixed vectors, and a matrix equation Ax = b. Ax is the linear combination of A's columns weighted by x, so consistency for a given b means b lies in the span of the columns, and consistency for every b means the columns span all of R^m.\n",{"path":3943,"title":3944,"module":3936,"summary":3945},"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications","Solution Sets and Applied Linear Systems","A homogeneous system Ax = 0 has a solution set that is a span through the origin; a consistent Ax = b has that same span translated by any one particular solution. Parametric vector form writes both explicitly. The structure shows up in applied systems with many solutions: equilibrium prices, balanced chemical reactions, network flows, weight-loss diets, and migration models.\n",{"path":3947,"title":3948,"module":3936,"summary":3949},"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence","Linear Independence","A set of vectors is linearly independent when the only linear combination equal to zero is the trivial one; otherwise a dependence relation writes one vector in terms of the others. For the columns of A the question becomes whether Ax = 0 has only the trivial solution — a pivot in every column. Counting pivots settles independence, and any set with more vectors than entries is automatically dependent.\n",{"path":3951,"title":3952,"module":3936,"summary":3953},"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations","Linear Transformations and Their Matrices","Reading A as an action rather than an array, x maps to Ax is a transformation from R^n to R^m. The ones that preserve addition and scalar multiplication are the linear transformations, and every one is x maps to Ax for a unique standard matrix whose columns are the images of the standard basis vectors. Onto and one-to-one translate into the span and independence of those columns.\n",{"path":3955,"title":3956,"module":3957,"summary":3958},"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations","Matrix Operations","Matrix Algebra","Matrices add and scale entrywise, but their product is defined so that multiplication corresponds to composition of linear maps: the columns of AB are A applied to the columns of B. From that requirement follow the row-column rule, the algebra of products (associative and distributive but not commutative), powers, and the transpose.\n",{"path":3960,"title":3961,"module":3957,"summary":3962},"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility","The Inverse and the Invertible Matrix Theorem","The inverse of a square matrix is the matrix analogue of a reciprocal, defined by AA⁻¹ = I. A closed form settles the 2×2 case; the Gauss–Jordan algorithm row reduces [A | I] to [I | A⁻¹] in general; and elementary matrices record single row operations. The Invertible Matrix Theorem collects a dozen equivalent conditions for invertibility into one statement.\n",{"path":3964,"title":3965,"module":3957,"summary":3966},"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu","Block Matrices and the LU Factorization","Partitioning a matrix into blocks lets sums, products, and inverses be computed block by block, as if the submatrices were scalars. Block structure also underlies the LU factorization A = LU, which splits solving Ax = b into two fast triangular solves and repays the cost whenever many systems share one coefficient matrix.\n",{"path":3968,"title":3969,"module":3957,"summary":3970},"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank","Subspaces of Rⁿ, Dimension, and Rank","A subspace is a set closed under addition and scalar multiplication. Every matrix carries two: the column space of all attainable outputs Ax, and the null space of all solutions of Ax = 0. A basis measures each with a minimal spanning set, dimension counts it, and the Rank Theorem ties pivots and free variables together as rank + nullity = n.\n",{"path":3972,"title":3973,"module":3957,"summary":3974},"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics","Applications: Leontief Economics and Computer Graphics","The Leontief input–output model balances an economy through (I − C)x = d and expands the inverse as a geometric series in the consumption matrix. Computer graphics moves figures with matrix products, using homogeneous coordinates so that translation and perspective projection become matrix multiplications too.\n",{"path":3976,"title":3977,"module":3978,"summary":3979},"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors","Introduction to Determinants","Determinants","The determinant of a square matrix is defined recursively by cofactor expansion: an n-by-n determinant is a signed sum of (n-1)-by-(n-1) determinants built from the first row. The expansion can equally run along any row or down any column, and a triangular matrix has determinant equal to the product of its diagonal.\n",{"path":3981,"title":3982,"module":3978,"summary":3983},"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants","Properties of Determinants","Row operations act on the determinant in three predictable ways, and this turns row reduction into a fast algorithm: the determinant is the product of the pivots times a sign for the interchanges. The same properties yield the invertibility test det A is nonzero, the transpose identity, and the multiplicative law det(AB) equals det A times det B.\n",{"path":3985,"title":3986,"module":3978,"summary":3987},"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area","Cramer's Rule, Volume, and Linear Transformations","Cramer's rule writes each unknown of an invertible system as a ratio of determinants, and the same idea gives a closed formula for the inverse through the adjugate. Geometrically the absolute determinant is the area of the parallelogram or the volume of the parallelepiped spanned by the columns, so a linear map scales every region's measure by that factor.\n",{"path":3989,"title":3990,"module":3991,"summary":3992},"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces","Vector Spaces and Subspaces","Vector Spaces","A vector space is any set closed under addition and scalar multiplication that obeys ten algebraic axioms. The same axioms that govern arrows in the plane govern polynomials, functions, matrices, and infinite signals, so one theory covers them all. A subspace is a subset that is a vector space in its own right, tested by three conditions, and the span of any set of vectors is the smallest subspace containing them.\n",{"path":3994,"title":3995,"module":3991,"summary":3996},"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces","Null Spaces, Column Spaces, and Linear Transformations","Two subspaces sit inside every matrix. The null space collects all solutions of $Ax = 0$ and lives in the domain; the column space collects every attainable $Ax$ and lives in the codomain. One is defined implicitly by a condition, the other explicitly by a spanning set, and the same pair appears for an abstract linear transformation as its kernel and range.\n",{"path":3998,"title":3999,"module":3991,"summary":4000},"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets","Linearly Independent Sets and Bases","A basis is a spanning set with no redundancy: linearly independent and still large enough to reach every vector. The spanning-set theorem shows any spanning set can be trimmed to a basis by discarding dependent vectors, and the pivot columns of a matrix give a basis for its column space. Independence and spanning are defined for abstract spaces exactly as in $\\mathbb{R}^n$.\n",{"path":4002,"title":4003,"module":3991,"summary":4004},"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems","Coordinate Systems","Fixing a basis assigns every vector a unique list of coordinates, turning an abstract space into $\\mathbb{R}^n$. The coordinate mapping is a one-to-one linear transformation onto $\\mathbb{R}^n$ — an isomorphism — so any $n$-dimensional space is indistinguishable from $\\mathbb{R}^n$ as far as vector-space computations go. In $\\mathbb{R}^n$ the change-of-coordinates matrix $P_B$ and its inverse convert between basis coordinates and standard coordinates.\n",{"path":4006,"title":4007,"module":3991,"summary":4008},"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank","The Dimension of a Vector Space and Rank","Every basis of a space has the same number of vectors, and that number is the dimension. Rank is the dimension of the column space, equal to the dimension of the row space and to the number of pivots. The Rank Theorem, rank plus nullity equals the number of columns, ties the four fundamental subspaces of a matrix together and adds six lines to the Invertible Matrix Theorem.\n",{"path":4010,"title":4011,"module":3991,"summary":4012},"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis","Change of Basis","Two bases give the same vector two different coordinate vectors, and a single invertible matrix converts between them. Its columns are the coordinate vectors of the old basis expressed in the new one, and its inverse reverses the conversion. In $\\mathbb{R}^n$ the change-of-coordinates matrix between two bases is found by one row reduction.\n",{"path":4014,"title":4015,"module":3991,"summary":4016},"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov","Applications: Difference Equations and Markov Chains","The solutions of an nth-order linear difference equation form an $n$-dimensional vector space, so finding $n$ independent solutions gives them all. A Markov chain evolves a probability distribution by repeated multiplication by a stochastic matrix, and a regular chain converges to a unique steady-state vector fixed by that matrix. Both applications turn a dynamic process into a subspace or a fixed-point question.\n",{"path":4018,"title":4019,"module":4020,"summary":4021},"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues","Eigenvectors and Eigenvalues","Eigenvalues and Eigenvectors","An eigenvector of a square matrix is a nonzero vector the matrix only stretches; its eigenvalue is the stretch factor. The eigenspace of an eigenvalue is the null space of A minus lambda times the identity, the eigenvalues of a triangular matrix are its diagonal entries, and eigenvectors for distinct eigenvalues are linearly independent.\n",{"path":4023,"title":4024,"module":4020,"summary":4025},"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation","The Characteristic Equation","The eigenvalues of a matrix are the roots of its characteristic polynomial det(A minus lambda I). This degree-n polynomial carries an algebraic multiplicity at each repeated root, a nonzero determinant is equivalent to zero not being an eigenvalue, and similar matrices share a characteristic polynomial and hence the same eigenvalues.\n",{"path":4027,"title":4028,"module":4020,"summary":4029},"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization","Diagonalization","A matrix is diagonalizable when it factors as A equals P D P inverse with D diagonal, which happens exactly when it has n linearly independent eigenvectors. The factorization computes matrix powers cheaply, distinct eigenvalues guarantee it, and a repeated eigenvalue permits it only when its eigenspace dimension equals its multiplicity.\n",{"path":4031,"title":4032,"module":4020,"summary":4033},"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations","Eigenvectors and Linear Transformations","Every linear transformation between finite-dimensional spaces has a matrix relative to chosen bases, built from the coordinate vectors of the images of the basis vectors. For a map from a space to itself, an eigenvector basis makes that matrix diagonal, and that change of basis is diagonalization; the matrices similar to A are the representations of the map in every basis.\n",{"path":4035,"title":4036,"module":4020,"summary":4037},"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues","Complex Eigenvalues","A real matrix with no real eigenvalues still has complex ones, occurring in conjugate pairs. A real 2-by-2 matrix with eigenvalue a plus b i is similar to a rotation-scaling matrix, whose rotation angle is the argument of the eigenvalue and whose scale factor is its modulus; the modulus decides whether the trajectories close up, spiral in, or spiral out.\n",{"path":4039,"title":4040,"module":4020,"summary":4041},"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems","Discrete and Continuous Dynamical Systems","Eigenvalues govern the long-term behavior of a system that evolves by x becomes A x or by x prime equals A x. An eigenvector basis decouples both kinds of system into independent scalar equations; the eigenvalues then classify the origin as attractor, repeller, saddle, or spiral, and the dominant eigenpair fixes the growth rate and limiting direction.\n",{"path":4043,"title":4044,"module":4020,"summary":4045},"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method","Iterative Estimates for Eigenvalues","When only a numerical eigenvalue is needed, iteration is preferred over the characteristic polynomial. The power method repeatedly multiplies by A to converge on the dominant eigenvalue and its eigenvector; the Rayleigh quotient sharpens the estimate for symmetric matrices; and the inverse power method targets any eigenvalue near a known guess.\n",{"path":4047,"title":4048,"module":4049,"summary":4050},"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality","Inner Product, Length, and Orthogonality","Orthogonality and Least Squares","The dot product turns the algebra of vectors in R^n into geometry: length, distance, and perpendicularity. The inner product yields the norm, the Pythagorean theorem, and the orthogonal complement, and the null space of a matrix is the orthogonal complement of its row space.\n",{"path":4052,"title":4053,"module":4049,"summary":4054},"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections","Orthogonal Sets and Orthogonal Projections","An orthogonal basis makes coordinates trivial: each weight is a single dot product, no linear system required. Orthogonal and orthonormal bases give a direct projection formula onto a line and onto a subspace, the orthogonal decomposition and best-approximation theorems, and the matrix form U U-transpose of a projection.\n",{"path":4056,"title":4057,"module":4049,"summary":4058},"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr","The Gram-Schmidt Process and QR Factorization","Gram-Schmidt turns any basis into an orthogonal one by repeatedly subtracting off projections onto the span already built. Normalizing the result and recording the coefficients factors the matrix as A = QR, with Q orthonormal and R upper triangular, the factorization behind stable least-squares and eigenvalue algorithms.\n",{"path":4060,"title":4061,"module":4049,"summary":4062},"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems","Least-Squares Problems","When Ax = b has no solution, the least-squares solution makes Ax as close to b as possible. The closest Ax is the projection of b onto the column space, and the vector that produces it solves the normal equations A-transpose A x = A-transpose b. Uniqueness, the residual error, and the stabler QR route follow.\n",{"path":4064,"title":4065,"module":4049,"summary":4066},"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications","Applications to Linear Models","Curve fitting is a least-squares problem in statistical notation. The least-squares line, polynomial fits, and multiple regression all reduce to X beta = y with a design matrix X built from the data, solved by the same normal equations.\n",{"path":4068,"title":4069,"module":4049,"summary":4070},"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces","Inner Product Spaces","Promoting the four properties of the dot product to axioms defines an inner product on any vector space, including spaces of functions. Length, distance, orthogonality, Gram-Schmidt, and best approximation all carry over, along with the Cauchy-Schwarz and triangle inequalities and the integral inner product behind Fourier approximation.\n",{"path":4072,"title":4073,"module":4074,"summary":4075},"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices","Diagonalization of Symmetric Matrices","Symmetric Matrices, Quadratic Forms, and the SVD","A symmetric matrix is one that equals its own transpose. Every such matrix can be diagonalized by an orthogonal change of basis, A = PDPᵀ, with real eigenvalues and perpendicular eigenvectors. This is the Spectral Theorem, and it rewrites A as a weighted sum of rank-one projections onto its eigenvectors.\n",{"path":4077,"title":4078,"module":4074,"summary":4079},"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms","Quadratic Forms","A quadratic form xᵀAx is the second-degree analogue of a linear map, attached to a symmetric matrix A. Orthogonal diagonalization changes variables to the eigenbasis, removing all cross-terms and rotating the form into standard position. The signs of the eigenvalues then classify it as definite or indefinite.\n",{"path":4081,"title":4082,"module":4074,"summary":4083},"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization","Constrained Optimization","Maximizing a quadratic form xᵀAx over the unit sphere has an exact answer: the maximum is the largest eigenvalue of A, attained at its eigenvector, and the minimum is the smallest eigenvalue. Adding orthogonality constraints peels off the eigenvalues in order, characterizing the whole spectrum by optimization.\n",{"path":4085,"title":4086,"module":4074,"summary":4087},"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition","The Singular Value Decomposition","The singular value decomposition factors any m×n matrix as A = UΣVᵀ, with orthogonal U and V and a nonnegative diagonal Σ of singular values. The singular values are the square roots of the eigenvalues of AᵀA, and they describe the matrix geometrically as a rotation, an axiswise stretch, and another rotation, exposing rank, the four fundamental subspaces, and a best low-rank approximation.\n",{"path":4089,"title":4090,"module":4074,"summary":4091},"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging","Applications: Image Processing and Statistics","Principal component analysis diagonalizes the covariance matrix of a data set, producing uncorrelated variables ordered by variance. The leading components capture most of the variation, which reduces dimension, compresses images through low-rank SVD approximation, and connects directly to the singular values of the data matrix.\n",{"path":4093,"title":4094,"module":4095,"summary":4096},"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation","Numerical Thinking and Matrix Computation","Numerical Linear Algebra","Numerical analysis builds efficient discrete algorithms for continuous problems, and its cost is dominated as much by memory traffic as by arithmetic. Block matrix calculus, flop counts, and the BLAS efficiency ratio fix the cost model; triangular and unitary matrices are the two computational building blocks every factorization rests on.\n",{"path":4098,"title":4099,"module":4095,"summary":4100},"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky","LU and Cholesky Factorization in Practice","Gaussian elimination, read as a factorization A = LU, turns a linear system into two triangular solves. A single near-zero pivot wrecks it, so partial pivoting reorders rows to pick the largest available pivot and makes the method work for every invertible matrix. For symmetric positive-definite systems, Cholesky halves the cost and needs no pivoting.\n",{"path":4102,"title":4103,"module":4095,"summary":4104},"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point","Conditioning and Floating-Point Arithmetic","A problem's condition number measures how much its answer moves when its data is perturbed, independent of any algorithm. Subtraction is ill-conditioned under cancellation, and for a linear system the amplifier is the matrix condition number κ(A). Floating-point arithmetic supplies the perturbation: every real number is rounded to within a relative machine precision, so even perfect computation inherits an error of order κ times the unit roundoff.\n",{"path":4106,"title":4107,"module":4095,"summary":4108},"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis","Numerical Stability and Backward Error Analysis","An algorithm is backward stable when its computed answer is the exact answer to a slightly perturbed problem. Combined with the condition number this gives the governing rule of thumb: forward error is at most condition times stability. Three cancellation case studies make the point, then the residual-based backward error applies it to Ax = b and shows why partial pivoting keeps Gaussian elimination stable.\n",{"path":4110,"title":4111,"module":4095,"summary":4112},"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares","QR, Householder, and Numerical Least Squares","The least-squares problem reduces to the normal equations, but forming AᵀA squares the condition number and can wreck accuracy. The stable route computes a QR factorization directly on A and solves Rx = Qᵀb. Householder reflectors build that QR one column at a time using length-preserving reflections, the unconditionally backward-stable building block behind every serious least-squares solver.\n",{"path":4114,"title":4115,"module":4095,"summary":4116},"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd","Numerical Eigenvalue Problems and the SVD","Eigenvalues cannot be found by a formula for large matrices, so they are found by iteration. Power and inverse iteration converge to one eigenvector at a rate set by the eigenvalue gap; the QR algorithm sweeps a matrix to Schur form and, with a good shift and a Hessenberg reduction, computes the whole spectrum in cubic time. Singular values follow from the same machinery applied without ever forming AᵀA.\n",{"path":4118,"title":4119,"module":4120,"summary":4121},"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations","Affine Combinations","Geometry of Vector Spaces","An affine combination is a linear combination whose weights sum to one. The affine hull of a set is the smallest flat containing it: a point, a line, a plane, or a translated subspace. Homogeneous coordinates turn every affine combination into an ordinary linear combination one dimension up.\n",{"path":4123,"title":4124,"module":4120,"summary":4125},"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates","Affine Independence and Barycentric Coordinates","Affine independence is linear independence for the translated or lifted points, and it guarantees each point of an affine hull a unique weight vector. Those weights are barycentric coordinates: centers of mass, ratios of triangle areas, and the interpolation rule behind smooth shading in computer graphics.\n",{"path":4127,"title":4128,"module":4120,"summary":4129},"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets","Convex Combinations and Convex Sets","A convex combination is an affine combination with nonnegative weights, and the convex hull of a set is the smallest convex set containing it. Convex sets are closed under intersection, and Carathéodory's theorem bounds how many points a convex combination in $\\mathbb{R}^n$ ever needs: at most $n+1$.\n",{"path":4131,"title":4132,"module":4120,"summary":4133},"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes","Hyperplanes and Polytopes","A hyperplane is a level set of a linear functional, the set where an inner product equals a constant. Hyperplanes separate disjoint convex sets and support them at their boundaries. Polytopes are convex hulls of finite point sets; their vertices are the extreme points, and a linear functional attains its extremes there.\n",{"path":4135,"title":4136,"module":4120,"summary":4137},"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces","Curves and Surfaces","Bézier curves are affine combinations of control points with polynomial weights, so they lie in the convex hull of those points and bend toward them. The de Casteljau algorithm evaluates them by repeated interpolation, a matrix form factors them for computation, and matching endpoints and tangents joins segments into smooth curves and surfaces.\n",{"path":4139,"title":4140,"module":306,"summary":306},"\u002Flinear-algebra","Linear Algebra",{"path":4142,"title":4143,"module":306,"summary":306},"\u002Ftheory-of-computation","Theory of Computation",{"path":11,"title":10,"module":5,"summary":13},{"path":16,"title":15,"module":5,"summary":19},{"path":22,"title":21,"module":5,"summary":25},{"path":28,"title":27,"module":5,"summary":31},{"path":34,"title":33,"module":5,"summary":37},{"path":44,"title":43,"module":39,"summary":46},{"path":49,"title":48,"module":39,"summary":51},{"path":54,"title":53,"module":39,"summary":56},{"path":59,"title":58,"module":39,"summary":61},{"path":64,"title":63,"module":39,"summary":66},{"path":69,"title":68,"module":39,"summary":72},{"path":75,"title":74,"module":39,"summary":78},{"path":85,"title":84,"module":80,"summary":87},{"path":90,"title":89,"module":80,"summary":92},{"path":95,"title":94,"module":80,"summary":97},{"path":100,"title":99,"module":80,"summary":102},{"path":105,"title":104,"module":80,"summary":107},{"path":114,"title":113,"module":109,"summary":116},{"path":119,"title":118,"module":109,"summary":121},{"path":124,"title":123,"module":109,"summary":126},{"path":129,"title":128,"module":109,"summary":131},{"path":134,"title":133,"module":109,"summary":136},{"path":143,"title":142,"module":138,"summary":145},{"path":148,"title":147,"module":138,"summary":150},{"path":153,"title":152,"module":138,"summary":155},{"path":158,"title":157,"module":138,"summary":160},{"path":163,"title":162,"module":138,"summary":165},{"path":172,"title":171,"module":167,"summary":174},{"path":177,"title":176,"module":167,"summary":179},{"path":182,"title":181,"module":167,"summary":184},{"path":187,"title":186,"module":167,"summary":189},{"path":192,"title":191,"module":167,"summary":194},{"path":201,"title":200,"module":196,"summary":203},{"path":206,"title":205,"module":196,"summary":208},{"path":211,"title":210,"module":196,"summary":213},{"path":216,"title":215,"module":196,"summary":218},{"path":221,"title":220,"module":196,"summary":223},{"path":231,"title":230,"module":225,"summary":233},{"path":236,"title":235,"module":225,"summary":238},{"path":241,"title":240,"module":225,"summary":243},{"path":251,"title":250,"module":245,"summary":253},{"path":256,"title":255,"module":245,"summary":258},{"path":266,"title":265,"module":260,"summary":268},{"path":271,"title":270,"module":260,"summary":273},{"path":276,"title":275,"module":260,"summary":278},{"path":281,"title":280,"module":260,"summary":283},{"path":286,"title":285,"module":260,"summary":288},{"path":296,"title":295,"module":290,"summary":298},{"path":301,"title":300,"module":290,"summary":303},{"path":4194,"title":4195,"module":306,"summary":306},"\u002Fcomputer-architecture","Computer Architecture",{"path":4197,"title":4198,"module":5,"summary":4199},"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields","Models, Direction Fields, and Solution Curves","A differential equation relates an unknown function to its own rates of change. Three first-order models — a falling body, a cooling object, a population under predation — share the form dy\u002Fdt = ay - b; the slope field fixes their equilibria and long-run behavior before any formula is found. Solving the linear case gives the general solution, its integral curves, and the particular solution selected by an initial condition.\n",{"path":4201,"title":4202,"module":5,"summary":4203},"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology","Classifying Equations: Order, Linearity, ODE vs. PDE","Every solution method targets a specific class of equation, so the first question about any differential equation is which classes it belongs to. Four independent axes sort them: ordinary versus partial, order, linear versus nonlinear, and homogeneous versus nonhomogeneous. Systems, verification of a solution by substitution, and the split between initial and boundary value problems complete the vocabulary.\n",{"path":4205,"title":4206,"module":4207,"summary":4208},"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors","Linear Equations and Integrating Factors","First-Order Equations","A first-order linear equation has the unknown and its derivative to the first power only. Multiplying by an integrating factor collapses the left side into a single derivative, and one integration gives the general solution in closed form. The solution exists wherever the coefficients are continuous, and for a constant coefficient it splits into a decaying transient and a steady state set by the forcing.\n",{"path":4210,"title":4211,"module":4207,"summary":4212},"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact","Separable and Exact Equations","Two nonlinear first-order classes solve by direct integration. A separable equation splits so that each variable can be integrated on its own side, giving an implicit relation. An exact equation is the total differential of a hidden potential function, recognized by a symmetry test on its coefficients; when the test fails, an integrating factor can sometimes restore exactness. A change of variable brings homogeneous equations into the separable class.\n",{"path":4214,"title":4215,"module":4207,"summary":4216},"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order","Modeling with First-Order Equations","A rate law is a differential equation. Each first-order model starts from one governing principle: conservation of mass for a mixing tank, proportional change for interest and radioactive decay, Newton's law of cooling, a force balance for a body falling against drag, and Kirchhoff's law for a series circuit. Setting the derivative to zero recovers the steady state, and the transient records how the initial condition relaxes toward it.\n",{"path":4218,"title":4219,"module":4207,"summary":4220},"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics","Autonomous Equations, Phase Lines, and Population Dynamics","An autonomous equation y' = f(y) can be analyzed qualitatively without being solved. Its constant solutions are the zeros of f, and the sign of f between them fixes whether nearby solutions rise or fall, which the phase line records as a column of arrows. The logistic and threshold models, constant- and effort-proportional harvesting, and the properties nonlinear equations lose all follow from this reading.\n",{"path":4222,"title":4223,"module":4207,"summary":4224},"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler","Existence, Uniqueness, and Euler's Method","Existence and uniqueness can be settled before any attempt to solve. The existence-uniqueness theorem gives sufficient conditions on f, and a standard example shows what fails when they do not hold. Picard's successive approximations build the solution as the limit of an iteration, and Euler's method turns the same tangent-line idea into a numerical procedure for the equations no formula reaches.\n",{"path":4226,"title":4227,"module":4207,"summary":4228},"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations","First-Order Difference Equations","A difference equation advances a sequence one index at a time by a rule y_{n+1} = f(y_n). The linear case y_{n+1} = rho*y_n + b solves in closed form and converges to its equilibrium exactly when the ratio has magnitude below one, which underlies compound-interest and loan calculations. The logistic difference equation shows the nonlinear counterpart: an exchange of stability, a cascade of period doublings, and the onset of chaos.\n",{"path":4230,"title":4231,"module":4232,"summary":4233},"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients","Homogeneous Equations, the Wronskian, and Real Roots","Second-Order Linear Equations","A second-order linear homogeneous equation with constant coefficients is solved by guessing an exponential and reducing to the quadratic characteristic equation. Two solutions span every solution exactly when their Wronskian is nonzero; that condition, superposition, and Abel's formula give the full structure of the general solution for the case of two distinct real roots.\n",{"path":4235,"title":4236,"module":4232,"summary":4237},"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots","Complex Roots, Repeated Roots, and Reduction of Order","When the characteristic equation has complex conjugate roots, Euler's formula converts the complex exponentials into a real fundamental set of decaying or growing oscillations. When it has a repeated root, one exponential is lost and reduction of order recovers the missing second solution as $t\\,e^{rt}$. The same substitution $y = v(t)y_1(t)$ finds a second solution from any known one.\n",{"path":4239,"title":4240,"module":4232,"summary":4241},"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients","Nonhomogeneous Equations: Undetermined Coefficients","The general solution of a nonhomogeneous linear equation is a complementary solution plus any one particular solution. When the forcing term is a polynomial, exponential, sine, or cosine, a particular solution can be found by assuming a trial form of the same shape with unknown coefficients and solving for them. The one complication is resonance, handled by multiplying the trial by a power of $t$.\n",{"path":4243,"title":4244,"module":4232,"summary":4245},"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters","Variation of Parameters","Variation of parameters finds a particular solution of any nonhomogeneous linear equation from a fundamental set of the homogeneous one. Replacing the constants in the complementary solution by functions and imposing one convenient constraint reduces the problem to a two-by-two linear system whose solution is expressed through the Wronskian, giving an integral formula that works for forcing terms undetermined coefficients cannot touch.\n",{"path":4247,"title":4248,"module":4232,"summary":4249},"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations","Mechanical and Electrical Vibrations","A spring-mass-damper obeys a second-order linear equation, and so does a series RLC circuit, with the same mathematics governing both. Free undamped motion is a pure sinusoid; damping adds a decaying envelope with three regimes; periodic forcing produces a transient that dies out and a steady-state oscillation whose amplitude peaks sharply near the natural frequency, the phenomenon of resonance.\n",{"path":4251,"title":4252,"module":4232,"summary":4253},"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear","Higher-Order Linear Equations","The second-order theory extends directly to order $n$: the solution space is $n$-dimensional, spanned by any $n$ solutions with nonzero Wronskian. For constant coefficients the characteristic polynomial has degree $n$, and its roots (counted with multiplicity, real and complex) build the basis by the same rules as before. Coupled oscillators are the natural application that raises the order.\n",{"path":4255,"title":4256,"module":4257,"summary":4258},"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points","Power Series Solutions Near Ordinary Points","Series Solutions and Special Functions","A linear equation with variable coefficients has no characteristic equation. A power series substituted into the equation matches coefficients to a recurrence relation, which near an ordinary point yields two independent analytic solutions. The radius of convergence is at least the distance from the expansion point to the nearest singular point in the complex plane.\n",{"path":4260,"title":4261,"module":4257,"summary":4262},"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius","Euler Equations, Regular Singular Points, and Frobenius","The Euler equation x^2 y'' + a x y' + b y = 0 is solved outright by y = x^r, and its three root cases fix the behavior at any regular singular point. The Frobenius method multiplies x^r by a power series; the indicial equation chooses the exponents, and equal or integer-separated roots force a logarithm in the second solution. Gauss's hypergeometric equation is the archetype containing most classical functions as special cases.\n",{"path":4264,"title":4265,"module":4257,"summary":4266},"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions","Bessel's Equation, Legendre Polynomials, and Special Functions","Bessel's equation puts the Frobenius machinery through all three of its cases and produces the functions J and Y that govern anything vibrating or diffusing with circular symmetry. The gamma function extends the factorial so that Bessel functions of every order make sense; Legendre's equation, run through the hypergeometric form, yields the polynomials that play the same role in spherical geometry. Orthogonality ties both families to the eigenfunction expansions of Sturm–Liouville theory.\n",{"path":4268,"title":4269,"module":4270,"summary":4271},"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps","The Laplace Transform: Definition, Properties, and Solving IVPs","The Laplace Transform","The Laplace transform sends a function of time to a function of a complex frequency by integrating it against the kernel e^{-st}. Differentiation in t becomes multiplication by s, so a linear constant-coefficient initial value problem turns into an algebraic equation. Existence rests on piecewise continuity and exponential order; the derivative rule folds in the initial data; and inversion runs through a transform table and partial fractions.\n",{"path":4273,"title":4274,"module":4270,"summary":4275},"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution","Step Functions, Discontinuous Forcing, Impulses, and Convolution","The Heaviside step function and the second shifting theorem transform switches and discontinuous forcing into exponential factors on the transform. The Dirac delta idealizes an instantaneous impulse and transforms to a pure exponential. The convolution theorem inverts a product of transforms, writes the forced response as the impulse response convolved with the input, and solves Abel's tautochrone by transform.\n",{"path":4277,"title":4278,"module":4279,"summary":4280},"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review","Matrices, Linear Systems, and the Eigenvalue Toolkit","Systems of First-Order Linear Equations","Any nth-order linear equation, and any coupled collection of them, rewrites as a single first-order system x' = P(t)x + g(t). The matrix and vector algebra behind that form, the eigenvalue problem det(A - λI) = 0 that drives every solution method, and the fundamental theory — superposition, the Wronskian, Abel's theorem — together establish that n independent solutions span all solutions.\n",{"path":4282,"title":4283,"module":4279,"summary":4284},"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits","Homogeneous Constant-Coefficient Systems and Phase Portraits","For x' = Ax with A constant, the trial x = ξe^{rt} turns the differential equation into the eigenvalue problem Aξ = rξ. The eigenvalues fix the geometry of the phase plane: real opposite signs give a saddle, real same sign a node, complex a spiral, purely imaginary a center. Worked in the plane, these cases form the eigenvalue-type classification of equilibria.\n",{"path":4286,"title":4287,"module":4279,"summary":4288},"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices","Repeated Eigenvalues, Fundamental Matrices, and Nonhomogeneous Systems","When a repeated eigenvalue supplies too few eigenvectors, a generalized eigenvector supplies the missing solution as ξte^{ρt} + ηe^{ρt}, giving an improper node. A fundamental set packaged as a matrix Φ(t) yields the matrix exponential e^{At}, the propagator mapping initial states to later ones. Variation of parameters solves the nonhomogeneous system x' = Ax + g(t).\n",{"path":4290,"title":4291,"module":4292,"summary":4293},"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta","Euler, Improved Euler, and Runge–Kutta","Numerical Methods","Most initial value problems have no closed-form solution, so the solution is approximated on a grid. Euler's method steps along the tangent line, the improved Euler method averages two slopes, and the classical Runge–Kutta method averages four. Each added stage raises the order of accuracy at the cost of more evaluations per step, measured by how the local and global truncation errors scale with the step size.\n",{"path":4295,"title":4296,"module":4292,"summary":4297},"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability","Multistep Methods, Systems, and Stability","One-step methods discard everything but the last point. Multistep methods fit a polynomial to several past values and integrate it forward: the explicit Adams–Bashforth formulas, the implicit and more accurate Adams–Moulton formulas, and predictor–corrector pairs that combine them. The same rules extend verbatim to systems in vector form. A separate concern is stability: round-off can dominate truncation, and stiff equations force a tiny step for stability even when accuracy would allow a large one.\n",{"path":4299,"title":4300,"module":4301,"summary":4302},"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability","The Phase Plane, Critical Points, and Stability","Nonlinear Systems and Stability","Most nonlinear systems cannot be solved in closed form, so they are studied geometrically. The phase plane turns an autonomous planar system into a family of trajectories; the five archetypes of critical point follow from the eigenvalues of the coefficient matrix; the trace-determinant plane reads off type and stability directly; and epsilon-delta definitions make stability, asymptotic stability, and instability precise.\n",{"path":4304,"title":4305,"module":4301,"summary":4306},"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov","Locally Linear Systems and Liapunov's Method","Near a critical point a nonlinear system looks linear, and the linear part is the Jacobian. The linearization fixes the type and stability of the nonlinear critical point in every case except a center or a repeated eigenvalue. Liapunov's direct method settles those cases and bounds the basin of attraction by constructing an energy-like function, without solving the system.\n",{"path":4308,"title":4309,"module":4301,"summary":4310},"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles","Population Models, Limit Cycles, and Chaos","The phase-plane methods apply directly to interacting-population models. Competing species either coexist or drive one another to extinction, decided by a single inequality among the interaction constants; the Lotka-Volterra predator-prey system produces closed population cycles. Limit cycles and the Poincaré-Bendixson theorem, the van der Pol oscillator, and the Lorenz equations with their strange attractor carry the theory into chaos.\n",{"path":4312,"title":4313,"module":4314,"summary":4315},"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series","Fourier Series and Convergence","PDEs, Fourier Series, and Boundary Value Problems","A two-point boundary value problem has nontrivial solutions only at a discrete set of eigenvalues, the same trichotomy that governs a singular linear system. For y'' + lambda y = 0 with zero endpoints the eigenfunctions are sines and cosines, and their orthogonality gives the Euler-Fourier coefficient formulas. The convergence theorem fixes when the series returns the function, the Gibbs phenomenon measures the overshoot at a jump, and even\u002Fodd symmetry produces half-range sine and cosine series.\n",{"path":4317,"title":4318,"module":4314,"summary":4319},"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations","Separation of Variables: Heat, Wave, and Laplace Equations","Separation of variables replaces a partial differential equation by a pair of ordinary ones joined through a shared separation constant. Applied to the heat equation it produces the eigenvalue problem X'' + lambda X = 0, and the solution assembles as a Fourier series in the eigenfunctions. The same steps solve the wave equation, whose modes are standing waves, and Laplace's equation, the steady-state limit posed on a region rather than an interval.\n",{"path":4321,"title":4322,"module":4314,"summary":4323},"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville","Sturm-Liouville Theory","The eigenvalue problem behind separation of variables generalizes to the self-adjoint Sturm-Liouville form. Lagrange's identity makes the operator symmetric, and from that one fact follow real eigenvalues, orthogonal eigenfunctions, and eigenfunction expansions that behave like Fourier series. Singular problems admit Bessel and Legendre functions, and Sturm's separation and comparison theorems describe how the eigenfunctions oscillate.\n",{"path":4325,"title":4326,"module":4327,"summary":4328},"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations","The Calculus of Variations","Historical Notes and the Calculus of Variations","Ordinary calculus finds the point where a function is stationary; the calculus of variations finds the whole curve where an integral is stationary. Euler's differential equation is the necessary condition for an extremal, and it becomes integrable in three cases, solving the shortest-path, minimal-surface, and brachistochrone problems. Lagrange multipliers extend the method to isoperimetric constraints, and Hamilton's principle recovers Newton's law from a single stationary integral.\n",{"path":4330,"title":4331,"module":4327,"summary":4332},"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes","Great Problems and the People Who Solved Them","Differential equations grew out of specific problems, not a plan: the invention of calculus by Newton and Leibniz, the Bernoulli brachistochrone challenge, Euler's flood of methods, Lagrange's analytical mechanics, Gauss and Riemann's rigor, Laplace's celestial mechanics, and Poincaré's qualitative theory. Each method descends from a named problem, and reading the subject forward from those problems explains why its parts fit together.\n",{"path":4334,"title":4335,"module":306,"summary":306},"\u002Fdifferential-equations","Differential Equations",{"path":4337,"title":4338,"module":4339,"summary":4340},"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates","The Postulates of Special Relativity","Foundations of Relativity","Newton's laws are the same in every inertial frame, but Maxwell's are not: the equations of electromagnetism single out one speed, c, and the nineteenth century read that as the speed of light relative to a medium, the ether. The Michelson-Morley experiment looked for Earth's motion through that medium and found nothing. Einstein's two postulates replace the ether, and their first consequence is that simultaneity is frame-dependent.\n",{"path":4342,"title":4343,"module":4339,"summary":4344},"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime","The Lorentz Transformation and Spacetime","Requiring that a light sphere stay a light sphere in every inertial frame fixes the coordinate change between frames uniquely: the Lorentz transformation, with its factor gamma. Differentiating it gives relativistic velocity addition, which caps composed speeds at c. Plotting the same events on skewed spacetime axes turns the algebra into geometry, with calibration hyperbolae, an invariant interval, and a light cone that sorts events into past, future, and elsewhere.\n",{"path":4346,"title":4347,"module":4339,"summary":4348},"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction","Time Dilation, Length Contraction, and Paradoxes","A light clock and the constancy of c give the two headline effects directly: a moving clock runs slow by gamma, and a moving rod is short by the same factor. Cosmic-ray muons reaching sea level are the standing experimental proof. The relativistic Doppler effect adds the time-dilation factor to the classical shift, and the twin and pole-barn paradoxes dissolve once the relativity of simultaneity is taken seriously.\n",{"path":4350,"title":4351,"module":4339,"summary":4352},"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy","Relativistic Momentum and Energy","Conserving momentum in every inertial frame forces the redefinition p = gamma m u, which diverges as the speed approaches c. Integrating the corresponding force gives the total energy E = gamma m c-squared, whose rest term m c-squared is Einstein's mass-energy equivalence. Energy and momentum join into a four-vector whose invariant length is the rest energy, giving E-squared = (pc)-squared + (m c-squared)-squared, massless particles, and nuclear binding energy.\n",{"path":4354,"title":4355,"module":4339,"summary":4356},"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity","A Taste of General Relativity","Einstein's happiest thought was that a freely falling observer feels no gravity: a uniform gravitational field is locally indistinguishable from an accelerating frame. That equivalence principle predicts that light bends near a mass, that clocks run slow deep in a gravitational well, that Mercury's orbit precesses, and that radar echoes are delayed. Every prediction has been confirmed, and pushing the redshift to its limit gives the black hole.\n",{"path":4358,"title":4359,"module":4360,"summary":4361},"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval","Minkowski Spacetime and the Interval","Spacetime and the Lorentz Group","The Lorentz transformation of the foundations module is repackaged as the geometry of a four-dimensional space whose invariant is not a distance but the spacetime interval. Events, worldlines, and the metric signature define a causal structure that every observer shares. Proper time is the length of a timelike worldline, and the twin paradox becomes the statement that a straight worldline accumulates the most proper time.\n",{"path":4363,"title":4364,"module":4360,"summary":4365},"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation","Four-Vectors and Index Notation","The index calculus that the rest of the course runs on. Contravariant and covariant components, the Minkowski metric as the machine that raises and lowers indices, and the Einstein summation convention are assembled into scalar products that are the same in every frame. The four-velocity and four-acceleration follow, together with the identity that the four-velocity has constant invariant length.\n",{"path":4367,"title":4368,"module":4360,"summary":4369},"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity","The Lorentz Group and Rapidity","The Lorentz transformations are the linear maps that preserve the Minkowski metric, and they form the group O(1,3). Boosts are hyperbolic rotations parametrized by rapidity, which adds along a line where velocity does not. The boost and rotation generators fix the group's local structure; its four disconnected components are set by two signs; and two non-collinear boosts compose into a boost plus a rotation, the Wigner rotation behind Thomas precession.\n",{"path":4371,"title":4372,"module":4360,"summary":4373},"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance","Doppler, Aberration, and Appearance","Light carries a null four-momentum, and boosting it produces every optical effect of relativity at once. The covariant Doppler formula follows from the transformation of frequency, aberration from the transformation of direction, and the headlight effect from the resulting concentration of light forward. The Terrell-Penrose result shows that a fast object photographs as rotated, not contracted.\n",{"path":4375,"title":4376,"module":4377,"summary":4378},"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion","Four-Momentum, Four-Force, and Accelerated Motion","Relativistic Dynamics","The four-momentum packages energy and momentum into a single vector whose invariant length is the rest mass. Its proper-time derivative is the four-force, always orthogonal to the four-velocity, and a constant orthogonal four-force produces hyperbolic motion. Constant proper acceleration gives rapidity linear in proper time, the relativistic rocket equation, and the Rindler horizon behind an eternally accelerating observer.\n",{"path":4380,"title":4381,"module":4377,"summary":4382},"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics","Particle Decays and Two-Body Kinematics","Conservation of four-momentum fixes the kinematics of a decay from the masses alone. In the center-of-momentum frame a parent breaks into two daughters with equal and opposite momenta and energies set by the Kallen triangle function. Boosting to the lab opens the decay into a cone, and the invariant mass built from the daughters reconstructs the parent as a peak. Worked cases: the two-photon decay of the neutral pion and a heavy two-body hadronic decay.\n",{"path":4384,"title":4385,"module":4377,"summary":4386},"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame","Relativistic Collisions and Threshold Energies","Two-body collisions run on the same conserved four-momentum as decays. The invariant s sets the total energy available in the center-of-momentum frame and therefore the threshold for producing new particles. Fixed-target energy grows only as the square root of beam energy while a collider grows linearly, which is why colliders reach high energy. Compton scattering follows as a worked photon-electron collision giving the wavelength shift.\n",{"path":4388,"title":4389,"module":4377,"summary":4390},"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants","Mandelstam Variables and Lorentz Invariants","For a two-to-two process the three Mandelstam invariants s, t, and u encode all the kinematics in frame-independent form. They obey a single linear constraint, the sum of the four squared masses, so only two are independent. s is the center-of-momentum energy squared, t and u are momentum transfers tied to the scattering angle, and crossing symmetry relates one amplitude across three channels through these variables.\n",{"path":4392,"title":4393,"module":4394,"summary":4395},"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential","The Four-Current and Four-Potential","Covariant Electromagnetism","Charge density and current combine into a single four-vector whose divergence is charge conservation. The scalar and vector potentials combine likewise into the four-potential, whose gauge freedom fixes to the Lorenz condition, reducing Maxwell's equations for the potentials to a single wave equation sourced by the four-current.\n",{"path":4397,"title":4398,"module":4394,"summary":4399},"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor","The Electromagnetic Field Tensor","The antisymmetric derivative of the four-potential is the field-strength tensor F, gauge invariant by construction, with the electric and magnetic fields as its components. Its dual exchanges E and B, and its two contractions form the Lorentz invariants that classify a field as electric, magnetic, or radiative in every frame.\n",{"path":4401,"title":4402,"module":4394,"summary":4403},"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields","How E and B Transform","Transforming the field tensor under a boost gives explicit rules for the electric and magnetic fields: components along the motion are unchanged, transverse components mix and pick up a gamma. The field of a uniformly moving charge compresses transversely, and the force between a current and a moving charge shows that magnetism is the relativistic shadow of electrostatics.\n",{"path":4405,"title":4406,"module":4394,"summary":4407},"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor","Covariant Maxwell and the Stress–Energy Tensor","Maxwell's four equations collapse into two tensor equations, one sourced by the four-current and one an identity on the field strength, with charge conservation automatic. The Lorentz force becomes a four-vector law, and the field's energy, momentum, and stress assemble into a symmetric, conserved stress–energy tensor — the object that will source gravity.\n",{"path":4409,"title":4410,"module":4411,"summary":4412},"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized","The Equivalence Principle","Curved Spacetime","The equality of gravitational and inertial mass promotes to a physical principle in three graded strengths — weak, Einstein, and strong. A freely falling laboratory is locally indistinguishable from an inertial frame, but the qualifier \"locally\" is essential: the size of the patch over which gravity vanishes is set by the tidal field, which no change of frame can remove. Tidal forces are the true, coordinate-independent signature of gravity, and they are what curvature will measure.\n",{"path":4414,"title":4415,"module":4411,"summary":4416},"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric","Manifolds, Vectors, and the Metric","A manifold is a space that looks locally like flat space, described by overlapping coordinate charts. Tangent vectors are directional derivatives with the coordinate basis vectors as partial-derivative operators; one-forms live in the dual space; and the metric tensor turns a coordinate line element into an invariant length. The 2-sphere and Rindler metrics serve as worked examples, including the coordinate singularities that are artefacts of the chart, not of the geometry.\n",{"path":4418,"title":4419,"module":4411,"summary":4420},"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols","Parallel Transport and the Covariant Derivative","The ordinary derivative of a vector field is not a tensor, because it subtracts vectors living in different tangent spaces. A connection supplies the missing comparison: the covariant derivative adds Christoffel-symbol correction terms that cancel the coordinate artefacts. Requiring the connection to be torsion-free and to preserve the metric fixes the Christoffel symbols uniquely in terms of derivatives of the metric, giving the Levi-Civita connection that general relativity uses.\n",{"path":4422,"title":4423,"module":4411,"summary":4424},"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation","Geodesics and the Newtonian Limit","Free fall is geodesic motion: a freely falling particle follows the straightest possible worldline, obtained either by parallel-transporting its own tangent vector or by extremizing proper time. Both routes give the geodesic equation. Affine parameters, and conserved quantities from symmetries via Killing vectors, make it solvable. In the weak-field slow-motion limit the geodesic equation reproduces Newton's law of gravity, fixing the time-time metric component as the Newtonian potential.\n",{"path":4426,"title":4427,"module":4411,"summary":4428},"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation","Curvature and the Riemann Tensor","Curvature is the failure of parallel transport to commute: carrying a vector around an infinitesimal loop returns it rotated, and the rotation per unit area is the Riemann tensor. Its symmetries cut the components to twenty in four dimensions. Geodesic deviation makes it the equation of tidal forces, and its contractions — the Ricci tensor, the Ricci scalar, and the divergence-free Einstein tensor — assemble the objects the field equation is built from.\n",{"path":4430,"title":4431,"module":4411,"summary":4432},"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations","The Einstein Field Equations","The field equation is assembled from a short list of requirements: a symmetric, divergence-free, second-order geometric tensor set proportional to the stress–energy tensor, with the coefficient fixed by the Newtonian limit. The cosmological constant is the one extra term the requirements allow. The Einstein–Hilbert action gives the same equation from a variational principle, and the coupled system closes the logic of the module: matter curves spacetime, and spacetime tells matter how to move.\n",{"path":4434,"title":4435,"module":4436,"summary":4437},"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric","The Schwarzschild Metric","The Schwarzschild Solution","The first exact solution of Einstein's equation follows from two assumptions, staticity and spherical symmetry, imposed on the vacuum outside a mass. Solving the vacuum field equations fixes two metric functions and produces the Schwarzschild geometry, whose one length scale is the Schwarzschild radius $r_s = 2GM\u002Fc^2$. Birkhoff's theorem shows this is the only spherical vacuum, and the far field reduces to Newtonian gravity.\n",{"path":4439,"title":4440,"module":4436,"summary":4441},"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild","Orbits in the Schwarzschild Geometry","The two Killing symmetries of the Schwarzschild metric give a conserved energy and angular momentum per unit mass, reducing geodesic motion to a one-dimensional problem in an effective potential. The potential carries an extra attractive $1\u002Fr^3$ term absent from Newton's, which caps the centrifugal barrier, produces an innermost stable circular orbit at $6GM\u002Fc^2$, and makes bound orbits precess instead of closing.\n",{"path":4443,"title":4444,"module":4436,"summary":4445},"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics","Null Geodesics and the Photon Sphere","Light follows null geodesics, governed by a photon effective potential with a single unstable maximum at $3GM\u002Fc^2$, the photon sphere. The impact parameter sorts rays into those that escape with a deflection and those captured, with the critical value $b_c = 3\\sqrt{3}\\,GM\u002Fc^2$ dividing them. A grazing ray bends by $4GM\u002F(c^2 b)$, twice the naive Newtonian value, and the critical impact parameter sets the edge of a black hole's shadow.\n",{"path":4447,"title":4448,"module":4449,"summary":4450},"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury","The Perihelion Precession of Mercury","Tests of General Relativity","A single extra term in the Schwarzschild orbit equation, cubic in the inverse radius, keeps a bound orbit from closing. The perturbation advances the perihelion by 6πGM\u002F(c²a(1−e²)) per revolution, which for Mercury is 43 arcseconds per century — exactly the anomaly left after Newtonian planetary perturbations are subtracted. A note on frame dragging closes the lesson.\n",{"path":4452,"title":4453,"module":4449,"summary":4454},"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing","Light Deflection and Gravitational Lensing","A light ray grazing the Sun bends by 4GM\u002F(c²b), exactly twice the value a Newtonian corpuscle would give; the extra factor is the curvature of space. The 1919 eclipse confirmed it. The same bending focuses light from distant sources into Einstein rings, multiple images, and microlensing brightenings, making lensing a direct probe of mass, including mass that emits no light.\n",{"path":4456,"title":4457,"module":4449,"summary":4458},"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay","Gravitational Redshift and the Shapiro Delay","A clock deeper in a gravitational well ticks slower, and a photon climbing out loses frequency by the ratio of the metric's time-time components. Pound and Rebka measured the 2.5×10⁻¹⁵ shift over a 22.5-metre tower. Radar signals grazing the Sun return late by about 250 microseconds, the Shapiro delay. Both probe the time part of the metric directly.\n",{"path":4460,"title":4461,"module":4449,"summary":4462},"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps","Relativity and the Global Positioning System","A GPS satellite clock runs slow by 7 microseconds a day from its orbital speed and fast by 46 from its higher gravitational potential, a net gain of about 38 microseconds a day. Left uncorrected, the timing error would grow into kilometres of position error within a day and exceed navigation tolerance within minutes. The satellites carry a pre-launch frequency offset to cancel it.\n",{"path":4464,"title":4465,"module":4466,"summary":4467},"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities","Horizons and Coordinate Singularities","Black Holes","The Schwarzschild radius is a coordinate singularity, not a curvature singularity: the metric blows up there only because the static coordinates fail, while the geometry stays finite. Eddington–Finkelstein and Kruskal– Szekeres coordinates cross the horizon smoothly and show the light cones tipping toward the center. A freely falling observer reaches the true singularity at r=0 in finite proper time, while a distant observer sees the infall freeze and redden at the horizon.\n",{"path":4469,"title":4470,"module":4466,"summary":4471},"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes","Rotating and Charged Black Holes","A stationary black hole is fixed by three numbers: mass, angular momentum, and charge. The Reissner–Nordström metric adds charge and splits the horizon in two; the Kerr metric adds rotation, drags inertial frames, and wraps the horizon in an ergosphere where nothing can stay still. Inside the ergosphere the Penrose process extracts rotational energy, and the no-hair theorem states that no other detail of the collapsed matter survives.\n",{"path":4473,"title":4474,"module":4466,"summary":4475},"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics","Black-Hole Thermodynamics","The four laws of black-hole mechanics mirror the four laws of thermodynamics term for term, with horizon area playing the role of entropy and surface gravity the role of temperature. Hawking's calculation makes the analogy literal: a black hole radiates at a temperature set by its surface gravity, carries a real entropy proportional to its horizon area, and slowly evaporates. The thermal spectrum raises the information paradox.\n",{"path":4477,"title":4478,"module":4479,"summary":4480},"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions","Linearized Gravity and Wave Solutions","Gravitational Waves","Weak gravity is a small perturbation of flat spacetime, and the linearized Einstein equation in the Lorenz gauge is an ordinary wave equation propagating at the speed of light. The trace-reversed perturbation carries the dynamics, residual gauge freedom fixes the transverse-traceless form, and the two physical polarizations deform a ring of freely falling masses into oscillating ellipses whose fractional size change is the strain.\n",{"path":4482,"title":4483,"module":4479,"summary":4484},"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula","The Quadrupole Formula","The retarded solution of the linearized field equation gives the field of a moving source, and conservation of mass and momentum forbids monopole and dipole radiation, leaving the mass quadrupole as the leading emitter. The quadrupole formula fixes the strain and the radiated luminosity, and applied to a compact binary it predicts the inspiral chirp of rising frequency and amplitude. The Hulse-Taylor pulsar's orbital decay confirmed it to a fraction of a percent.\n",{"path":4486,"title":4487,"module":4479,"summary":4488},"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events","LIGO and the First Detections","A gravitational wave is measured as a differential length change of the two arms of a kilometre-scale Michelson interferometer, a strain of order ten to the minus twenty-one that moves the mirrors by a fraction of a proton radius. GW150914 recorded the inspiral, merger, and ringdown of two black holes, fixing their masses and the energy radiated, and GW170817 with its coincident gamma-ray burst and kilonova opened multimessenger astronomy.\n",{"path":4490,"title":4491,"module":4492,"summary":4493},"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric","The Cosmological Principle and the FLRW Metric","A Bridge to Cosmology","Homogeneity and isotropy restrict the spacetime of the universe to a single family of metrics: a flat cosmic-time slicing of spatial sections of constant curvature, scaled by a time-dependent factor a(t). This lesson builds the Friedmann–Lemaître–Robertson–Walker metric from those symmetries, separates comoving from proper distance, and derives cosmological redshift as the stretching of wavelengths with the scale factor.\n",{"path":4495,"title":4496,"module":4492,"summary":4497},"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics","The Friedmann Equations and Cosmic Dynamics","The Einstein equation applied to the FLRW metric with a perfect-fluid source yields the two Friedmann equations and the conservation law that ties them together. This lesson derives them, defines the critical density and the density parameters that fix the spatial geometry, works out how matter, radiation, and a cosmological constant dilute and drive the expansion, and hands off to a dedicated cosmology subject.\n",{"path":4499,"title":4500,"module":306,"summary":306},"\u002Frelativity","Relativity",{"path":4502,"title":4503,"module":306,"summary":306},"\u002Fphysical-computing","Physical Computing",{"path":4505,"title":4506,"module":4507,"summary":4508},"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum","Blackbody Radiation and the Planck Quantum","Origins of the Quantum","Millikan's oil-drop experiment fixed the electron charge as an indivisible unit, and the spectrum of thermal radiation forced a second, deeper quantum. Classical physics predicts an infinite energy density at short wavelengths; Planck removed the divergence by allowing a cavity oscillator to hold only energies that are integer multiples of hf, the first appearance of the quantum of action.\n",{"path":4510,"title":4511,"module":4507,"summary":4512},"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon","The Photoelectric Effect and the Photon","Light shone on a clean metal ejects electrons, but the details defied the wave theory: the electrons' maximum energy depends on the light's frequency, not its brightness, and there is a sharp threshold frequency below which nothing happens. Einstein resolved every anomaly by treating light as a stream of energy quanta hf, each absorbed whole by one electron, and Millikan's measurement of the stopping-potential slope confirmed h to a decade before anyone expected.\n",{"path":4514,"title":4515,"module":4507,"summary":4516},"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect","X-Rays and the Compton Effect","X-rays are short-wavelength electromagnetic waves produced when fast electrons are braked in a target, and their diffraction by crystals lets Bragg's law measure atomic spacings. Compton then scattered X-rays off electrons and found the wavelength shifted by an amount that only a photon carrying momentum hf\u002Fc could explain, closing the case for the particle nature of light.\n",{"path":4518,"title":4519,"module":4507,"summary":4520},"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld","The Old Quantum Theory: Bohr, Sommerfeld, and Correspondence","Between Bohr's 1913 atom and Schrödinger's 1926 equation, physics ran on a provisional recipe: keep classical orbits, but admit only those whose action integral is a whole multiple of Planck's constant. This lesson develops the Wilson-Sommerfeld phase-integral rule, applies it to the oscillator and to the elliptical Kepler orbits of hydrogen, derives Sommerfeld's relativistic fine structure and the quantization of orbit orientation, and shows how the correspondence principle fixed intensities and selection rules. The systematic failures — helium, line intensities, the anomalous Zeeman effect — mark exactly where a theory of orbits had to give way to a theory of waves.\n",{"path":4522,"title":4523,"module":4524,"summary":4525},"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction","De Broglie Waves and Electron Diffraction","The Wave Nature of Matter","In 1924 de Broglie proposed that every particle carries a wave of wavelength h\u002Fp. The hypothesis explains Bohr's quantized orbits as standing waves, and Davisson and Germer, then G. P. Thomson, confirmed it by diffracting electrons from crystals exactly as X-rays diffract. We derive the electron wavelength, work the Bragg analysis of the data, and give the relativistic form.\n",{"path":4527,"title":4528,"module":4524,"summary":4529},"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation","Wave Packets and the Probabilistic Wave Function","A single de Broglie wave fills all space, but a particle is localized. Adding many waves of nearby wavelength builds a wave packet that is confined and moves at the group velocity, which equals the particle velocity. Born's rule reads the squared amplitude of the wave function as a probability density, the meaning confirmed by electron interference building up one detection at a time.\n",{"path":4531,"title":4532,"module":4524,"summary":4533},"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle","The Uncertainty Principle and Wave-Particle Duality","The packet relations delta-k delta-x about 1 become Heisenberg's principle once momentum is hbar times wave number: position and momentum cannot both be sharp, nor energy and time. The gamma-ray microscope shows the limit is physical, not technical. It fixes the zero-point energy of a confined particle, the size of the hydrogen atom, and the natural width of spectral lines, and it frames the wave-particle duality of all matter and radiation.\n",{"path":4535,"title":4536,"module":4537,"summary":4538},"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension","The Schrödinger Equation in One Dimension","Wave Mechanics in One Dimension","The wave equation for matter cannot be derived; it is postulated and judged by experiment. We build the time-dependent Schrödinger equation from the de Broglie relations, read Born's probability rule off the complex wave function, and separate the time and space dependence to get the time-independent equation whose bound-state solutions are the stationary states. The five acceptability conditions on the wave function are what force energy to be quantized.\n",{"path":4540,"title":4541,"module":4537,"summary":4542},"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics","The Free Particle and Wave-Packet Dynamics","The free particle has no bound states: its stationary solutions are non-normalizable plane waves forming a continuum. Physical states are wave packets built by superposing them, and the superposition is a Fourier transform. We delta-normalize the plane waves, assemble a Gaussian packet, solve for its exact time evolution, and read off the two facts that reconcile the wave picture with mechanics: the packet moves at the group velocity ħk\u002Fm, the classical velocity, and it spreads because its component momenta travel at different speeds.\n",{"path":4544,"title":4545,"module":4537,"summary":4546},"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells","Particle in Infinite and Finite Square Wells","The infinite square well is the simplest bound-state problem: two boundary conditions quantize the energy into a ladder E_n = n² E_1, and the eigenfunctions are the standing waves of a string fixed at both ends. Relaxing the walls to a finite depth lets the wave function leak into the classically forbidden region, keeps the number of bound states finite, and turns the eigenvalue condition into a transcendental equation solved graphically.\n",{"path":4548,"title":4549,"module":4537,"summary":4550},"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator","Operators, Expectation Values, and the Harmonic Oscillator","Measurable quantities are extracted from the wave function as expectation values, and each observable is represented by an operator that acts between Ψ* and Ψ — position by multiplication, momentum by a derivative, energy by the Hamiltonian. Applied to the harmonic oscillator, the machinery yields evenly spaced levels E_n = (n+½)ℏω, Gaussian- times-Hermite eigenfunctions of definite parity, and the selection rule Δn = ±1.\n",{"path":4552,"title":4553,"module":4537,"summary":4554},"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential","The Dirac-Delta Potential: A Single Bound State and Scattering","A potential concentrated at a single point is solvable in closed form and isolates the physics of matching a wave function across a discontinuity. Integrating the Schrödinger equation across the spike gives a jump condition on the derivative; the attractive delta well then supports exactly one bound state, of energy set by the strength alone, while the same spike scatters an incoming beam with a transmission that rises from zero to one. The attractive well and the repulsive barrier scatter identically yet only the well binds.\n",{"path":4556,"title":4557,"module":4537,"summary":4558},"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling","Barrier Penetration and Quantum Tunneling","Unbound states scatter rather than bind. A particle meeting a step is partly reflected even when it has more than enough energy to pass, and a particle meeting a barrier taller than its energy has a nonzero chance of appearing on the far side. Matching the wave function across the boundaries gives the reflection and transmission coefficients and the exponential tunneling probability that explains alpha decay, the scanning tunneling microscope, and the ammonia clock.\n",{"path":4560,"title":4561,"module":4562,"summary":4563},"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation","Hilbert Space and Dirac Bra–Ket Notation","The Formalism of Quantum Mechanics","Wave mechanics is one representation of a deeper structure: quantum states are vectors in a complex inner-product space, and observables act on them as linear operators. We build that space from the axioms, introduce Dirac's kets and bras as vectors and the linear functionals that measure them, and identify the wavefunction as the components of an abstract state in the position basis. The resolution of the identity is the single algebraic tool that ties every basis, expansion, and matrix element together.\n",{"path":4565,"title":4566,"module":4562,"summary":4567},"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues","Observables, Hermitian Operators, and the Spectral Theorem","Every measurable quantity is represented by a Hermitian operator, and the reason is forced: a measurement needs real eigenvalues, orthogonal eigenvectors, and a complete eigenbasis, and Hermiticity delivers precisely those. We derive those properties from self-adjointness, state the spectral theorem, handle degeneracy, and show that two observables share an eigenbasis precisely when they commute — the algebraic condition behind compatible and incompatible measurements.\n",{"path":4569,"title":4570,"module":4562,"summary":4571},"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement","The Postulates and Quantum Measurement","With states as vectors and observables as Hermitian operators, the physical content of quantum mechanics reduces to a short list of postulates. We state them precisely, derive the Born probability rule for discrete and continuous spectra, work out projective collapse and its idempotence, compute expectation values and their variance, and state the measurement problem cleanly — the one place the postulates split unitary evolution from measurement without explaining the seam.\n",{"path":4573,"title":4574,"module":4562,"summary":4575},"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra","Position, Momentum, and Continuous Spectra","Position and momentum are the observables with no normalizable eigenstates: their spectra are continuous, their eigenkets are delta-normalized, and the two are Fourier conjugates. We derive the canonical commutator from the momentum operator, build the continuous-basis machinery (Dirac deltas replacing Kronecker deltas), show the position and momentum wavefunctions are a Fourier-transform pair, and compute expectation values in either representation.\n",{"path":4577,"title":4578,"module":4562,"summary":4579},"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle","Commutators and the Generalized Uncertainty Principle","The commutator of two observables measures the obstruction to sharing an eigenbasis, and it bounds how sharply both can be known at once. We derive the generalized uncertainty relation from the Schwarz inequality, recover the position–momentum bound as a special case, characterize the minimum-uncertainty states that saturate it as Gaussians, and give the energy–time relation its correct reading as a lifetime bound rather than a commutator relation.\n",{"path":4581,"title":4582,"module":4562,"summary":4583},"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures","Time Evolution, Propagators, and the Heisenberg Picture","Time evolution is generated by the Hamiltonian and implemented by a unitary operator that preserves probability. We build that operator, expand a state in stationary states to see why probability densities freeze while phases wind, introduce the propagator, transfer the time dependence onto operators in the Heisenberg picture, and derive Ehrenfest's theorem — which recovers classical equations of motion for expectation values and identifies conserved quantities as observables commuting with the Hamiltonian.\n",{"path":4585,"title":4586,"module":4587,"summary":4588},"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states","Ladder Operators and the Number States","The Oscillator Algebraically, and Symmetry","The harmonic oscillator can be solved without touching a differential equation. Factoring the Hamiltonian into a lowering operator and its adjoint turns the spectrum into pure algebra: the commutator relation fixes the ladder, the vacuum condition fixes the ground state, and the energies fall out as equally spaced rungs. The same operators give the matrix elements of position and momentum for free.\n",{"path":4590,"title":4591,"module":4587,"summary":4592},"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states","Coherent and Squeezed States","A single number state never moves — its position expectation is pinned at the origin. The superposition that oscillates like a classical particle is the eigenstate of the annihilation operator: the coherent state. It is a displaced vacuum, carries Poissonian photon statistics, saturates the uncertainty bound, and traces a rigid Gaussian orbit in phase space. Squeezing deforms that circle, trading precision in one quadrature for noise in the other.\n",{"path":4594,"title":4595,"module":4587,"summary":4596},"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws","Symmetries, Generators, and Conservation Laws","Every continuous symmetry of a quantum system is a unitary operator built by exponentiating a Hermitian generator: momentum generates translations, angular momentum generates rotations, the Hamiltonian generates time evolution. When a generator commutes with the Hamiltonian, the transformation leaves the dynamics unchanged and the generator is conserved — the quantum form of Noether's theorem — and any symmetry that mixes states within a level forces degeneracy.\n",{"path":4598,"title":4599,"module":4587,"summary":4600},"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries","Parity, Time Reversal, and Discrete Symmetries","Parity and time reversal are symmetries no continuous generator can reach. Parity is a unitary involution whose eigenvalues label states even or odd, fixing the dipole selection rules. Time reversal is antiunitary: it conjugates i, flips momenta and spins, and for half-integer spin squares to minus one, which by Kramers' theorem makes every level of a time-reversal-invariant Hamiltonian at least doubly degenerate.\n",{"path":4602,"title":4603,"module":3599,"summary":4604},"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics","Orbital Angular Momentum and Spherical Harmonics","Orbital angular momentum is the operator triple built from position and momentum. Its components fail to commute, so no state carries sharp values of more than one of them, but each commutes with the total square. Solving the common eigenvalue problem in spherical coordinates quantizes both the magnitude and the projection and produces the spherical harmonics, the angular part of every central-force wavefunction.\n",{"path":4606,"title":4607,"module":3599,"summary":4608},"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra","The Angular-Momentum Algebra and Ladder Operators","The eigenvalues of angular momentum follow from the commutation relations alone, with no reference to coordinates or wavefunctions. Raising and lowering operators built from the components generate finite multiplets, force the total quantum number to be a non-negative integer or half-integer, and fix the matrix elements of every component. The half-integer values excluded by orbital motion appear here, and they are what spin realizes.\n",{"path":4610,"title":4611,"module":3599,"summary":4612},"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan","Addition of Angular Momenta and Clebsch–Gordan Coefficients","Two angular momenta combine into a total whose allowed magnitudes run from the difference to the sum of the parts in integer steps. The change from the uncoupled product basis to the coupled total-angular-momentum basis is carried out with the lowering operator and orthogonality, and its matrix of overlaps is the table of Clebsch–Gordan coefficients. Two spin-halves split into a triplet and a singlet, the prototype for every composite spin.\n",{"path":4614,"title":4615,"module":4616,"summary":4617},"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions","The Schrödinger Equation in Three Dimensions","Central Potentials","A central potential depends only on the distance from a force center, so the three-dimensional Schrödinger equation separates in spherical coordinates. The angular factor is a spherical harmonic; the radial factor obeys a one-dimensional equation with an effective potential whose centrifugal barrier depends on the angular-momentum quantum number. The free particle and the spherical box fix the two limiting cases through the spherical Bessel functions.\n",{"path":4619,"title":4620,"module":4616,"summary":4621},"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom","The Hydrogen Atom","The Coulomb potential turns the radial equation into one whose bound states exist only for a discrete set of energies. A power-series solution truncated to keep the wavefunction normalizable forces the principal quantum number, and the energy comes out proportional to minus one over its square, recovering the Rydberg spectrum. The bound states are the associated Laguerre functions times spherical harmonics, and their energy depends on the principal number alone, giving an n-squared degeneracy larger than rotational symmetry can explain.\n",{"path":4623,"title":4624,"module":4616,"summary":4625},"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry","The Isotropic Oscillator and Hidden Symmetry","The three-dimensional isotropic harmonic oscillator solves in both Cartesian and spherical bases, and the two solutions must agree on the degeneracy of every level. That agreement, and the accidental degeneracy of hydrogen, both come from a symmetry larger than rotation: the oscillator carries an SU(3) invariance built from a conserved quadrupole tensor, and the Coulomb problem carries an SO(4) invariance built from the conserved Runge–Lenz vector. These hidden symmetries pin the degeneracies that rotational invariance alone leaves unexplained.\n",{"path":4627,"title":4628,"module":4629,"summary":4630},"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach","Spin-½, the Pauli Matrices, and Stern–Gerlach","Spin","A silver atom passing through an inhomogeneous magnetic field splits into two beams, not a smear. That single fact fixes the internal angular momentum of the electron to a two-valued quantity with no spatial wavefunction. We build the two-dimensional spin space, the Pauli matrices and their algebra, the spinor for measurement along an arbitrary axis, and the sequential Stern–Gerlach filters that expose measurement disturbance.\n",{"path":4632,"title":4633,"module":4629,"summary":4634},"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance","Spin in a Magnetic Field: Precession and Resonance","A spin coupled to a magnetic field is the simplest nontrivial quantum dynamics. A static field makes the spin expectation precess on a cone at the Larmor frequency while the energy levels split linearly. Adding a weak oscillating field and passing to the rotating frame produces Rabi oscillations and a resonance lineshape — the physics of NMR and ESR, and the driven qubit.\n",{"path":4636,"title":4637,"module":4629,"summary":4638},"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere","Two-Level Systems and the Bloch Sphere","Every two-state quantum system is a spin-½ in disguise. Its Hamiltonian is an effective magnetic field, its pure states are points on the Bloch sphere, and its unitary evolution is a rigid rotation of that sphere. The same structure produces avoided level crossings, the ammonia inversion doublet and its maser, and the qubit.\n",{"path":4640,"title":4641,"module":4642,"summary":4643},"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry","Identical Particles and Exchange Symmetry","Identical Particles","Two electrons carry no label that distinguishes one from the other, and that bare fact reshapes the state space. The exchange operator that swaps particle labels commutes with any Hamiltonian built from identical particles, so its eigenvalue is conserved, and nature admits only its two extremes: totally symmetric states for bosons and totally antisymmetric states for fermions. The antisymmetry forces a statistical correlation, the exchange \"force,\" that keeps fermions apart and draws bosons together even with no interaction between them.\n",{"path":4645,"title":4646,"module":4642,"summary":4647},"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table","The Pauli Principle, Atoms, and the Periodic Table","Antisymmetry packaged as a Slater determinant turns the exclusion principle into an operating rule for building atoms. Helium shows the machinery in full: the electron-electron repulsion splits into a direct Coulomb integral and an exchange integral, and the exchange term alone pushes the spin-triplet (orthohelium) below the spin-singlet (parahelium) with no magnetic interaction in sight. Screening, the aufbau order, and Hund's rules then assemble the whole periodic table from the same antisymmetry.\n",{"path":4649,"title":4650,"module":4651,"summary":4652},"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory","Time-Independent Perturbation Theory","Approximation Methods for Bound States","Almost no realistic Hamiltonian can be solved exactly. Perturbation theory treats a hard Hamiltonian as a solvable one plus a small correction and expands the eigenvalues and eigenstates in powers of that correction. We derive the first- and second-order energy shifts and the first-order state correction for a nondegenerate level, expose the small-denominator failure that degeneracy forces, and fix it by diagonalizing the perturbation inside the degenerate subspace to find the \"good\" zeroth-order states.\n",{"path":4654,"title":4655,"module":4651,"summary":4656},"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom","Fine Structure and the Real Hydrogen Atom","The Bohr spectrum is only the leading term. Two relativistic corrections of order alpha-squared — the relativistic kinetic-energy correction and spin–orbit coupling, joined by the Darwin term for s states — split the hydrogen levels into fine structure that depends on the total angular momentum j. We derive each shift as a first-order perturbation, combine them into a formula depending only on n and j, and continue down the energy ladder to the Lamb shift and the hyperfine 21 cm line.\n",{"path":4658,"title":4659,"module":4651,"summary":4660},"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects","The Zeeman and Stark Effects","An atom in an external field is a perturbation problem whose good basis depends on which interaction wins. A magnetic field competes with the internal spin–orbit coupling: the weak-field limit gives the anomalous Zeeman splitting set by the Landé g-factor, the strong-field limit gives the Paschen–Back pattern in the uncoupled basis, and the intermediate regime is a matrix diagonalization. An electric field gives a quadratic shift for the nondegenerate ground state and a linear splitting for the degenerate n = 2 level.\n",{"path":4662,"title":4663,"module":4651,"summary":4664},"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method","The Variational Method","The expectation of the Hamiltonian in any trial state is an upper bound on the true ground-state energy. Minimizing that expectation over a parametrized family of trial functions turns the ground-state problem into ordinary calculus and needs no small parameter. We prove the bound, apply it to the helium atom with a screened effective charge, use a two-center trial to predict binding in the hydrogen molecular ion, and extend the method to excited states through orthogonality.\n",{"path":4666,"title":4667,"module":4651,"summary":4668},"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation","The WKB Approximation","When the potential varies slowly on the scale of the de Broglie wavelength, the wavefunction is locally a plane wave with a position-dependent wavelength. This semiclassical picture builds the wavefunction from the classical momentum, breaks down at the turning points where the momentum vanishes, and is repaired there by connection formulas. The result recovers the Bohr–Sommerfeld quantization rule with its half-integer correction and gives the exponential tunneling rate through a smooth barrier, the Gamow factor.\n",{"path":4670,"title":4671,"module":306,"summary":306},"\u002Fquantum-mechanics","Quantum Mechanics",{"path":4673,"title":4674,"module":4675,"summary":4676},"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions","Sets, Logic, and Functions","Foundations and the Real Number System","The working language of analysis: quantifiers and the proof patterns (contrapositive, contradiction, induction), sets and their operations, relations and equivalence classes, and functions with their images, injections, surjections, and bijections. Cardinality is measured by bijection, and Cantor's theorem that no set surjects onto its power set forces uncountable sets to exist.\n",{"path":4678,"title":4679,"module":4675,"summary":4680},"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness","Ordered Fields and the Completeness Axiom","The real numbers are the unique ordered field with the least-upper-bound property. The field and order axioms, the exact failure of the rationals (no supremum for the set of rationals below √2), and completeness as the defining axiom of ℝ lead to the first consequences: the existence of √2, the Archimedean property, and the density of ℚ in ℝ.\n",{"path":4682,"title":4683,"module":4675,"summary":4684},"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds","Absolute Value, Bounded Sets, and Inequalities","The absolute value turns the order on ℝ into a notion of distance, with the triangle inequality as the estimate underlying most later proofs. Covered: its algebra, the triangle and reverse-triangle inequalities, and the extension of the sup\u002Finf vocabulary from sets to bounded functions.\n",{"path":4686,"title":4687,"module":4675,"summary":4688},"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability","Intervals, Uncountability, and Decimals","Intervals are classified, and ℝ is proved uncountable two ways: a nested-interval construction and the decimal diagonal argument. Decimal expansions are built as suprema of truncations, which pins the source of their non-uniqueness (the 0.4999… equals 0.5000… identity) and the identification of the rationals with the eventually-repeating expansions. The middle-thirds Cantor set is an uncountable set of measure zero.\n",{"path":4690,"title":4691,"module":4692,"summary":4693},"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits","Sequences and Their Limits","Sequences and Series","A sequence is a function on the natural numbers; it converges to a limit when its terms eventually stay within any prescribed tolerance of that number. The epsilon-M definition fixes the order of the quantifiers, and from it the limit is unique, every convergent sequence is bounded, and only the tail matters. Divergence to plus or minus infinity records terms that outgrow every bound.\n",{"path":4695,"title":4696,"module":4692,"summary":4697},"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone","Limit Laws and Monotone Convergence","Limits commute with sums, products, quotients, roots, and absolute values and preserve non-strict inequalities, so a limit can be assembled from the limits of its parts without returning to epsilon and M. The squeeze lemma transfers a limit through two envelopes; the monotone convergence theorem produces a limit from boundedness alone; and the ratio test settles the geometric and factorial standard limits.\n",{"path":4699,"title":4700,"module":4692,"summary":4701},"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass","Subsequences, Limit Superior, and Bolzano–Weierstrass","A bounded sequence need not converge, but it always has convergent subsequences, and its terms cluster between two extreme values. The limit superior and inferior are the limits of the tail suprema and infima; they always exist for a bounded sequence, coincide exactly when it converges, and are its largest and smallest subsequential limits. Bolzano–Weierstrass extracts a convergent subsequence from boundedness alone.\n",{"path":4703,"title":4704,"module":4692,"summary":4705},"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness","Cauchy Sequences and the Completeness of the Reals","The Cauchy criterion tests convergence without knowing the limit: a sequence converges exactly when its terms eventually all lie within any tolerance of one another. Cauchy sequences are bounded, in the reals Cauchy and convergent are equivalent, and this completeness property is interchangeable with the least-upper-bound axiom — the single feature that separates the real line from the rationals.\n",{"path":4707,"title":4708,"module":4692,"summary":4709},"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence","Series and Convergence Tests","A series converges when its sequence of partial sums does, so every fact about sequences transfers. Geometric and telescoping series sum in closed form; the n-th term test rejects series whose terms miss zero, though the harmonic series shows the converse fails; and the comparison test against the geometric and p-series benchmarks settles most nonnegative-term series.\n",{"path":4711,"title":4712,"module":4692,"summary":4713},"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement","Absolute Convergence, the Ratio and Root Tests, and Rearrangements","Absolute convergence is the strong form of convergence that permits free manipulation; conditional convergence is fragile. Absolute convergence implies convergence, and the ratio and root tests detect it by comparison with the geometric series. The alternating series test supplies conditionally convergent series, Riemann's theorem rearranges any of them to any sum, and Mertens' theorem multiplies series when at least one converges absolutely.\n",{"path":4715,"title":4716,"module":4717,"summary":4718},"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms","Metric Spaces, Norms, and Examples","Metric Spaces and Topology","A metric is a function $d(x,y)$ obeying four axioms: nonnegativity, identity of indiscernibles, symmetry, and the triangle inequality. The Euclidean, taxicab, sup, discrete, and great-circle metrics all qualify, as does the sup metric on $C[a,b]$. Every norm induces a metric, and strongly equivalent metrics share the same open sets.\n",{"path":4720,"title":4721,"module":4717,"summary":4722},"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets","Open and Closed Sets, Interior, Closure","Open sets are those in which every point has room to move; closed sets are their complements. From the single ball construction come the topology axioms (arbitrary unions, finite intersections), the interior, closure, and boundary of a set, and the fact that openness is always relative to the ambient space.\n",{"path":4724,"title":4725,"module":4717,"summary":4726},"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness","Convergence, Cauchy Sequences, and Completeness","The $\\varepsilon$-$N$ definition of a limit transfers verbatim to any metric space once $|x-y|$ is replaced by $d(x,y)$. Convergent sequences characterize closed sets and closures; Cauchy sequences and completeness capture spaces with no missing limits, with $\\mathbb{R}^n$ and $C[a,b]$ complete and $\\mathbb{Q}$ and $(0,1]$ not.\n",{"path":4728,"title":4729,"module":4717,"summary":4730},"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness","Compactness","A set is compact if every open cover has a finite subcover. In a metric space this is equivalent to sequential compactness and to being complete and totally bounded. Compact sets are closed and bounded; the Heine–Borel theorem gives the converse in $\\mathbb{R}^n$ but nowhere else in general.\n",{"path":4732,"title":4733,"module":4717,"summary":4734},"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness","Connectedness","A space is connected when it cannot be split into two nonempty open pieces. The connected subsets of $\\mathbb{R}$ are precisely the intervals, path- connectedness gives a constructive sufficient condition, and connectedness is a topological invariant preserved by continuous maps, the fact behind the intermediate value theorem.\n",{"path":4736,"title":4737,"module":3293,"summary":4738},"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions","Limits of Functions","The limit of a function at a point is an epsilon–delta condition pinning one value L as the target of f(x) as x approaches c, mirroring the sequence definition with distance replacing index. It is stated only at cluster points of the domain, is unique when it exists, and reduces to sequential limits through the Heine criterion. The algebra of limits and one-sided limits follow from that reduction.\n",{"path":4740,"title":4741,"module":3293,"summary":4742},"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions","Continuous Functions","A function is continuous at c when its limit there equals its own value, lim f(x) = f(c). The epsilon–delta and sequential forms agree; sums, products, quotients, and compositions of continuous functions are continuous; and the failures split into jump, Dirichlet, popcorn, and removable types. The topological reading is that preimages of open sets are open.\n",{"path":4744,"title":4745,"module":3293,"summary":4746},"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt","Extreme and Intermediate Value Theorems","On a closed bounded interval a continuous function attains an absolute maximum and minimum (the extreme value theorem, compactness preserved by continuity) and takes every value between its endpoint values (the intermediate value theorem, connectedness preserved). Both proofs run through Bolzano–Weierstrass and bisection, and yield root-finding, existence of k-th roots, and fixed-point theorems.\n",{"path":4748,"title":4749,"module":3293,"summary":4750},"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity","Uniform Continuity","Uniform continuity strengthens continuity by demanding one delta that works at every point of the domain, not a delta re-chosen at each point. It separates x^2 on a compact interval from x^2 on the whole line and from 1\u002Fx near zero; continuity on a closed bounded interval is automatically uniform; uniformly continuous functions preserve Cauchy sequences and extend to endpoints; and Lipschitz continuity is the strongest of the three, through its secant-slope bound.\n",{"path":4752,"title":4753,"module":3293,"summary":4754},"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces","Continuity on Metric Spaces","The epsilon–delta definition used only distances, so continuity transfers to maps between metric spaces by replacing absolute values with the two metrics. In this generality continuity still admits a sequential form, preserves compactness and connectedness, is uniform on a compact domain, and reads topologically as preimages of open sets being open, the formulation that defines homeomorphisms.\n",{"path":4756,"title":4757,"module":3293,"summary":4758},"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone","Limits at Infinity and Monotone Functions","Treating infinity as a cluster point extends the epsilon–delta limit to x approaching plus or minus infinity, giving horizontal asymptotes and infinite limits. For monotone functions the one-sided limits always exist as suprema and infima, the discontinuities are jumps and at most countably many, the continuity is equivalent to the image being an interval, and a strictly monotone function always has a continuous inverse.\n",{"path":4760,"title":4761,"module":4762,"summary":4763},"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative","The Derivative","Differentiation","The derivative is the limit of the difference quotient, the slope the secant lines approach as the second point slides into the first. Differentiability forces continuity; linearity and the product, quotient, and chain rules follow from the definition; and a continuous function can fail to be differentiable, as the absolute value does at the origin.\n",{"path":4765,"title":4766,"module":4762,"summary":4767},"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem","The Mean Value Theorem","A relative extremum in the interior forces the derivative to vanish; Rolle's theorem and the mean value theorem turn that local fact into global control. The sign of the derivative fixes monotonicity, a bounded derivative yields a Lipschitz bound, and Darboux's theorem shows derivatives have the intermediate value property even where they are discontinuous.\n",{"path":4769,"title":4770,"module":4762,"summary":4771},"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem","Taylor's Theorem","Taylor's theorem generalizes the mean value theorem: an n-times differentiable function is matched near a point by a degree-n polynomial, with a Lagrange remainder that names the error exactly through one higher derivative. Iterating the mean value theorem proves it; the second-derivative test is the order-one case; and a smooth non-analytic bump separates a Taylor series from the function it fails to represent.\n",{"path":4773,"title":4774,"module":4762,"summary":4775},"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d","The Inverse Function Theorem in One Variable","A nonzero derivative certifies a local inverse and fixes its slope. A strictly monotone differentiable function has a differentiable inverse whose derivative is the reciprocal of the original; the inverse function theorem removes the monotonicity hypothesis, and the reciprocal formula constructs nth roots and the logarithm's derivative, failing exactly where the derivative vanishes.\n",{"path":4777,"title":4778,"module":4779,"summary":4780},"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral","Partitions, Darboux Sums, and Integrability","The Riemann Integral","The Riemann integral is defined by trapping the area under a bounded function between under- and over-estimates. Partitions cut the domain into strips; lower and upper Darboux sums bracket the area; refining a partition tightens the bracket. A function is integrable exactly when the bracket can be made arbitrarily thin, and the tagged Riemann-sum limit gives the same number.\n",{"path":4782,"title":4783,"module":4779,"summary":4784},"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes","Which Functions Are Integrable","The Cauchy criterion certifies whole classes of functions as integrable. Continuous functions are integrable because uniform continuity makes every oscillation cap small; monotone functions are integrable because their caps telescope to a single total jump; bounded functions with finitely many discontinuities are integrable by isolating the bad points. The Dirichlet function fails, and the Lebesgue criterion names the exact boundary.\n",{"path":4786,"title":4787,"module":4779,"summary":4788},"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral","Properties of the Integral","The integral is a linear, order-preserving, additive operator on the integrable functions. It splits across subintervals, respects inequalities, bounds the size of a function by the integral of its absolute value, and preserves products. The mean value theorem for integrals identifies the integral with an attained average height on a fixed rectangle.\n",{"path":4790,"title":3348,"module":4779,"summary":4791},"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem","The fundamental theorem ties the integral to the derivative in two forms. The evaluation form computes a definite integral from any antiderivative; the differentiation form shows the area function has derivative equal to the integrand at points of continuity. Together they make differentiation and integration inverse operations, and yield integration by parts and change of variables.\n",{"path":4793,"title":4794,"module":4779,"summary":4795},"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper","The Logarithm, Exponential, and Improper Integrals","The integral defines transcendental functions. The logarithm is the area under 1\u002Ft, the exponential is its inverse, and their calculus properties follow from the fundamental theorem. Improper integrals extend integration to unbounded intervals and unbounded integrands as limits of proper integrals, with a p-test, a comparison test, absolute versus conditional convergence, and the integral test linking integrals to series.\n",{"path":4797,"title":4798,"module":4799,"summary":4800},"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence","Pointwise and Uniform Convergence","Sequences and Series of Functions","A sequence of functions has two natural notions of limit. Pointwise convergence fixes each input and takes the limit of numbers; uniform convergence demands one rate that works for every input at once. The uniform norm turns the second into a statement about a single sequence of numbers, and the uniform Cauchy criterion and the Weierstrass M-test let us certify it.\n",{"path":4802,"title":4803,"module":4799,"summary":4804},"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits","Interchange of Limits: Continuity, Integration, Differentiation","Passing to a limit inside a continuity statement, an integral, or a derivative is an interchange of two limits, and the two limits do not always commute. Uniform convergence licenses the first two swaps: the uniform limit of continuous functions is continuous, and the limit of the integrals is the integral of the limit. Differentiation needs uniform convergence of the derivatives, and counterexamples show why each hypothesis is required.\n",{"path":4806,"title":4807,"module":4799,"summary":4808},"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass","Power Series and the Weierstrass Approximation Theorem","A power series converges uniformly on every closed subinterval inside its radius of convergence, together with all of its derivatives. That makes it continuous, differentiable, and integrable term by term, so a power series defines an infinitely differentiable function. The Weierstrass approximation theorem then shows that polynomials come uniformly close to any continuous function on a closed bounded interval.\n",{"path":4810,"title":4811,"module":4799,"summary":4812},"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode","Picard's Existence and Uniqueness Theorem","The Banach fixed-point theorem says a contraction of a complete metric space has exactly one fixed point, found by iterating from any start. Applied to the space of continuous functions with the uniform norm, it proves Picard's theorem: a first-order differential equation with a Lipschitz right-hand side has a unique local solution. Picard iteration constructs that solution explicitly, and worked examples show the Lipschitz condition is not optional.\n",{"path":4814,"title":4815,"module":4816,"summary":4817},"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn","The Derivative of a Map ℝⁿ → ℝᵐ","Functions of Several Variables (Introduction)","The derivative of a map between Euclidean spaces is the linear transformation of vanishing relative error, unique when it exists and represented in coordinates by the Jacobian matrix of partial derivatives. Differentiability forces continuity through a local Lipschitz bound. Existence of the partial derivatives alone does not suffice; continuity of the partials does.\n",{"path":4819,"title":4820,"module":4816,"summary":4821},"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule","Directional Derivatives, the Gradient, and the Chain Rule","The directional derivative measures the rate of change of a scalar field along a chosen heading and equals the derivative applied to that direction. The gradient collects these into a vector that points along steepest ascent and sits orthogonal to level sets. The chain rule composes derivatives by multiplying Jacobians, and a mean value theorem holds for scalar fields but fails for vector-valued maps.\n",{"path":4823,"title":4824,"module":4816,"summary":4825},"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema","Higher Derivatives, Taylor's Theorem, and Extrema","Iterating the derivative gives a symmetric second derivative, the Hessian, whose mixed partials agree when they are continuous. Taylor's theorem expands a smooth map to any order with a Lagrange-type remainder, and at a critical point the definiteness of the Hessian decides between a local minimum, a local maximum, and a saddle.\n",{"path":4827,"title":4828,"module":4816,"summary":4829},"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems","The Inverse and Implicit Function Theorems","A nonlinear map with a nonsingular Jacobian is locally invertible, with the inverse's derivative given by the inverse matrix. The contraction mapping principle supplies the local inverse; the implicit function theorem then solves a system for some variables in terms of the rest whenever the relevant Jacobian block is invertible. Worked coordinate changes show both theorems in use.\n",{"path":4831,"title":4832,"module":4816,"summary":4833},"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals","Multiple Integrals","The Riemann integral of a bounded function over a closed rectangle in Euclidean space is built from Darboux upper and lower sums on a grid of subrectangles, with the same squeeze criterion that governs the one-variable integral. Continuous integrands are integrable, and a set of content zero can be ignored. Fubini's theorem evaluates a multiple integral as an iterated one in either order, and the indicator trick extends the theory to regions bounded by curves.\n",{"path":4835,"title":4836,"module":306,"summary":306},"\u002Freal-analysis","Real Analysis",{"path":4838,"title":4839,"module":5,"summary":4840},"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations","Sets, Functions, and Equivalence Relations","Algebra is built on three prior notions: the set, the map between sets, and the equivalence relation that reorganizes a set into disjoint classes. Sets, maps (injective, surjective, bijective), fibers and preimages, and the correspondence between equivalence relations and partitions — the one structural fact reused in every later quotient construction.\n",{"path":4842,"title":4843,"module":5,"summary":4844},"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic","The Integers and Modular Arithmetic","The integers carry the template every ring later imitates: well-ordering drives induction, induction drives the division algorithm, and division drives the Euclidean algorithm, gcd, Bézout's identity, and unique factorization into primes. Quotienting by congruence mod n builds the first finite arithmetic, Z\u002FnZ, whose invertible elements form the group of units.\n",{"path":4846,"title":4847,"module":4848,"summary":4849},"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples","Group Axioms and First Examples","Groups and Symmetry","A group is a set with one associative operation that has an identity and inverses. We state the axioms, prove that the identity, inverses, and cancellation behave as expected, define the order of a group and of an element, and catalogue the running examples: the integers, the additive group of residues mod n, and the multiplicative group of units mod n.\n",{"path":4851,"title":4852,"module":4848,"summary":4853},"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups","Dihedral and Symmetric Groups","The dihedral group D_{2n} is the symmetries of a regular n-gon, generated by a rotation r and a reflection s subject to three relations. The symmetric group S_n is all permutations of n objects, written in cycle notation. Orders, generators and relations, cycle decomposition, the order of a permutation from its cycle type, and the parity that splits S_n in half.\n",{"path":4855,"title":4856,"module":4848,"summary":4857},"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups","Matrix and Quaternion Groups","Invertible matrices over a field form the general linear group GL_n(F), with the determinant-one matrices as the subgroup SL_n(F). Over a finite field the order of GL_n(F) has a clean product formula. The quaternion group Q_8 is a second small nonabelian group, distinct from the dihedral group of the same order; its multiplication and subgroup structure sharpen the contrast between the two.\n",{"path":4859,"title":4860,"module":4848,"summary":4861},"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions","Homomorphisms, Isomorphisms, and Actions","A homomorphism is a map between groups that respects the operation; an isomorphism is a bijective one, making two groups the same up to relabeling. The kernel and image measure how far a homomorphism is from injective and surjective. A group action realizes a group as permutations of a set, and actions correspond exactly to homomorphisms into a symmetric group, with orbits and stabilizers as the first tools for counting.\n",{"path":4863,"title":4864,"module":4865,"summary":4866},"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures","Subgroups and Their Substructures","Subgroups and Quotients","A subgroup is a subset that is a group under the inherited operation. One test decides it: nonempty and closed under the map $(x,y) \\mapsto xy^{-1}$. From an arbitrary subset $A$ we build the centralizer, normalizer, and center, and from an action the stabilizer and kernel, all of them subgroups nested in a fixed chain inside $G$.\n",{"path":4868,"title":4869,"module":4865,"summary":4870},"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups","Cyclic Groups","A cyclic group is generated by one element. Two facts organize the whole theory: the order of an element equals the order of the subgroup it generates, and cyclic groups of equal order are isomorphic, so $\\mathbb{Z}$ and $\\mathbb{Z}\u002Fn\\mathbb{Z}$ are the only ones. From there the generators ($\\varphi(n)$ of them), the subgroups (one per divisor of $n$), and a fast exponentiation algorithm all follow.\n",{"path":4872,"title":4873,"module":4865,"summary":4874},"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices","Generation and the Lattice of Subgroups","The subgroup generated by a subset $A$ is the smallest subgroup containing it, described top-down as an intersection and bottom-up as the set of words in $A$ and its inverses. Collecting all subgroups and ordering them by containment produces the subgroup lattice, whose Hasse diagram shows the joins, meets, and containment relations among all subgroups.\n",{"path":4876,"title":4877,"module":4865,"summary":4878},"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups","Cosets, Lagrange, and Normal Subgroups","The left cosets of a subgroup partition a group into equal-sized blocks, so the order of a subgroup divides the order of the group: Lagrange's theorem. When the blocks can be multiplied consistently — exactly when the subgroup is normal — they form the quotient group $G\u002FN$. Fermat's and Euler's theorems fall out as index computations.\n",{"path":4880,"title":4881,"module":4865,"summary":4882},"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems","The Isomorphism Theorems","Four theorems relate homomorphisms, quotients, and subgroup lattices. The first identifies the image of a homomorphism with the quotient by its kernel; the second and third compute quotients built from two subgroups and quotients of quotients; the fourth matches the subgroups of $G\u002FN$ with the subgroups of $G$ lying above $N$. Together they make quotient groups computable.\n",{"path":4884,"title":4885,"module":4865,"summary":4886},"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group","Composition Series and the Alternating Group","A composition series breaks a finite group into simple quotient factors, and Jordan-Hölder says those factors are unique up to order. This turns classification into two problems: list the simple groups, and describe how to reassemble them. The sign homomorphism splits $S_n$ into even and odd permutations, defining the alternating group $A_n$, simple for $n \\ge 5$.\n",{"path":4888,"title":4889,"module":4890,"summary":4891},"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem","Actions, Orbits, and Cayley's Theorem","Group Actions and Sylow Theory","A group action turns abstract elements into permutations of a set. The action splits the set into orbits, and the orbit-stabilizer theorem ties each orbit's size to the index of a stabilizer. Applied to a group acting on itself by left multiplication, this gives Cayley's theorem: every group is a group of permutations.\n",{"path":4893,"title":4894,"module":4890,"summary":4895},"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation","Conjugation and the Class Equation","A group acts on itself by conjugation, and the orbits are the conjugacy classes. Orbit-stabilizer turns the resulting partition into the class equation, which forces every group of prime-power order to have a nontrivial center. Conjugacy in the symmetric group is cycle type, and Burnside's lemma counts orbits by averaging fixed points.\n",{"path":4897,"title":4898,"module":4890,"summary":4899},"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems","The Sylow Theorems","Lagrange's theorem forbids subgroups whose order fails to divide the group order; Sylow's theorems supply a partial converse for prime powers. A Sylow p-subgroup always exists, all of them are conjugate, and their count satisfies two congruence-and-divisibility constraints tight enough to prove many groups non-simple from their order alone.\n",{"path":4901,"title":4902,"module":4890,"summary":4903},"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups","Automorphisms and Simplicity of Aₙ","Conjugation makes a group act on itself and on its normal subgroups by automorphisms, giving the inner automorphism group G\u002FZ(G) and the embedding of N(H)\u002FC(H) into Aut(H). Characteristic subgroups are those every automorphism fixes, and the automorphism group of a cyclic group is its unit group. The lesson closes by proving the alternating group Aₙ is simple for n ≥ 5.\n",{"path":4905,"title":4906,"module":4907,"summary":4908},"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups","Direct Products and Finite Abelian Groups","Products and Group Structure","The direct product assembles a larger group from componentwise copies of smaller ones, and a recognition theorem reverses the process when two normal subgroups meet trivially and span the group. The Fundamental Theorem of Finitely Generated Abelian Groups then classifies every such group by two equivalent invariants, invariant factors and elementary divisors.\n",{"path":4910,"title":4911,"module":4907,"summary":4912},"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products","Semidirect Products","The semidirect product relaxes the direct product by requiring only one factor to be normal, with the other acting on it through a homomorphism into its automorphism group. This single twisting map lets abelian pieces assemble into non-abelian groups, realizes the dihedral groups as $\\mathbb{Z}_n \\rtimes \\mathbb{Z}_2$, and, with a recognition theorem, classifies groups of several small orders.\n",{"path":4914,"title":4915,"module":4907,"summary":4916},"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups","p-Groups, Nilpotent, and Solvable Groups","Finite p-groups have nontrivial center, and iterating the center upward builds the nilpotent groups, which decompose as the direct product of their Sylow subgroups. Iterating the commutator downward builds the solvable groups, whose factors are abelian. The chain cyclic, abelian, nilpotent, solvable orders these classes, and A_5 breaks the last link.\n",{"path":4918,"title":4919,"module":4907,"summary":4920},"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups","Classifying Groups of Small Order","With Sylow's theorem to force normal subgroups, direct and semidirect products to assemble them, and presentations to name the result, every group up to order fifteen can be listed explicitly. Free groups make presentations precise: generators with no relations, from which any group is a quotient by the normal closure of its relations.\n",{"path":4922,"title":4923,"module":4924,"summary":4925},"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples","Rings: Definitions and Examples","Ring Theory","A ring carries two operations: an abelian group under addition and an associative multiplication linked by the distributive laws. The named special cases — commutative rings, integral domains, division rings, and fields — differ only in how their multiplication behaves. Standard examples include quadratic integer rings, polynomial rings, matrix rings, and group rings.\n",{"path":4927,"title":4928,"module":4924,"summary":4929},"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms","Ideals, Quotient Rings, and Homomorphisms","Ring homomorphisms have kernels that absorb multiplication; such subsets are ideals, and every ideal is the kernel of the projection onto a quotient ring. The quotient construction yields the ring isomorphism theorems and classifies ideals by their quotients: R\u002FI is a field exactly when I is maximal, an integral domain exactly when I is prime.\n",{"path":4931,"title":4932,"module":4924,"summary":4933},"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem","Fields of Fractions and the CRT","Rings of fractions invert a multiplicatively closed set, enlarging an integral domain into its field of fractions the way Z becomes Q. The Chinese Remainder Theorem splits a quotient by comaximal ideals into a direct product, generalizing Z\u002FmnZ ≅ Z\u002FmZ × Z\u002FnZ and explaining why the Euler function is multiplicative.\n",{"path":4935,"title":4936,"module":4937,"summary":4938},"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds","Euclidean Domains, PIDs, and UFDs","Factorization and Polynomial Rings","Three classes of integral domain, ordered by how much of elementary arithmetic survives: Euclidean domains carry a division algorithm, principal ideal domains make every ideal a single multiple, and unique factorization domains factor every element into irreducibles in one way. We prove the chain ED implies PID implies UFD, the classes are separated by explicit counterexamples, and irreducible and prime coincide exactly in a UFD.\n",{"path":4940,"title":4941,"module":4937,"summary":4942},"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields","Polynomial Rings over Fields","When the coefficients form a field, polynomial long division works exactly as it does over the rationals, and it works with a unique quotient and remainder. That single fact makes F[x] a Euclidean domain, hence a PID and a UFD: every ideal is the multiples of one polynomial, roots correspond to linear factors, and F[x]\u002F(f) is a field precisely when f is irreducible.\n",{"path":4944,"title":4945,"module":4937,"summary":4946},"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization","Gauss's Lemma and Unique Factorization","A UFD is not a field, so its polynomial ring is not a PID — yet unique factorization survives the passage from R to R[x]. Gauss's lemma supplies the passage: a polynomial that factors over the fraction field already factors over R, once content is factored out. This gives the theorem that R[x] is a UFD whenever R is, so Z[x] and Q[x,y] factor uniquely even though neither is a PID.\n",{"path":4948,"title":4949,"module":4937,"summary":4950},"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner","Irreducibility Criteria and Gröbner Bases","Deciding whether a given polynomial is irreducible, and computing in multivariate polynomial rings. In one variable: the rational root test, reduction modulo a prime, and Eisenstein's criterion. In several variables, where division fails, a monomial order gives leading terms, a Gröbner basis restores a well-defined remainder, and Buchberger's algorithm computes it.\n",{"path":4952,"title":4953,"module":4954,"summary":4955},"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules","Introduction to Modules","Module Theory","A module is an abelian group on which a ring acts, generalizing both vector spaces (when the ring is a field) and abelian groups (when the ring is the integers). Submodules, homomorphisms, quotients, and the isomorphism theorems carry over from groups, and an F[x]-module is the same datum as a vector space with a chosen linear operator — the correspondence behind the canonical forms.\n",{"path":4957,"title":4958,"module":4954,"summary":4959},"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums","Generation, Direct Sums, and Free Modules","A generating set spans a module by R-linear combinations; a direct sum decomposes it into independent pieces; a free module has a basis and the universal property that a homomorphism is determined by arbitrary values on that basis. Rank is well defined over a commutative ring, torsion blocks a basis, and every module is a quotient of a free one — a presentation by generators and relations.\n",{"path":4961,"title":4962,"module":4954,"summary":4963},"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences","Tensor Products and Exact Sequences","The tensor product builds a module in which elements of two modules can be multiplied, characterized by a universal property turning bilinear maps into linear ones; extension of scalars is its guiding case. Exact sequences track how a module is assembled from a submodule and a quotient, when that assembly splits, and which modules — projective, injective, flat — make the Hom and tensor functors preserve exactness.\n",{"path":4965,"title":4966,"module":4954,"summary":4967},"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps","Vector Spaces and Linear Maps","A vector space is a module over a field, and the field hypothesis removes every pathology a general module can have: every vector space is free, so it has a basis, a well-defined dimension, and a coordinate isomorphism with F^n. Linear maps become matrices, change of basis becomes similarity, every space pairs with a dual of the same dimension, and the determinant is the unique alternating multilinear normalized form.\n",{"path":4969,"title":4970,"module":4971,"summary":4972},"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids","The Structure Theorem for Modules over a PID","Modules over PIDs and Canonical Forms","Every finitely generated module over a principal ideal domain splits as a free part plus a direct sum of cyclic torsion pieces, in two canonical ways: invariant factors, tied together by a divisibility chain, and elementary divisors, one prime power at a time. Existence follows from the stacked-basis theorem, both lists are unique, and the case $R = \\mathbb{Z}$ is the classification of finitely generated abelian groups.\n",{"path":4974,"title":4975,"module":4971,"summary":4976},"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form","Rational Canonical Form","A linear operator turns its vector space into a module over the polynomial ring $F[x]$, with $x$ acting as the operator. The structure theorem's invariant factors then become polynomials, each cyclic summand becomes a companion matrix, and the block-diagonal assembly is the rational canonical form. It is unique, it is computed inside the base field, and two matrices are similar exactly when their rational canonical forms agree.\n",{"path":4978,"title":4979,"module":4971,"summary":4980},"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form","Jordan Canonical Form","When the base field contains all the eigenvalues, the elementary divisors of an operator are powers of linear polynomials, and each cyclic summand becomes a Jordan block: an eigenvalue on the diagonal with ones just above it. Stacking the blocks gives the Jordan canonical form, unique up to reordering, as close to diagonal as the operator allows. Diagonalizability reads off the minimal polynomial, and the block sizes are counted by ranks of powers of the operator minus the eigenvalue.\n",{"path":4982,"title":4983,"module":4984,"summary":4985},"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements","Field Extensions and Algebraic Elements","Field Theory","A field extension makes a larger field K into a vector space over a smaller field F, and its degree [K:F] is that dimension. Adjoining a root of an irreducible polynomial builds a simple extension F(α) isomorphic to F[x]\u002F(m), whose degree is the degree of the minimal polynomial. The tower law makes these degrees multiply, which turns algebra over fields into bookkeeping with integers.\n",{"path":4987,"title":4988,"module":4984,"summary":4989},"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions","Straightedge-and-Compass Constructions","The lengths a straightedge and compass can build from a unit form a field closed under square roots, and every constructible number lies in a tower of quadratic extensions. So its degree over the rationals is a power of two. That single obstruction settles three problems the Greeks left open: doubling the cube, trisecting a general angle, and squaring the circle are all impossible.\n",{"path":4991,"title":4992,"module":4984,"summary":4993},"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure","Splitting Fields and Algebraic Closure","The splitting field of a polynomial is the smallest extension in which it factors into linear pieces, obtained by adjoining all its roots. Every polynomial has one, its degree is at most n factorial, and any two splitting fields are isomorphic. Pushing this to all polynomials at once gives the algebraic closure, a field in which every polynomial splits and which is unique up to isomorphism.\n",{"path":4995,"title":4996,"module":4984,"summary":4997},"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions","Separable Extensions and Cyclotomic Fields","A polynomial is separable when its roots are distinct, detected by whether it shares a factor with its formal derivative. Over perfect fields — characteristic zero and finite fields — every irreducible is separable, and the existence and uniqueness of the finite fields follow. Cyclotomic polynomials package the roots of unity by order, are irreducible over the rationals, and give the cyclotomic field its degree phi(n).\n",{"path":4999,"title":5000,"module":5001,"summary":5002},"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence","The Galois Correspondence","Galois Theory","Galois theory attaches to a field extension its group of symmetries and shows that, for the right extensions, the subgroups of that group are in exact order-reversing correspondence with the intermediate fields. The automorphism group, Artin's theorem, the characterization of Galois extensions, and the Fundamental Theorem together turn questions about fields into questions about finite groups.\n",{"path":5004,"title":5005,"module":5001,"summary":5006},"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields","Finite Fields","Every finite field has prime-power order, is the splitting field of $x^{p^n} - x$, and is unique up to isomorphism. Its extension over the prime field is Galois with cyclic group generated by the Frobenius map $x \\mapsto x^p$, so the Galois correspondence reduces the subfield lattice to the divisor lattice of $n$. Möbius inversion counts the irreducible polynomials of each degree, and cyclic error-correcting codes are one application.\n",{"path":5008,"title":5009,"module":5001,"summary":5010},"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions","Cyclotomic and Abelian Extensions","The Galois group of the $n$th cyclotomic field over $\\mathbb{Q}$ is the unit group $(\\mathbb{Z}\u002Fn\\mathbb{Z})^\\times$, which makes cyclotomic fields the worked catalogue of abelian extensions of $\\mathbb{Q}$. The isomorphism identifies subfields with subgroups, realizes every finite abelian group as a Galois group over $\\mathbb{Q}$, and leads to Kronecker–Weber. Composites of Galois extensions and the primitive element theorem supply the machinery.\n",{"path":5012,"title":5013,"module":5001,"summary":5014},"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials","Galois Groups of Polynomials","Ordering the roots of a separable polynomial embeds its Galois group in the symmetric group $S_n$, and the group is transitive exactly when the polynomial is irreducible. The discriminant decides membership in $A_n$; for cubics and quartics the resolvent cubic pins the group down; and reduction modulo a prime produces elements of prescribed cycle type, the standard tool for computing Galois groups over $\\mathbb{Q}$.\n",{"path":5016,"title":5017,"module":5001,"summary":5018},"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic","Solvability by Radicals and the Quintic","A polynomial is solvable by radicals exactly when its Galois group is solvable. Cyclic extensions are radical extensions once roots of unity are present, which turns a radical tower into a solvable subnormal series. Since $S_n$ is solvable only for $n \\le 4$, the general quintic has no radical formula, and an explicit quintic with Galois group $S_5$ has roots provably not expressible in radicals.\n",{"path":5020,"title":5021,"module":5022,"summary":5023},"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry","A Glimpse of Commutative Algebra and Algebraic Geometry","Capstone: Where Algebra Goes Next","Commutative algebra reads geometry off the ring of polynomial functions. The dictionary runs through Noetherian rings and the ascending chain condition, Hilbert's Basis Theorem, affine algebraic sets and the two maps connecting ideals to zero sets, radicals, the Zariski topology, and Hilbert's Nullstellensatz, which over an algebraically closed field makes radical ideals and algebraic sets the same object.\n",{"path":5025,"title":5026,"module":5022,"summary":5027},"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory","A Glimpse of Representation and Character Theory","Representation theory studies a group by the ways it can act linearly on a vector space. Representations are equivalent to modules over the group ring; Maschke's theorem gives complete reducibility, the Wedderburn consequences bound the irreducible degrees, and character theory reduces a representation to a trace invariant governed by the orthogonality relations and displayed in the character table of a small group.\n",{"path":5029,"title":5030,"module":306,"summary":306},"\u002Fabstract-algebra","Abstract Algebra",{"path":5032,"title":5033,"module":5034,"summary":5035},"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford","Atomic Spectra and Rutherford's Nucleus","Early Atomic Models and the Old Quantum Theory","Atoms emit light only at sharp, reproducible wavelengths, and by 1890 those wavelengths were captured by the Rydberg-Ritz formula. Neither empirical regularity had a mechanical explanation. Rutherford's alpha-scattering experiment supplied the missing structure: the atom's positive charge and nearly all its mass sit in a tiny central nucleus, with the electrons far outside.\n",{"path":5037,"title":5038,"module":5034,"summary":5039},"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen","The Bohr Model of Hydrogen","Bohr grafted three quantum postulates onto Rutherford's nuclear atom: certain orbits do not radiate, radiation accompanies a jump between them, and quantization must match classical physics for large orbits. Quantizing the angular momentum fixes the orbit radii and energies, reproduces the Rydberg-Ritz formula, and predicts the Rydberg constant from fundamental constants alone.\n",{"path":5041,"title":5042,"module":5034,"summary":5043},"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz","X-Ray Spectra and the Franck-Hertz Experiment","Two 1913-14 experiments confirmed the Bohr-Rutherford atom independently of optical spectra. Moseley found that the square root of a characteristic X-ray frequency is linear in atomic number, fixing Z as nuclear charge and ordering the periodic table. Franck and Hertz measured discrete atomic energy levels directly by scattering electrons through a mercury vapor.\n",{"path":5045,"title":5046,"module":5034,"summary":5047},"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory","The Bohr-Sommerfeld Old Quantum Theory","Bohr fixed the hydrogen levels with a single quantum number by quantizing angular momentum. Sommerfeld replaced that ad hoc rule with a general prescription: quantize the action of each separable coordinate. The rule produces elliptical orbits, a second (azimuthal) quantum number, space quantization, and — once the relativistic mass variation is included — a fine-structure splitting that matches experiment to order alpha squared.\n",{"path":5049,"title":5050,"module":5034,"summary":5051},"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb","Limits of the Old Quantum Theory and the WKB Bridge","The old quantum theory works only where the classical motion is separable into independent periodic coordinates. It fails for helium, forbids the correct zero angular momentum of the hydrogen ground state, and misses the half-integer in the oscillator and in molecular spectra. The WKB quantization condition, derived from the Schrodinger equation, is the modern descendant of the Sommerfeld rule and repairs the half-integer through the Maslov correction.\n",{"path":5053,"title":5054,"module":5055,"summary":5056},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen","The Schrödinger Equation in Three Dimensions and Hydrogen","The Quantum Hydrogen Atom","Extending the Schrödinger equation to three dimensions and separating it in spherical coordinates produces three ordinary differential equations, one per coordinate. Their boundary conditions generate the quantum numbers n, ℓ, and mℓ, quantize the angular momentum to √(ℓ(ℓ+1))ℏ with projections mℏ, and fix the bound-state energies of hydrogen at −Z²(13.6 eV)\u002Fn².\n",{"path":5058,"title":5059,"module":5055,"summary":5060},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions","Hydrogen Wave Functions and Orbitals","The hydrogen wave functions factor into a radial part Rₙℓ(r) and an angular spherical harmonic Yℓm(θ,φ). Squaring gives the probability cloud; the radial distribution P(r) = r²|ψ|² peaks at the Bohr radius for the ground state and at the Bohr orbits for excited states. The angular part fixes the s, p, and d orbital shapes that govern chemical bonding.\n",{"path":5062,"title":5063,"module":5055,"summary":5064},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full","Solving the Radial Equation in Full","The hydrogen radial equation is solved from the differential equation up. The substitution u = rR turns it into a one-dimensional problem with a centrifugal barrier; matching the asymptotic behaviour at the origin and at infinity peels off the factors r^(ℓ+1) and e^(−r\u002Fna₀); a Frobenius series for the remainder must terminate, and that termination condition yields the quantization n ≥ ℓ+1 with E = −Z²Ry\u002Fn². The surviving polynomials are the associated Laguerre functions, whose degree n−ℓ−1 counts the radial nodes.\n",{"path":5066,"title":5067,"module":5055,"summary":5068},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz","Accidental Degeneracy and the Runge-Lenz Symmetry","Hydrogen energies depend only on n, so states of different ℓ at the same n are degenerate. This is not a coincidence but the mark of a hidden symmetry: the quantum Runge-Lenz vector is conserved for the 1\u002Fr potential alone, and together with angular momentum it generates the group SO(4). The Casimir invariant of that group reproduces E = −Z²Ry\u002Fn² and its representations count the n² states. Any departure from 1\u002Fr breaks the symmetry and lifts the ℓ-degeneracy.\n",{"path":5070,"title":5071,"module":5055,"summary":5072},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial","Expectation Values, the Virial Theorem, and Scaling","The radial matrix elements ⟨r^k⟩ of hydrogenic states are the raw material of every later correction. This lesson derives ⟨1\u002Fr⟩ from the virial theorem, builds the full family ⟨r⟩, ⟨r²⟩, ⟨1\u002Fr²⟩, ⟨1\u002Fr³⟩ from Kramers' recursion and the Feynman-Hellmann theorem, and reads off their scaling with n, ℓ, and Z. The virial balance ⟨T⟩ = −½⟨V⟩ = −E fixes the energy budget of every bound state.\n",{"path":5074,"title":5075,"module":5055,"summary":5076},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra","Quantum Defects and Alkali Spectra","An alkali atom is one valence electron outside a closed-shell core, and to a good approximation it is hydrogen with a modified quantum number. Core penetration makes low-ℓ states more bound than the Coulomb formula predicts, and the shortfall is captured by a single number per ℓ, the quantum defect δℓ. The spectrum then follows the Rydberg formula with n replaced by the effective n − δℓ, and the sodium D-line doublet is the worked case.\n",{"path":5078,"title":5079,"module":5055,"summary":5080},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms","Rydberg Atoms","A Rydberg atom is an atom excited to a very high principal quantum number, and every hydrogenic property becomes exaggerated by a power of n. Size grows as n², binding falls as n⁻², radiative lifetime lengthens as n³, and the static polarizability explodes as n⁷. The levels crowd toward the ionization limit, and the enormous dipole interaction between two Rydberg atoms produces the blockade that underlies neutral-atom quantum computing.\n",{"path":5082,"title":5083,"module":5084,"summary":5085},"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction","The Relativistic Kinetic-Energy Correction","Fine Structure and the Dirac Atom","The Bohr energies treat the electron as slowly moving, but its speed is of order αc, so the kinetic energy needs a relativistic correction. Expanding √(p²c²+m²c⁴) to order (v\u002Fc)² produces the perturbation −p⁴\u002F8m³c², whose first-order shift on a hydrogenic state is evaluated with the trick p²=2m(E−V). The result depends on n and ℓ, is smaller than the gross structure by α²≈5×10⁻⁵, and is one of the three pieces that combine into the fine-structure formula.\n",{"path":5087,"title":5088,"module":5084,"summary":5089},"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession","Spin-Orbit Coupling and Thomas Precession","In the electron's rest frame the nucleus orbits it, and the resulting current produces a magnetic field that couples to the electron's spin moment. The interaction is ξ(r) L·S, with ξ built from the Coulomb potential and the radial expectation ⟨1\u002Fr³⟩. A relativistic subtlety, Thomas precession, halves the naive coefficient because the electron's rest frame is accelerating. The result splits each ℓ≥1 level into a j=ℓ±½ doublet and makes (n, ℓ, j, mⱼ) the good quantum numbers.\n",{"path":5091,"title":5092,"module":5084,"summary":5093},"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula","The Darwin Term and the Fine-Structure Formula","The third fine-structure correction, the Darwin term, is a contact interaction proportional to ∇²V that acts only on s-states, physically a smearing of the electron over a Compton wavelength. Adding the relativistic, spin-orbit, and Darwin shifts, the ℓ-dependence cancels and the total collapses to a formula in n and j alone. The n=2 shell splits into 2S₁\u002F₂, 2P₁\u002F₂, 2P₃\u002F₂, with the two j=½ levels exactly degenerate, a coincidence the Dirac theory explains.\n",{"path":5095,"title":5096,"module":5084,"summary":5097},"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen","The Dirac Equation for Hydrogen","The fine-structure formula was assembled from three perturbations; the Dirac equation produces it in one stroke and exactly. A first-order relativistic wave equation forces a four-component spinor, from which spin s=½, the g-factor of 2, the spin-orbit term, and antiparticles all emerge automatically. Its exact Coulomb spectrum depends only on n and j, and expanding in Zα reproduces the perturbative result, including the 2S₁\u002F₂–2P₁\u002F₂ degeneracy that sets up the Lamb shift.\n",{"path":5099,"title":5100,"module":5101,"summary":5102},"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed","The Lamb Shift and QED Radiative Corrections","QED Corrections and Hyperfine Structure","The Dirac equation makes the 2S₁\u002F₂ and 2P₁\u002F₂ levels of hydrogen exactly degenerate. Lamb and Retherford measured a splitting of about 1058 MHz that the Dirac theory cannot produce. The gap comes from the electron's coupling to the quantized electromagnetic field: self-energy, vacuum polarization, and the anomalous magnetic moment. Welton's vacuum-fluctuation estimate reproduces the size and shows why the effect lands almost entirely on s-states, and the same radiative corrections make hydrogen the most stringent test of QED.\n",{"path":5104,"title":5105,"module":5101,"summary":5106},"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm","Hyperfine Structure and the 21 cm Line","The proton carries a magnetic moment, and it interacts with the magnetic field the electron produces at the nucleus. For s-states that interaction is the Fermi contact term, proportional to the electron density at the origin and to the dot product of the nuclear and electronic spins. Coupling I and J into F = I + J splits each level by a Landé interval rule; in hydrogen's ground state it produces the F = 0\u002FF = 1 doublet whose 1420 MHz, 21 cm transition maps neutral hydrogen across the galaxy.\n",{"path":5108,"title":5109,"module":5101,"summary":5110},"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift","Nuclear Size, Moments, and Isotope Shifts","A real nucleus has a finite size, a mass that changes between isotopes, and, when its spin is at least one, an electric quadrupole moment. Each leaves a fingerprint in the atomic spectrum: the volume shift from s-electrons sampling the charge distribution, the mass and field isotope shifts that separate on a King plot, the quadrupole interaction that breaks the Landé interval rule, and the hyperfine anomaly from the magnetization distribution. Atomic spectroscopy reads nuclear properties out of these shifts.\n",{"path":5112,"title":5113,"module":5114,"summary":5115},"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra","The Periodic Table and Atomic Spectra","Many-Electron Atoms","Identical electrons demand antisymmetric wave functions, which is the Pauli exclusion principle: no two electrons share all four quantum numbers. Filling shells in order of increasing energy — shifted by penetration and shielding — builds the periodic table and its recurring ionization pattern. Selection rules govern optical spectra, and an external field splits lines by the Zeeman effect.\n",{"path":5117,"title":5118,"module":5114,"summary":5119},"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent","The Central-Field Approximation and the Self-Consistent Field","The N-electron Hamiltonian does not separate because every pair of electrons repels. The central-field approximation replaces that pairwise repulsion with an averaged spherical potential each electron feels, restoring hydrogen-like orbitals labelled by n and ℓ. The Thomas-Fermi statistical model fixes the shape of the screened charge from Fermi-gas thermodynamics; the Hartree self-consistent field determines it exactly by iterating orbitals against the potential they generate until the two agree.\n",{"path":5121,"title":5122,"module":5114,"summary":5123},"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock","Exchange, Slater Determinants, and Hartree-Fock","A product wave function ignores that electrons are identical fermions. Enforcing antisymmetry writes the state as a Slater determinant, which vanishes whenever two electrons share a spin-orbital — the exclusion principle made algebraic. The energy of a determinant carries a new term with no classical analogue, the exchange integral, nonzero only for parallel spins; it lowers the energy of aligned electrons and carves a Fermi hole around each one. Adding the exchange operator to the mean field gives the Hartree-Fock equations, and what they still miss defines the correlation energy.\n",{"path":5125,"title":5126,"module":5114,"summary":5127},"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom","Helium: the Prototype Two-Electron Atom","Helium is the smallest atom the Schrödinger equation cannot solve exactly, and the smallest that shows every many-electron effect. Ignoring the electron repulsion overbinds the ground state by 30 eV; first-order perturbation theory and a one-parameter variational calculation with an effective charge close most of the gap. The excited configurations split into para (singlet) and ortho (triplet) states separated by the exchange integral, with the triplet lower — and the absence of a 1s² triplet is the Pauli principle in its plainest form.\n",{"path":5129,"title":5130,"module":5114,"summary":5131},"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols","LS and jj Coupling; Term Symbols","A configuration is not a single energy level. The residual electrostatic repulsion and the spin-orbit interaction split it, and which one dominates fixes the coupling scheme. In light atoms the electrostatic term wins: orbital and spin angular momenta couple separately into L and S, then into J, giving Russell- Saunders term symbols. In heavy atoms spin-orbit wins and each electron's j forms first. The Pauli principle prunes the allowed terms of equivalent electrons, the Landé interval rule spaces the fine-structure multiplet, and the scheme crosses over from LS to jj down a column.\n",{"path":5133,"title":5134,"module":5114,"summary":5135},"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms","Hund's Rules and Ground-State Terms","A configuration allows several terms; Hund's three rules pick the ground one. Maximize the spin S first, then the orbital L, then set J to |L−S| for a less-than-half shell and L+S for a more-than-half shell. The first two rules come from exchange lowering the energy of apart-kept electrons; the third comes from the sign of the spin-orbit coupling, which flips as a shell passes half-filling and turns the multiplet from normal to inverted. Worked ground terms for carbon, nitrogen, oxygen, and iron show the rules in action.\n",{"path":5137,"title":5138,"module":5139,"summary":5140},"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect","The Zeeman Effect","Atoms in External Fields","A magnetic field couples to the atom through its magnetic moment, splitting each level into equally spaced sublevels labelled by the projection of the total angular momentum. When spin is present the spacing is not the classical one: it carries the Landé g-factor, a projection of the spin and orbital moments onto the total angular momentum. We derive the weak-field Hamiltonian from minimal coupling, evaluate the shift with the projection theorem, and read off the polarization of the emitted components.\n",{"path":5142,"title":5143,"module":5139,"summary":5144},"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate","The Paschen-Back and Intermediate-Field Regimes","When the magnetic interaction grows past the fine-structure coupling, spin and orbital angular momentum decouple and precess independently about the field. The anomalous Zeeman pattern reverts to a simple triplet, the Paschen-Back effect. Between the two limits neither coupling dominates and the level positions follow from diagonalizing the combined spin-orbit and Zeeman Hamiltonian. We build the two-by-two problem for a single valence electron, solve it in closed form, and show both limits emerge from one expression.\n",{"path":5146,"title":5147,"module":5139,"summary":5148},"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability","The Stark Effect and Field Ionization","An electric field shifts atomic levels by coupling to the electron's position. Parity forbids a first-order shift for a non-degenerate state, so most atoms respond only at second order through their polarizability, a quadratic Stark shift. Hydrogen is the exception: its accidental degeneracy admits a permanent dipole and a linear shift, cleanest in parabolic coordinates. At large fields the Coulomb well develops a saddle, and Rydberg states field-ionize at a threshold that falls as the fourth power of the principal quantum number.\n",{"path":5150,"title":5151,"module":5152,"summary":5153},"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule","Time-Dependent Perturbation Theory and the Golden Rule","Radiative Transitions and Spectral Lines","An atom in a weak oscillating field makes transitions between its stationary states. First-order time-dependent perturbation theory gives the transition amplitude as a Fourier component of the perturbation at the Bohr frequency, and the resulting probability is a sinc-squared resonance that sharpens as the field acts longer. For a two-level system the same coupling produces Rabi oscillations; for a transition into a continuum the long-time limit collapses the sinc-squared into a delta function and yields Fermi's golden rule, a constant transition rate set by the coupling strength and the density of final states.\n",{"path":5155,"title":5156,"module":5152,"summary":5157},"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients","The Dipole Approximation and Einstein Coefficients","The coupling between an atom and light is the interaction of the electron with the electromagnetic field. Because an optical wavelength dwarfs the atom, the spatial variation of the field across the atom can be dropped, leaving the electric-dipole interaction and its matrix element. That matrix element defines the oscillator strength, which obeys the Thomas-Reiche-Kuhn sum rule. Einstein's three rate coefficients (absorption, stimulated emission, spontaneous emission) follow from detailed balance with thermal radiation, fixing the ratio of spontaneous to stimulated rates and its steep growth with frequency.\n",{"path":5159,"title":5160,"module":5152,"summary":5161},"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions","Selection Rules and Forbidden Transitions","The dipole matrix element vanishes for most pairs of states, and the pattern of which survive is the set of selection rules. Parity forces the orbital angular momentum to change by one; the angular integral of three spherical harmonics restricts the magnetic quantum number to change by zero or one; the photon's spin restricts the total angular momentum. When the dipole element vanishes, higher multipoles (magnetic dipole and electric quadrupole) can still drive the transition at rates smaller by powers of the fine-structure constant, and states with no allowed decay become metastable.\n",{"path":5163,"title":5164,"module":5152,"summary":5165},"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes","Lifetimes, Line Widths, and Line Shapes","A spectral line is never infinitely sharp. The finite lifetime of the excited state gives every line a natural Lorentzian width set by the total decay rate, the Fourier transform of an exponentially damped emission. Thermal motion adds a Gaussian Doppler width that usually dominates in a gas; collisions add a further Lorentzian pressure width; the observed profile is the Voigt convolution of the Gaussian and Lorentzian parts. Strong driving fields broaden the line further through saturation. Each mechanism has a distinct dependence on temperature, density, and intensity that lets it be identified and, where possible, removed.\n",{"path":5167,"title":5168,"module":5169,"summary":5170},"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles","Population Inversion, Gain, and the Laser","Lasers and Spectroscopy","A laser is an optical amplifier placed inside a resonant cavity. Amplification requires that stimulated emission outrun absorption, which requires more atoms in the upper level than the lower one — a population inversion that the Einstein relations forbid in thermal equilibrium and that no two-level pump can produce. Three- and four-level schemes reach it by routing atoms through auxiliary states. The gain coefficient sets how strongly a weak beam grows, the cavity fixes the threshold and selects a comb of longitudinal modes, and gain saturation clamps the steady-state inversion at its threshold value.\n",{"path":5172,"title":5173,"module":5169,"summary":5174},"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques","Spectroscopic Techniques and Frequency Combs","A tunable laser turns spectroscopy from photographing a spectrum into interrogating a single transition, but at room temperature the Doppler width buries the natural linewidth under a thousandfold-broader Gaussian. Saturated absorption and two-photon spectroscopy defeat the first-order Doppler shift by selecting the zero-velocity class or cancelling the shift between counter-propagating photons, recovering natural-width features. Laser-induced fluorescence pushes sensitivity to single atoms, and the optical frequency comb converts an optical frequency into a countable radio-frequency beat, giving absolute frequency measurement across the visible spectrum.\n",{"path":5176,"title":5177,"module":5169,"summary":5178},"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd","Reading Real Spectra with the NIST Database","Every quantity computed in this course — energy levels, transition frequencies, oscillator strengths, lifetimes — is tabulated for real atoms in the NIST Atomic Spectra Database. This lesson reads that data as physics: how levels are labelled by term symbols and energies in wavenumbers, how a transition list encodes wavelength, Einstein coefficient, and line strength, how a Grotrian diagram is reconstructed from the tables, and how a measured spectrum is matched to catalog lines. The residual between computed and tabulated positions is the running score of atomic theory.\n",{"path":5180,"title":5181,"module":5182,"summary":5183},"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler","Laser Cooling and Optical Molasses","Modern Atomic Physics","A near-resonant laser beam pushes an atom because every absorbed photon delivers one unit of momentum and the subsequent spontaneous emission averages to zero. Two counter-propagating red-detuned beams turn that push into friction: the Doppler shift brings a moving atom closer to resonance with the beam it moves against, so the net force opposes the velocity. Six beams give optical molasses in three dimensions. The random recoil of spontaneous emission heats against the friction, and the balance sets the Doppler cooling limit. Adding a magnetic-field gradient makes the force position-dependent as well, giving the magneto-optical trap.\n",{"path":5185,"title":5186,"module":5182,"summary":5187},"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping","Sub-Doppler Cooling and Atom Traps","Optical molasses cools multilevel atoms below the Doppler limit. A polarization gradient plus optical pumping makes an atom repeatedly climb a light-shift hill and be pumped to the valley, losing kinetic energy each cycle — Sisyphus cooling. The floor is the recoil limit, one photon momentum of residual motion. Below it, cooling must avoid scattering photons: conservative magnetic and optical-dipole traps hold the atoms while forced evaporation removes the hot tail, driving the phase-space density up toward quantum degeneracy.\n",{"path":5189,"title":5190,"module":5182,"summary":5191},"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation","Bose-Einstein Condensation of Atomic Gases","Below a critical temperature a gas of identical bosons places a macroscopic fraction of its atoms in the single lowest-energy state. The transition occurs when the thermal de Broglie wavelength grows to the interparticle spacing, so the phase- space density reaches order unity. The critical temperature follows from the Bose-Einstein distribution and the density of states, the condensate fraction grows as one minus (T\u002FTc) to the three-halves, and the condensate reveals itself in time-of-flight as a sharp bimodal peak in the momentum distribution. The 1995 rubidium and sodium experiments realized it in dilute trapped gases.\n",{"path":5193,"title":5194,"module":5182,"summary":5195},"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision","Optical Atomic Clocks and Precision Measurement","An atomic clock counts the oscillations of a field locked to an atomic transition. The cesium microwave standard defines the second through the 9.19 GHz ground-state hyperfine transition, interrogated by Ramsey's separated-oscillatory-field method whose fringe width is set by the free-precession time. Optical clocks replace the microwave transition with an optical one five orders of magnitude higher in frequency, raising the quality factor and the fractional stability in proportion. Lattice and single-ion clocks reach fractional uncertainties near ten-to-the-minus- eighteen by trapping the atoms at a magic wavelength that cancels the light shift, and at that level they measure the gravitational redshift over centimetres of height.\n",{"path":5197,"title":5198,"module":306,"summary":306},"\u002Fatomic-physics","Atomic Physics",{"path":5200,"title":5201,"module":306,"summary":306},"\u002Fdatabases","Databases",{"path":5203,"title":5204,"module":5,"summary":5205},"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category","Categories, Objects, and Arrows","A category is objects, arrows between them, a rule for composing arrows, and an identity arrow on every object, subject to associativity and the unit laws. The axioms mention no elements: arrows need not be functions, and an object is known only through the arrows into and out of it. Isomorphism, commutative diagrams, duality, and the terminal object are the first consequences.\n",{"path":5207,"title":5208,"module":5,"summary":5209},"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories","A Zoo of Categories","The axioms admit two very different kinds of model: large categories of structured sets and their structure-preserving maps (Set, Mon, Grp, Top, Vect), and small categories that are themselves single algebraic objects — a monoid as a one-object category, a poset as a thin category. The awkward cases Rel and Pfn have sets as objects but relations and partial functions as arrows, and a typed programming language presents its types and programs as a category.\n",{"path":5211,"title":5212,"module":5,"summary":5213},"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms","Isomorphisms, Monos, and Epis","Injectivity and surjectivity mention elements, so a general category re-expresses them by cancellation: monomorphisms cancel on the left, epimorphisms on the right. Sections and retractions are the split versions with an explicit one-sided inverse. Mono plus epi does not force an isomorphism, and subobjects are equivalence classes of monos into a fixed object.\n",{"path":5215,"title":5216,"module":5,"summary":5217},"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors","Functors: Maps Between Categories","A functor sends objects to objects and arrows to arrows while preserving composition and identities. Covariant and contravariant functors, the standard stock (forgetful, free, hom, and powerset), and the classification by faithfulness, fullness, and essential surjectivity all follow. Functors compose, so categories and functors form a category themselves.\n",{"path":5219,"title":5220,"module":5,"summary":5221},"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations","Natural Transformations and Functor Categories","A natural transformation is a map between two parallel functors: one component arrow per object, subject to a commuting square for every arrow of the source. Naturality is verified for the determinant, the double dual, and list operations; functors and natural transformations form the functor category [C, D]; and vertical and horizontal composition satisfy the Godement interchange law.\n",{"path":5223,"title":5224,"module":5,"summary":5225},"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory","Size: Small, Large, Locally Small","The objects of Set do not form a set, and pretending otherwise reproduces the classical paradoxes. Classes make the small\u002Flarge distinction precise, with locally small and essentially small as the intermediate notions. Cantor's theorem shows Set and its algebraic relatives are large, and the function-based axiomatization of sets is the one category theory prefers to ZFC.\n",{"path":5227,"title":5228,"module":5229,"summary":5230},"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties","Universal Properties, Initial and Terminal Objects","Universal Properties and Basic Constructions","A universal property characterizes an object by a for-all\u002Fexists-unique condition on the arrows into or out of it, and any two objects satisfying the same property are isomorphic by a unique isomorphism. Initial and terminal objects are the simplest cases; the free vector space, the discrete topology, and the ring of integers show the pattern at work.\n",{"path":5232,"title":5233,"module":5229,"summary":5234},"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts","Products and Coproducts","The product of two objects is a wedge of projections through which every other wedge factors uniquely; the coproduct is the dual, built from injections. In Set these are the cartesian product and the disjoint union, in a poset the meet and join, and in abelian groups the two coincide. The mediating-arrow discipline established here is the template for all limits.\n",{"path":5236,"title":5237,"module":5229,"summary":5238},"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories","Opposite, Product, Slice, and Comma Categories","Categories are themselves mathematical structures, and the standard algebraic constructions apply: opposites, products, subcategories, slices, and the comma category that subsumes them. The opposite category yields the duality principle, halving the subject's proofs; slice and comma categories repackage every universal property as an initial or terminal object.\n",{"path":5240,"title":5241,"module":5242,"summary":5243},"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors","Hom-Functors and Representables","Representables and the Yoneda Lemma","Fixing an object A of a locally small category produces a set-valued functor, the hom-functor A(A,-), that records every map out of A. A functor is representable when it is naturally isomorphic to such a hom-functor. We define the covariant and contravariant hom-functors, collect the standard representables (identity, forgetful, powerset), and read maps as generalized elements of varying shape.\n",{"path":5245,"title":5246,"module":5242,"summary":5247},"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma","The Yoneda Lemma","The Yoneda lemma computes the natural transformations out of a representable presheaf: they form a set in natural bijection with X(A). The proof fixes a single degree of freedom, the image of the identity arrow, and shows naturality forces everything else. We prove the bijection, verify naturality in both variables, and read off that a natural transformation out of a representable is just one element.\n",{"path":5249,"title":5250,"module":5242,"summary":5251},"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences","The Yoneda Embedding and Its Uses","Three corollaries turn the Yoneda lemma into working machinery. A representation of a presheaf is the same thing as a universal element; the Yoneda embedding of a category into its presheaf category is full and faithful; and two objects are isomorphic exactly when their representables are. Together they justify constructing arrows by constructing natural transformations between hom-functors, and they contain Cayley's theorem as the one-object case.\n",{"path":5253,"title":5254,"module":5255,"summary":5256},"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits","Cones and Limits","Limits and Colimits","A diagram is a functor from a small shape category; a cone over it is an object with compatible legs to every node; and a limit is the terminal cone, the one every other cone factors through uniquely. Products and terminal objects reappear as limits over particular shapes, and the whole construction is unique up to a single isomorphism.\n",{"path":5258,"title":5259,"module":5255,"summary":5260},"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks","Equalizers and Pullbacks","The equalizer of a parallel pair is the universal arrow that makes the two composites agree; the pullback of a cospan is the universal commutative square. In Set they are solution sets and fibered products, every equalizer is monic, monics are stable under pullback, and products plus equalizers together generate all limits.\n",{"path":5262,"title":5263,"module":5255,"summary":5264},"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits","Colimits: Coproducts, Coequalizers, Pushouts","Colimits are limits in the opposite category: cocones replace cones, and the universal cocone is initial rather than terminal. Coproducts glue objects side by side, coequalizers impose relations and produce quotients, pushouts glue along a shared part, and in Set every colimit is a quotient of a disjoint union. Directed colimits admit a clean elementwise description.\n",{"path":5266,"title":5267,"module":5255,"summary":5268},"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits","Computing Limits in Concrete Categories","In Set the limit of any diagram is the set of threads: choice functions through the nodes that commute with every edge. In Pos, Mon, and Top the recipe is the same limit downstairs plus the unique structure that makes the projections structure-preserving — pointwise order, componentwise operations, the topology generated by the projections. The pattern is what \"the forgetful functor creates limits\" means concretely.\n",{"path":5270,"title":5271,"module":5255,"summary":5272},"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors","Preservation, Reflection, and Creation of Limits","A functor preserves limits if it sends limit cones to limit cones, reflects them if it recognizes them, and creates them if limits downstairs lift uniquely upstairs. Representable functors preserve all limits, forgetful functors from algebra create them, and limits in functor categories are computed pointwise, one evaluation at a time.\n",{"path":5274,"title":5275,"module":5276,"summary":5277},"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions","Adjoint Functors via Hom-Set Bijections","Adjunctions","An adjunction is a natural bijection between two hom-sets: maps out of $F(A)$ in one category correspond to maps into $G(B)$ in the other. We give the definition, spell out the naturality axioms that make the correspondence compatible with composition, and work the flagship examples — free vector spaces, free groups, discrete and indiscrete topologies, and currying.\n",{"path":5279,"title":5280,"module":5276,"summary":5281},"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits","Units, Counits, and the Triangle Identities","The whole hom-set bijection of an adjunction is generated by two natural transformations: the unit, obtained by transposing identity maps on one side, and the counit, by transposing them on the other. Two triangle identities are all they must satisfy, and any pair satisfying them determines a unique adjunction. The same correspondence specializes to order-preserving maps between posets and to free constructions.\n",{"path":5283,"title":5284,"module":5276,"summary":5285},"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows","Adjunctions from Universal Arrows","The unit component at a single object is an initial object of a comma category, and this universal property alone rebuilds the whole adjunction. A functor has a left adjoint exactly when every object admits such a universal arrow, and the left adjoint is assembled from them one object at a time. We prove the equivalence of all three formulations of adjointness.\n",{"path":5287,"title":5288,"module":5276,"summary":5289},"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions","Free Constructions and Free–Forgetful Adjunctions","Free monoids, free groups, and free vector spaces are left adjoints to forgetful functors, and the universal mapping property is all one needs to prove it. Some forgetful functors also have right adjoints (co-free constructions like the indiscrete topology), producing three-functor chains. Contravariant adjunctions, symmetric in their two functors, close the lesson with the pattern behind duality and representation theorems.\n",{"path":5291,"title":5292,"module":5293,"summary":5294},"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints","Limits as Adjoints and as Representables","Adjoints, Representables, and Limits Together","A cone on a diagram is a natural transformation from a constant diagram, so a limit is a representation of the cone functor and, equivalently, a value of the right adjoint to the diagonal functor. We prove both rephrasings, derive uniqueness and functoriality of limits from them, and record the dual statement that a colimit is the left adjoint to the diagonal.\n",{"path":5296,"title":5297,"module":5293,"summary":5298},"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits","Limits and Colimits of Presheaves","Representables preserve limits, and limits in a functor category are computed one object at a time, so a presheaf category is complete and cocomplete with all its structure inherited pointwise from Set. The Yoneda embedding then preserves limits but not colimits, and the density theorem repairs the colimit side: every presheaf is a canonical colimit of representables.\n",{"path":5300,"title":5301,"module":5293,"summary":5302},"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits","Right Adjoints Preserve Limits (RAPL)","A functor with a left adjoint preserves every limit that exists, and dually a functor with a right adjoint preserves colimits. The proof is a four-line chain of natural isomorphisms through the adjunction and the continuity of representables. The theorem yields product-and-exponential arithmetic in Set, another proof that limits commute with limits, and a standard test for proving that a functor has no adjoint.\n",{"path":5304,"title":5305,"module":5293,"summary":5306},"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem","The Adjoint Functor Theorem","RAPL makes limit preservation necessary for having a left adjoint; the adjoint functor theorems identify when it is sufficient. For ordered sets no extra hypothesis is needed. In general the candidate adjoint is a limit over a comma category that may be large, and the general adjoint functor theorem tames it with a weakly initial set. We prove GAFT in full and apply it to free groups and, through the special adjoint functor theorem, the Stone–Čech compactification.\n",{"path":5308,"title":5309,"module":5310,"summary":5311},"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads","Monads from Adjunctions","Monads and Algebras","A monad on a category is an endofunctor equipped with a unit and a multiplication satisfying associativity and unit laws — the data of a monoid, written internally to the category of endofunctors. Every adjunction induces one, and the list, exception, and state constructions that model computational effects are all monads on Set.\n",{"path":5313,"title":5314,"module":5310,"summary":5315},"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore","Algebras for a Monad","An algebra for a monad is an object with a structure map that interacts correctly with the unit and multiplication. The algebras form the Eilenberg–Moore category, whose free–forgetful adjunction induces the monad back; a comparison functor relates any other inducing adjunction to it, and for the list monad the algebras are exactly monoids.\n",{"path":5317,"title":5318,"module":5310,"summary":5319},"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming","The Kleisli Category and Monads in Programming","The Kleisli category of a monad has the same objects as the base but takes arrows A to TB, composed by mapping and flattening. These arrows are effectful programs, Kleisli composition is the bind of functional programming, and the Kleisli adjunction is the initial resolution of the monad, with Eilenberg–Moore at the terminal end.\n",{"path":5321,"title":5322,"module":5310,"summary":5323},"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors","Algebras for an Endofunctor and Recursion","Dropping the monad laws leaves algebras for a bare endofunctor, whose initial objects are the least fixed points of the functor by Lambek's lemma. The natural numbers, lists, and trees are initial algebras; the unique map out of an initial algebra is the fold of functional programming; and the Smyth–Plotkin fixed-point technique builds Scott domains the same way.\n",{"path":5325,"title":5326,"module":5327,"summary":5328},"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories","Cartesian Closed Categories","Cartesian Closed Categories and Typed Lambda Calculus","A cartesian closed category has a terminal object, binary products, and for every pair of objects an exponential object that internalizes the hom-set as an object of the category. The defining data is an evaluation arrow and a currying operation, packaged by the adjunction between product-with-A and exponential-by-A. Set, Boolean and Heyting algebras, functor categories, and Cat are all cartesian closed.\n",{"path":5330,"title":5331,"module":5327,"summary":5332},"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence","Typed Lambda Calculus and CCCs","The typed lambda calculus and the cartesian closed category are two presentations of the same theory. Types become objects, terms with one free variable become arrows, product types become products, and function types become exponentials, with abstraction matching currying and application matching evaluation. Building the category of a lambda theory and the internal language of a category are mutually inverse up to equivalence.\n",{"path":5334,"title":5335,"module":5327,"summary":5336},"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion","Fixed Points in Cartesian Closed Categories","The untyped lambda calculus has a fixed-point combinator; the typed calculus cannot, and Lawvere's fixed-point theorem explains why: any point-surjection onto an exponential forces every endomap to have a fixed point, which is the abstract form of Cantor's diagonal argument. Recursion is recovered instead by restricting to omega-complete partially ordered objects, where every continuous endomap has a least fixed point built by iterating from bottom. This gives While loops a semantics.\n",{"path":5338,"title":5339,"module":306,"summary":306},"\u002Fcategory-theory","Category Theory",{"path":5341,"title":4140,"module":5342,"summary":5343},"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning","Mathematical Background","Every quantity a network touches is a tensor, and every layer is a matrix acting on one. This lesson compiles the linear algebra deep learning actually uses: products and norms, the system $Ax=b$ and when it is solvable, the two decompositions (eigen and SVD) that diagonalize a transformation, and the pseudoinverse that solves what cannot be solved exactly. It then derives PCA as the worked example that ties it all together.\n",{"path":5345,"title":5346,"module":5342,"summary":5347},"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory","Probability & Information Theory","This lesson assembles the probabilistic vocabulary a network is trained in (random variables, densities, the chain rule, expectation and covariance, the handful of distributions that recur everywhere) and then the information theory that turns a probabilistic model into a loss: self-information, entropy, and the KL divergence whose asymmetry is the cross-entropy objective itself.\n",{"path":5349,"title":5350,"module":5342,"summary":5351},"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation","Numerical Computation","Machine learning runs on finite-precision arithmetic, where every number is approximated and every operation rounds. This lesson sets the numerical ground rules: overflow and underflow and the standard stabilizations, the condition number that measures how much a problem amplifies error, and the gradient-based optimization (first and second order, constrained and unconstrained) that every training loop runs.\n",{"path":5353,"title":3499,"module":5342,"summary":5354},"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus","This lesson assembles the differential calculus used in training networks: the gradient and directional derivative, the Jacobian and Hessian, and the chain rule in scalar, vector, and matrix form. From the chain rule it derives back-propagation as a single sweep over the computational graph, tabulates the matrix-calculus identities that recur in layer gradients, reads optimization off a second-order Taylor expansion, and ends with why reverse-mode automatic differentiation is the algorithm every framework runs.\n",{"path":5356,"title":5357,"module":5,"summary":5358},"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning","What Is Deep Learning?","Deep learning is representation learning by composition: stack simple differentiable layers, define a loss, and let gradient descent discover the features a human would otherwise have to engineer by hand. We set up the whole vocabulary (model, loss, optimizer, data), the training loop that ties them together, and the three reasons the approach became practical.\n",{"path":5360,"title":5361,"module":5,"summary":5362},"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher","A Machine-Learning Refresher","The statistical framework the networks live in: data drawn from an unknown distribution, a loss to minimize, and the central question of generalization: will it work on data we have not seen? We set up empirical risk, capacity, the bias–variance tradeoff, and maximum likelihood.\n",{"path":5364,"title":5365,"module":5,"summary":5366},"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron","Linear Models & the Perceptron","The simplest learners (linear regression, logistic regression, the perceptron) already contain the whole template: a weighted sum, a loss, a gradient step. They also fail on the XOR problem, which no linear model can solve — the limitation that motivates deep learning.\n",{"path":5368,"title":5369,"module":5370,"summary":5371},"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron","The Multilayer Perceptron","Neural Networks","Stacking linear layers with a nonlinearity between them removes the limitation that stopped the perceptron. We build the multilayer perceptron in explicit matrix form (the forward pass, its dimensions, a worked XOR network with concrete weights) and prove why the nonlinearity is essential: without it the deepest stack collapses to a single hyperplane.\n",{"path":5373,"title":5374,"module":5370,"summary":5375},"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions","Activation Functions","The activation is the only nonlinear part of a layer, and the reason depth adds expressive power. We catalog the standard hidden units (sigmoid, tanh, ReLU and its descendants, plus GELU, softplus, swish and maxout), derive each unit's derivative in full, make the vanishing-gradient problem quantitative with the chain-rule product, work numeric examples, and explain why the saturating units gave way to ReLU and why ReLU's own dead-unit failure gave way to Leaky\u002FPReLU\u002FELU\u002FGELU.\n",{"path":5377,"title":5378,"module":5370,"summary":5379},"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation","Universal Approximation","One hidden layer with a non-polynomial activation can approximate any continuous function on a compact set to arbitrary accuracy: the universal approximation theorem. We prove it constructively (two sigmoids make a bump; sums of bumps make any curve), then show the limitation: existence is not efficiency. Depth-separation results exhibit functions a deep net represents with $O(n)$ units that a shallow net needs $\\exp(n)$ units to match.\n",{"path":5381,"title":5382,"module":5370,"summary":5383},"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation","Backpropagation","Backpropagation is the chain rule run backward over a computational graph. We formalize the graph, derive the four backprop equations for an MLP, present the forward and backward passes as algorithms, and work a tiny two-layer net by hand with explicit numbers. The result: one scalar loss, reverse-mode autodiff, and a gradient for every parameter at twice the cost of a forward pass.\n",{"path":5385,"title":5386,"module":5370,"summary":5387},"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units","Loss Functions & Output Units","The last layer is where a network's hidden representation meets the task. Choosing an output unit and a loss is not two independent choices; maximum likelihood fixes the pair. We derive the standard couplings (linear\u002FMSE, sigmoid\u002FBCE, softmax\u002Fcross-entropy), show why softmax and cross-entropy were built to cancel into the residual $\\hat y - y$, and prove why squared error is the wrong loss for a saturating classifier.\n",{"path":5389,"title":5390,"module":5391,"summary":5392},"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd","Gradient Descent & SGD","Optimization","Training is descent on the empirical risk: step the parameters against the gradient. We derive the minibatch gradient as an unbiased estimator whose variance falls as $1\u002FB$, derive the learning-rate ceiling from the smoothness-stability bound $\\eta \u003C 2\u002FL$, and lay out the schedules (step, exponential, cosine, warmup) that anneal it over training.\n",{"path":5394,"title":5395,"module":5391,"summary":5396},"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods","Momentum & Adaptive Methods","Plain gradient descent zig-zags across ravines and moves slowly along flat valleys, because one global learning rate cannot suit a surface with wildly different curvature in different directions. Two fixes address the two problems: momentum accumulates a velocity that damps the oscillation and accelerates the drift, and adaptive methods give every parameter its own learning rate scaled by the history of its gradients. Adam fuses both, and is the default optimizer of modern deep learning.\n",{"path":5398,"title":5399,"module":5391,"summary":5400},"\u002Fdeep-learning\u002Foptimization\u002Finitialization","Weight Initialization","The initial weights determine whether training can succeed before the first gradient step. Initialize every weight equal and all hidden units compute the same function forever; initialize too small or too large and the signal vanishes or explodes as it crosses depth. A single variance condition, $n_{\\text{in}}\\mathrm{Var}(W)=1$, fixes both, and reading it off the forward and backward passes yields Xavier and He initialization directly.\n",{"path":5402,"title":5403,"module":5391,"summary":5404},"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape","The Optimization Landscape","The loss of a deep network is a non-convex surface in millions of dimensions, so local search carries no global guarantee, yet it works. We classify critical points by the eigenvalues of the Hessian, show that in high dimension nearly all of them are saddle points rather than bad local minima, and read off the practical terrain — plateaus, cliffs, ill-conditioning, and the sharp-versus-flat distinction that ties the geometry of a minimum to how well it generalizes.\n",{"path":5406,"title":5407,"module":5391,"summary":5408},"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods","Second-Order & Approximate Methods","Newton's method reads the curvature of the loss off its Hessian and jumps to the minimum of the local quadratic in a single step, rescaling away the ill-conditioning that slows first-order descent. We derive it, then explain the three obstacles that keep it out of deep learning: a $d \\times d$ Hessian for $d$ in the billions, an attraction to saddle points, and minibatch noise. The alternative is approximation (conjugate gradients, BFGS and L-BFGS, the natural gradient and Hessian-free methods), each buying some of Newton's curvature information without ever forming or inverting $H$.\n",{"path":5410,"title":5411,"module":5412,"summary":5413},"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview","Regularization Overview","Regularization","Regularization is any modification to a learning algorithm meant to lower test error at the possible expense of training error. We derive the bias–variance decomposition that explains why it helps, set up the two parameter-norm penalties, $L^2$ weight decay and $L^1$, derive their update rules and eigenbasis shrinkage, show geometrically why $L^1$ alone produces sparse weights (soft-thresholding), distinguish weight decay from loss-added $L^2$ under AdamW, and read both penalties through the two lenses that recur across the chapter: a norm-ball constraint via KKT, and a prior via MAP estimation.\n",{"path":5415,"title":5416,"module":5412,"summary":5417},"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation","Dropout & Data Augmentation","Two of the most effective regularizers add no penalty term at all; they perturb the computation instead. Dropout multiplies hidden units by a random Bernoulli mask, training an exponential ensemble of thinned subnetworks that share weights; inverted scaling collapses that ensemble into one cheap forward pass at test time. Data augmentation enlarges the training set with label-preserving transforms, injecting the invariances the task demands, and noise injection (input, weight, label smoothing, Mixup) generalizes the same idea into a continuous family.\n",{"path":5419,"title":5420,"module":5412,"summary":5421},"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing","Early Stopping & Parameter Sharing","Two cheap regularizers that cost no extra term in the loss. Early stopping treats training time itself as a hyperparameter (watch the validation curve, halt at its minimum, keep the best checkpoint), and for a quadratic objective it is provably equivalent to $L^2$ weight decay. Parameter sharing goes the other way: it constrains many weights to be _equal_, the prior behind every convolution and every recurrent step, and the reason a CNN has orders of magnitude fewer parameters than the dense net it replaces.\n",{"path":5423,"title":5424,"module":5412,"summary":5425},"\u002Fdeep-learning\u002Fregularization\u002Fnormalization","Normalization","Normalization layers standardize activations to zero mean and unit variance inside the network, then hand the model a learnable scale and shift to undo the constraint when it pays to. Batch normalization does this across the batch and must keep separate train-time and test-time statistics; layer, instance, and group norm change only the axes they average over. The result is faster, better-conditioned optimization and a free dose of regularizing batch noise.\n",{"path":5427,"title":5428,"module":5429,"summary":5430},"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks","Convolutional Networks","Architectures","A convolutional network replaces the dense layer's all-to-all weight matrix with a small kernel slid across the input. Three structural commitments (sparse connectivity, parameter sharing, and translation equivariance) collapse the parameter count by orders of magnitude and bake the right prior for images directly into the architecture. We derive the convolution arithmetic, the output geometry, pooling, and the receptive field, then assemble the canonical stack.\n",{"path":5432,"title":5433,"module":5429,"summary":5434},"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures","CNN Architectures","Six landmark networks, each contributing exactly one idea: LeNet's conv-pool stack, AlexNet's ReLU-and-dropout scale, VGG's $3\\times3$ uniformity, Inception's multi-scale module, ResNet's residual skip, and DenseNet's dense connectivity. The common thread is the degradation problem (why plain deeper nets train worse, not just overfit) and the residual block that solved it by keeping a $+1$ path open for the gradient.\n",{"path":5436,"title":5437,"module":5429,"summary":5438},"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks","Recurrent Networks","A recurrent network folds a sequence into a fixed-size hidden state, reusing one set of weights at every time step, the architectural prior that the same rule applies wherever it lands in time. Unrolling the recurrence exposes a deep feed-forward graph; backpropagation through it sums gradient contributions across all steps and chains a product of Jacobians, and that product is why long-range gradients vanish or explode. That failure motivates gated architectures.\n",{"path":5440,"title":5441,"module":5429,"summary":5442},"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru","LSTM & GRU","A plain recurrent network propagates its hidden state through a repeated weight-matrix multiply, and the Jacobian product that results vanishes or explodes long before a useful gradient can reach the early steps. Gated RNNs fix this with an additive memory path: a cell state that is carried forward almost unchanged, past which the gradient flows along a near-identity highway. We derive that highway, give the full LSTM and GRU equations, and compare the two.\n",{"path":5444,"title":5445,"module":5429,"summary":5446},"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers","Attention & Transformers","Attention replaces fixed wiring with content-based routing: every position reads from every other through a soft, learned dot-product lookup. We derive scaled dot-product attention and its $\\sqrt{d_k}$ correction, build it into multi-head self-attention, inject order with positional encodings, and stack the whole thing into the Transformer block that displaced recurrence and convolution alike.\n",{"path":5448,"title":5449,"module":5429,"summary":5450},"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture","The Transformer Architecture","The Transformer is the architecture built around the attention mechanism. This first part assembles the full encoder–decoder of \"Attention Is All You Need\" — embeddings and positional encoding, stacked self-attention and feed-forward sublayers wrapped in residual connections and LayerNorm, masked decoding and cross-attention — works through causal masking and the three modern families (encoder-only, decoder-only, encoder–decoder), and accounts for where the parameters and the $O(n^2)$ compute actually go.\n",{"path":5452,"title":5453,"module":5429,"summary":5454},"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice","Transformers in Practice","The Transformer makes no assumption about what a token represents. This part follows the architecture out of language: image patches feed a plain encoder (the Vision Transformer), the decoder-only half scales into the GPT line of large language models, and one substrate covers translation, retrieval, and multimodal grounding. We work the ViT patch arithmetic and a GPT parameter count by hand, then close on the empirical scaling laws — power-law loss, the Chinchilla compute-optimal balance, and emergent behavior — that made scale the dominant lever.\n",{"path":5456,"title":5457,"module":5429,"summary":5458},"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks","Graph Neural Networks","A graph neural network learns on data with no grid and no canonical ordering: atoms in a molecule, users in a social network, road segments in a map. The unifying idea is message passing — each node repeatedly aggregates its neighbors' states and updates its own — built to respect the one symmetry graphs demand, permutation equivariance. We derive the message-passing framework, specialize it into GCN, GraphSAGE, GAT, and GIN, read off graph-level outputs, and bound what message passing can and cannot tell apart.\n",{"path":5460,"title":5461,"module":5429,"summary":5462},"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models","State-Space Models and Mamba","A state-space model carries a continuous linear hidden state through a sequence, and that linearity buys two equivalent algorithms from one set of weights: a recurrence that runs in linear time with constant memory, and a global convolution that trains in parallel. Long-range memory comes from how the transition matrix is initialized (HiPPO) and parameterized (S4's diagonal-plus-low-rank form). Mamba breaks the convolution on purpose, making the parameters input-dependent so the model can select what to remember, recovered at speed by a hardware-aware parallel scan.\n",{"path":5464,"title":5465,"module":5466,"summary":5467},"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory","Generalization Theory","Theory & Frontiers","Classical learning theory bounds the gap between training and test error by a model's capacity (VC dimension, Rademacher complexity), and predicts that a model with more parameters than data should overfit catastrophically. Modern networks do the opposite: they interpolate, even fit pure noise, and still generalize. We derive the classical bounds, work the bias-variance decomposition, show why the bounds go vacuous, and survey what replaced them: double descent, the interpolation threshold, margin and norm-based bounds, and the implicit bias of the optimizer itself.\n",{"path":5469,"title":5470,"module":5466,"summary":5471},"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness","Adversarial Robustness","A trained network can be fooled by a perturbation too small for a human to see: add a carefully aimed vector of magnitude $\\epsilon$ to a correctly classified image and the prediction flips. We derive the fast gradient sign method as the first-order-optimal step inside an $L_\\infty$ ball, explain the linearity hypothesis that makes high-dimensional models so easy to push around, build up to projected gradient descent, and frame adversarial training as a min-max robust-optimization problem with its own accuracy cost. Defenses beyond training continue in the next lesson.\n",{"path":5473,"title":5474,"module":5466,"summary":5475},"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses","Adversarial Defenses","Defending a network against an adversary is far harder than attacking one. This lesson covers the defense side: certified guarantees via randomized smoothing, the transferability that makes black-box attacks possible, and the recurring failure of gradient masking, where a defense hides the attacker's gradient instead of moving the decision boundary. It ends with the adaptive-attack discipline (BPDA, EOT, transfer) that every robustness claim must be tested against.\n",{"path":5477,"title":5478,"module":5466,"summary":5479},"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods","Bayesian & Ensemble Methods","A trained network returns a single point prediction and, with the softmax, a confidence, but that confidence is usually miscalibrated, collapsing to near- certainty even on inputs the model has never seen. This lesson covers uncertainty estimation for networks: the two kinds of uncertainty, the Bayesian posterior over weights and its tractable stand-ins (MC dropout, deep ensembles), and how to check whether a model's reported confidences match observed frequencies.\n",{"path":5481,"title":5482,"module":5466,"summary":5483},"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models","Deep Equilibrium Models","A deep network need not be a fixed stack of layers; it can be a single weight-tied layer iterated to convergence, its output defined implicitly as the fixed point $z^\\star = f_\\theta(z^\\star, x)$. The forward pass becomes root-finding and the backward pass becomes implicit differentiation, so training costs O(1) memory regardless of effective depth. We derive both passes from the implicit function theorem and close the course on defining a layer by a fixed-point condition rather than an explicit stack.\n",{"path":5485,"title":5486,"module":5487,"summary":5488},"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models","Linear Factor Models","Generative Models","The simplest generative models share one template: a latent variable drawn from a fixed prior, run through a linear decoder, plus noise. Probabilistic PCA, factor analysis, independent component analysis, and sparse coding are all this template with a different prior on the latents and a different noise model. We derive each marginal, see why ICA needs non-Gaussianity to identify its sources, and show how sparse coding learns Gabor-like dictionary atoms.\n",{"path":5490,"title":5491,"module":5487,"summary":5492},"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders","Autoencoders","An autoencoder is a network trained to copy its input to its output through a narrow channel; the useful product is the bottleneck representation $h$, not the reconstruction. We derive the undercomplete autoencoder and prove its linear case recovers PCA, then trade the bottleneck for explicit regularization (sparse, denoising, contractive) and show how a denoising autoencoder learns the low-dimensional manifold the data lives on.\n",{"path":5494,"title":5495,"module":5487,"summary":5496},"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders","Variational Autoencoders","An autoencoder compresses, but its latent space has gaps: sample a point between two encodings and the decoder produces noise. The variational autoencoder fixes this by training a probabilistic encoder against a prior, so the latent space becomes a smooth, samplable density. We derive the evidence lower bound it maximizes, the reparameterization trick that lets gradients flow through a random sample, and the closed-form Gaussian regularizer that pulls the posterior toward the prior.\n",{"path":5498,"title":5499,"module":5487,"summary":5500},"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks","Generative Adversarial Networks","A generative adversarial network trains two networks against each other: a generator that turns noise into samples, and a discriminator that tries to tell real data from forgeries. The game has a clean theory: the optimal discriminator is a likelihood ratio, and at equilibrium the generator minimizes the Jensen–Shannon divergence to the data, with a global optimum exactly when its distribution matches the data. We derive that result, fix the saturating loss that breaks training, and catalogue the failure modes (mode collapse, instability, vanishing gradients) and the architectural fixes.\n",{"path":5502,"title":5503,"module":5487,"summary":5504},"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows","Autoregressive Models & Normalizing Flows","Two families that provide exact likelihoods, each at a cost. Autoregressive models factor the joint by the probability chain rule and learn each conditional with a masked network: exact $\\log p(x)$, but sampling proceeds one coordinate at a time. Normalizing flows push a simple base density through an invertible map and read $\\log p(x)$ off the change-of-variables formula, trading architectural freedom for a cheap Jacobian determinant via triangular coupling layers.\n",{"path":5506,"title":5507,"module":5487,"summary":5508},"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines","Energy-Based & Boltzmann Machines","Energy-based models replace an explicit density with a scalar energy and a Boltzmann normalization, $p(x) = e^{-E(x)}\u002FZ$: simple to specify, but with an intractable partition function $Z$. The Boltzmann machine and its restricted variant make the energy bilinear so the hidden units factorize, and contrastive divergence sidesteps $Z$ by replacing the model expectation with a few Gibbs steps started at the data. We close on the undirected deep models (DBNs and DBMs) and how they differ from the directed VAE.\n",{"path":5510,"title":5511,"module":5487,"summary":5512},"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models","Diffusion and Score-Based Models","Corrupt a data point with Gaussian noise in small steps until only noise remains, then train a network to undo one step at a time. We derive the forward process and its closed-form marginal, reduce the variational bound to the single noise-prediction objective that makes diffusion trainable, and show the score-matching view that unifies it with Langevin sampling and the continuous SDE. The lesson closes with DDIM fast sampling, classifier-free guidance, and the latent diffusion that powers modern text-to-image systems.\n",{"path":5514,"title":5515,"module":5516,"summary":5517},"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models","Structured Probabilistic Models","Probabilistic Methods","A joint distribution over $n$ variables is a table with exponentially many entries; nobody can store it, fit it, or sample from it directly. Structure fixes this: a graph whose missing edges encode conditional independencies that factor the joint into small local pieces. We build the two dialects, directed (Bayesian networks) and undirected (Markov random fields), read independence off the graph, and connect the machinery to the latent-variable and energy-based models that power deep generative learning.\n",{"path":5519,"title":5520,"module":5516,"summary":5521},"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc","Monte Carlo & MCMC","Most quantities of interest in a probabilistic model are integrals nobody can compute in closed form: expectations, marginals, partition functions. Monte Carlo replaces the integral with an average over samples; importance sampling reweights samples from a tractable proposal; and when even sampling the target is hard, Markov-chain Monte Carlo builds a chain whose stationary distribution _is_ the target. We derive Metropolis–Hastings and Gibbs, analyze mixing, and close on the partition-function gradient that powers energy-based learning.\n",{"path":5523,"title":5524,"module":5516,"summary":5525},"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference","Approximate Inference","In a latent-variable model the quantity we need, the posterior $p(h\\mid v)$ over hidden causes, is almost never computable, because its normalizer is an intractable sum over configurations. Approximate inference reframes the problem as optimization: maximize the evidence lower bound, a tractable functional whose gap to the true log-evidence equals a KL divergence. From that single bound fall expectation–maximization, mean-field variational inference, MAP, and the learned encoders behind variational autoencoders.\n",{"path":5527,"title":5528,"module":5529,"summary":5530},"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology","Practical Methodology","Practical Deep Learning","Knowing the algorithms is half the job; the other half is a disciplined loop. Fix a goal and a metric, stand up an end-to-end baseline, then read the train\u002Fvalidation gap to decide whether the next move is more data or a bigger model. We detail that loop: choosing metrics under class imbalance, default baselines by data type, extrapolating the data a target needs, and guarding the data pipeline against the leaks and label bugs that corrupt every gradient. Hyperparameter tuning, debugging, and deployment continue in the sequel.\n",{"path":5532,"title":5533,"module":5529,"summary":5534},"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging","Hyperparameters & Debugging","The tuning half of the methodology loop. The learning rate is the one hyperparameter that dominates, so we tune it first, on a log scale, coarse to fine, and prefer random search to grid when only a few dials matter. Then an ordered debugging playbook — overfit one batch, check the loss at initialization against ln C, watch the gradient norm, gradient-check against centered finite differences — and, after launch, monitoring for train-test skew and distribution drift with confidence-based abstention.\n",{"path":5536,"title":5537,"module":5529,"summary":5538},"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning","Representation Learning","A good representation makes a hard task easy by changing coordinates: it disentangles the factors of variation, spends its bits as a distributed code, and respects the low-dimensional manifold the data lives on. We make those three properties precise, recover the manifold hypothesis, and close on the first method that turned them into training practice — greedy layer-wise unsupervised pretraining — before the sequel picks up how the field learned to reuse those features.\n",{"path":5540,"title":5541,"module":5529,"summary":5542},"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning","Transfer Learning","A representation learned once can be reused everywhere. We cover the main mechanisms of reuse: feature extraction versus fine-tuning, the generic-to-specific gradient of features that sets the freeze boundary, the learning-rate discipline that keeps borrowed weights from being erased, domain adaptation when only the input distribution shifts, and the modern arc from supervised transfer to self-supervised foundation models.\n",{"path":5544,"title":5545,"module":5529,"summary":5546},"\u002Fdeep-learning\u002Fpractical\u002Fapplications","Applications","We survey large-scale training (the hardware, the two axes of parallelism, mixed precision, and the compression tricks that shrink a model after it is trained), then specialize the same gradient loop to vision, language, speech, and recommendation. Each domain is a different prior bolted onto one optimizer: convolutional invariance for pixels, distributed word vectors for tokens, sequence transduction for audio, low-rank factorization for the user–item matrix.\n",{"path":5548,"title":5549,"module":5529,"summary":5550},"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation","Model Compression and Distillation","A trained network and a deployable one are rarely the same object. This lesson is the toolkit for closing that gap: knowledge distillation transfers a large teacher's soft, information-rich logits into a small student; pruning deletes the weights that contribute least; quantization swaps 32-bit floats for 8- or 4-bit integers; and low-rank factorization replaces a fat matrix with two thin ones. We derive each method, show what it costs in accuracy, and lay out which combinations win on which hardware.\n",{"path":5552,"title":5553,"module":5529,"summary":5554},"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot","Meta-Learning and Few-Shot Learning","A deep network trained on one example per class overfits. Meta-learning targets this few-shot regime by training across a distribution of tasks so that a new task is learnable from a handful of examples. We formalize the $N$-way $K$-shot episode, then derive the two dominant families: metric methods that learn an embedding where distance classifies (Prototypical Networks), and optimization methods that learn an initialization a few gradient steps can adapt (MAML). We close on the link to transfer learning and to the in-context few-shot behavior of large language models.\n",{"path":5556,"title":5557,"module":5558,"summary":5559},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models","Large Language Models","Large Models & Agents","A large language model is a decoder-only Transformer trained on one objective, next-token prediction, then scaled until new behavior appears. This first part builds the object itself: the equivalence between next-token prediction and lossless compression, subword tokenization (BPE, WordPiece, Unigram, SentencePiece) worked on a real sentence, the four pretraining objectives and the attention masks that distinguish them, and the three model families (encoder-only, decoder-only, encoder--decoder) with their parameter budgets. Scaling, decoding, the KV cache, and alignment continue in part two.\n",{"path":5561,"title":5562,"module":5558,"summary":5563},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment","Scaling, Inference, and Alignment of Language Models","Once a language model is built, three questions remain: how does it improve as it grows, how is it decoded and served affordably, and how is a raw next-token predictor turned into an assistant. We derive the Kaplan power laws and the Chinchilla compute-optimal balance, trace emergent abilities and in-context learning, catalog the decoding strategies from greedy to nucleus sampling, work the KV cache that makes generation quadratic instead of cubic, cover parameter-efficient adaptation by low-rank updates (LoRA), and close on the alignment stack: instruction tuning, RLHF, and DPO.\n",{"path":5565,"title":5566,"module":5558,"summary":5567},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart","Denoising Sequence-to-Sequence Pretraining: BART","BERT corrupts and reconstructs; GPT predicts the next token. Sequence-to-sequence pretraining unifies both by training a full encoder–decoder as a denoising autoencoder: corrupt the text with a noise function, then reconstruct the original through a bidirectional encoder and an autoregressive decoder. This first part derives the denoising objective, catalogs BART's five noise functions (with a worked Poisson-infilling budget), proves BART specializes to both BERT and GPT, and traces a dimension-annotated forward pass through its encoder--decoder. T5, PEGASUS, fine-tuning, and decoding continue in part two.\n",{"path":5569,"title":5570,"module":5558,"summary":5571},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation","Text-to-Text Transfer and Conditional Generation","BART reconstructs a corrupted document; T5 pushes the same denoising idea into a single interface where every task is a string-to-string map. This second part covers T5's span corruption with sentinel tokens (with a worked token budget), PEGASUS's summarization-matched gap sentences and the MASS midpoint, supervised fine-tuning and beam-search decoding with a length penalty, the exposure-bias failure modes of autoregressive decoding, and a theorem showing why a bidirectional encoder--decoder strictly dominates a decoder-only model when the output is conditioned on a full input.\n",{"path":5573,"title":5574,"module":5558,"summary":5575},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models","Speech Recognition: Front-Ends and Alignment","Speech is a long, high-rate sequence whose label is short and unaligned, so the whole subject turns on bridging that mismatch. This first part builds the spectral front-ends that compress a waveform into frames (STFT, mel spectrogram, MFCC, with a worked frame-count), derives CTC's marginalization over alignments and its forward-backward recursion with a two-frame numeric example, and contrasts it with attention-based seq2seq (LAS) and the RNN transducer. Self-supervised and weakly-supervised models, and text-to-speech, continue in part two.\n",{"path":5577,"title":5578,"module":5558,"summary":5579},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis","Self-Supervised Speech Models and Synthesis","The recognition front-ends and alignment losses of part one all need transcribed audio, which is scarce. This second part removes that dependence: wav2vec 2.0 learns speech representations from unlabeled audio by a masked contrastive objective, HuBERT swaps the contrast for masked prediction of clustered units, and Whisper trades curation for scale with weakly-supervised web audio and a multitask token interface. We close with text-to-speech (the same length mismatch run backwards) and a tour of speech foundation models, discrete audio codecs, and neural TTS.\n",{"path":5581,"title":5582,"module":5558,"summary":5583},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents","AI Agents: Tools and Reasoning","A language model that only emits text is a function from prompt to prompt; an agent closes the loop, letting that model act on an environment, read back the result, and decide again. This first part formalizes the agent as a policy over interaction histories, builds out tool calling and the executor trust boundary, the ReAct interleaving of reasoning and action (with concrete traces), and search over thoughts: chain-of-thought, self-consistency, least-to-most, and Tree of Thoughts. Memory, retrieval, reflection, and multi-agent orchestration continue in part two.\n",{"path":5585,"title":5586,"module":5558,"summary":5587},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration","Agent Memory, Retrieval, and Orchestration","An agent's reasoning and tool use only matter if it can remember what it learned and coordinate work larger than one context window. This second part builds the systems around the loop: short-term scratchpad versus long-term vector store, retrieval-augmented generation with a worked softmax over passage scores, reflection (Reflexion, Self-Refine), and multi-agent orchestration. It closes on the failure modes that bound agents — invalid tool calls, horizon-error compounding, context overflow, non-terminating loops — and the benchmarks that score the full loop.\n",{"path":5589,"title":5590,"module":5558,"summary":5591},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts","Mixture-of-Experts","A mixture-of-experts layer replaces one feed-forward network with many and a router that sends each token to only a few of them, so the parameter count and the per-token compute become separate dials. We derive the gated output, sparse top-$k$ routing softmax, the load-balancing loss that stops the router from collapsing onto a single expert, and expert\u002Ftoken capacity with dropping, then work the dimension-annotated tensor shapes and FLOP arithmetic. We trace the architectures from the sparsely-gated LSTM through GShard, Switch Transformer, and Mixtral, cover distributed expert parallelism, and close on the training dynamics, failure modes, and serving costs of a sparse model.\n",{"path":5593,"title":5594,"module":5558,"summary":5595},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models","Multimodal Contrastive Learning","A multimodal model places images, text, and audio in one representation space, so a picture and its caption land close together. This first part builds the contrastive route: the shared embedding space and its residual modality gap, the Vision Transformer image encoder (patch embedding, CLS token, position embeddings, with shapes), the symmetric InfoNCE loss that trains the CLIP dual encoder from a batch similarity matrix (with a worked numeric step), and zero-shot classification as a softmax over class-prompt embeddings. Fusion and vision-language models continue in part two.\n",{"path":5597,"title":5598,"module":5558,"summary":5599},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models","Fusion and Vision-Language Models","A contrastive model compares modalities but never lets one read another. This second part builds the fusion route: early, late, and cross-attention fusion, then the three designs that connect a frozen vision encoder to a frozen language model — Flamingo's zero-initialized gated cross-attention, BLIP-2's Q-Former, and LLaVA's linear projector. We work the token-budget arithmetic that separates them, name the object-hallucination and fine-detail failure modes, cover the contrastive-then- instruction-tune recipe and its retrieval\u002Fcaptioning\u002FVQA benchmarks, and close on natively multimodal models.\n",{"path":5601,"title":5602,"module":5603,"summary":5604},"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning","Foundations of Reinforcement Learning","Reinforcement Learning","Reinforcement learning is the third paradigm: an agent learns to act by interacting with an environment that returns rewards, not labels. We formalize the interaction as a Markov decision process, define the value functions that rank states and actions, and derive the Bellman expectation and optimality equations that every method downstream solves. Dynamic programming gives the exact answer when the model is known, and its convergence rests on a single fact: the Bellman operator is a contraction.\n",{"path":5606,"title":5607,"module":5603,"summary":5608},"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control","Model-Free Prediction and Control","When the dynamics are unknown, an agent cannot plan against a model; it must learn directly from sampled experience. We build prediction and control from two estimators of the same return: Monte Carlo averages whole episodes, while temporal-difference learning bootstraps from its own next estimate. We trace the bias-variance contrast between them, derive SARSA and Q-learning as the on-policy and off-policy forms of control, unify everything through n-step returns and eligibility traces, and close on the deadly triad that makes off-policy bootstrapping with function approximation diverge.\n",{"path":5610,"title":5611,"module":5603,"summary":5612},"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks","Deep Q-Networks","A Deep Q-Network replaces the tabular action-value function with a neural approximator $Q(s,a;\\theta)$ and trains it by regression toward a bootstrapped target. Naive online Q-learning with a network diverges, so DQN adds two stabilizers: an experience-replay buffer that decorrelates samples, and a periodically-frozen target network that holds the regression target still. We derive the loss, give the full algorithm and the Atari pipeline, and then layer on Double DQN, the dueling split, prioritized replay, and the Rainbow combination.\n",{"path":5614,"title":5615,"module":5603,"summary":5616},"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic","Policy Gradients and Actor-Critic Methods","Value-based reinforcement learning learns what each state is worth and acts greedily; policy-gradient methods skip the detour and optimize a parameterized policy directly by ascending the gradient of expected return. The policy gradient theorem makes this tractable through the log-derivative trick, turning an intractable gradient of an expectation into an expectation of a gradient. REINFORCE realizes the idea but suffers high variance; baselines, the advantage function, and actor-critic learning reduce it, and trust-region methods (TRPO, PPO) keep each update from destroying the policy it just learned.\n",{"path":5618,"title":5619,"module":5603,"summary":5620},"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback","Reinforcement Learning from Human Feedback","Many objectives we want from a model, that it be helpful and harmless, are hard to write down but easy to judge by comparison. RLHF turns that asymmetry into a training signal: fit a reward model to pairwise human preferences under the Bradley-Terry likelihood, then fine-tune the policy to maximize that reward under a KL penalty toward a reference. We derive the reward loss, the KL-regularized RL objective and its closed-form optimum, then show how DPO inverts that optimum to collapse the whole pipeline into one supervised log-sigmoid loss, and survey IPO, KTO, RLAIF, and GRPO.\n",{"path":5622,"title":5623,"module":306,"summary":306},"\u002Fdeep-learning","Deep Learning",{"path":5625,"title":5626,"module":3690,"summary":5627},"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law","Equilibrium, State Variables, and the Zeroth Law","Thermodynamics describes a many-body system by a handful of macroscopic variables and the equilibrium relations among them. This lesson fixes the vocabulary: systems and the walls that separate them, state variables versus path-dependent process quantities, quasi-static and reversible idealizations, and the zeroth law, whose transitivity of thermal equilibrium is what lets temperature exist as a number. The ideal-gas thermometer turns that number into a scale, and an equation of state ties the variables into a surface.\n",{"path":5629,"title":5630,"module":3690,"summary":5631},"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work","The First Law: Internal Energy, Heat, and Work","The first law is energy conservation for a system that exchanges energy as both heat and work. Internal energy is a state function with an exact differential; heat and work are path-dependent process quantities. This lesson states $\\d U=\\delta Q+\\delta W$, computes compression work as an area on the $P$–$V$ plane, defines the heat capacities $C_V$ and $C_P$ and the enthalpy that makes $C_P$ natural, and works the isothermal and adiabatic processes of an ideal gas, including the adiabat $PV^\\gamma=\\text{const}$.\n",{"path":5633,"title":5634,"module":3690,"summary":5635},"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound","The Second Law, Carnot Cycles, and Entropy","The second law forbids the free conversion of heat into work. This lesson states the Kelvin and Clausius forms, proves them equivalent, and analyzes the Carnot cycle to get the efficiency bound $1-T_c\u002FT_h$. Carnot's theorem makes that bound universal and defines the thermodynamic temperature scale. The Clausius inequality $\\oint \\delta Q\u002FT\\le 0$ then constructs entropy as a state function, $\\d S=\\delta Q_{\\rm rev}\u002FT$, whose non-decrease in isolated systems is the arrow of time.\n",{"path":5637,"title":5638,"module":3690,"summary":5639},"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations","Thermodynamic Potentials and Maxwell Relations","The fundamental relation $\\d U=T\\,\\d S-P\\,\\d V+\\mu\\,\\d N$ packages the first and second laws into one exact differential. Legendre transforms swap each conjugate pair to produce the Helmholtz, enthalpy, Gibbs, and grand potentials, each minimized under its own natural variables. Equality of mixed second partials of these potentials gives the Maxwell relations, which convert unmeasurable entropy derivatives into measurable ones from the equation of state.\n",{"path":5641,"title":5642,"module":3690,"summary":5643},"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law","Response Functions, Stability, and the Third Law","Response functions — heat capacities, compressibilities, thermal expansion — are the second derivatives of the potentials and the quantities an experiment actually measures. This lesson derives the general relation $C_P-C_V=TV\\alpha^2\u002F\\kappa_T$, shows that convexity of the potentials forces the stability conditions $C_V>0$ and $\\kappa_T>0$, and states the third law: entropy approaches a constant as $T\\to0$, so heat capacities and expansion coefficients vanish there and absolute zero is unattainable.\n",{"path":5645,"title":5646,"module":5647,"summary":5648},"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition","Classical Statistics and Equipartition","Microstates, Phase Space, and Statistical Entropy","A liter of gas holds on the order of a trillion trillion molecules, far too many to track by their equations of motion. Classical statistical mechanics replaces the trajectories with a single probability law, the Boltzmann distribution, and reads the measurable properties of matter off it: the Maxwell speed distribution, the average energy per degree of freedom, and the heat capacities of gases and solids — together with the low-temperature failures that forced the quantum revision.\n",{"path":5650,"title":5651,"module":5647,"summary":5652},"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem","Phase Space, Trajectories, and Liouville's Theorem","A classical system of N particles is one point in a 6N-dimensional phase space, and its evolution is a single trajectory driven by Hamilton's equations. This lesson builds that geometric picture, introduces the phase-space density of an ensemble, and proves Liouville's theorem: the density is carried by the flow as an incompressible fluid, so phase-space volume is conserved. The stationary densities of equilibrium follow as functions of the conserved quantities alone.\n",{"path":5654,"title":5655,"module":5647,"summary":5656},"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate","Ensembles and the Postulate of Equal a Priori Probabilities","An ensemble is a probability distribution over the microstates of a system. This lesson states the single postulate on which equilibrium statistical mechanics rests — that an isolated system in equilibrium is equally likely to be in any of its accessible microstates — and works out its consequences: the accessible phase-space volume, the overwhelming dominance of the most probable macrostate as the particle number grows, and the ergodic hypothesis that lets a time average be replaced by an ensemble average.\n",{"path":5658,"title":5659,"module":5647,"summary":5660},"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs","Statistical Entropy: Boltzmann and Gibbs","Entropy is the logarithm of the number of accessible microstates. This lesson builds the two statistical entropies — Boltzmann's S = k ln Omega for an isolated system and Gibbs's S = -k sum p ln p for any ensemble — proves they agree for a uniform distribution, and connects both to Shannon's measure of missing information. The second law emerges as the drift toward maximum multiplicity, and maximizing the Gibbs entropy under constraints previews the canonical distribution.\n",{"path":5662,"title":5663,"module":5664,"summary":5665},"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy","The Microcanonical Ensemble and Statistical Entropy","The Microcanonical Ensemble","An isolated system holds its energy, volume, and particle number fixed, and the fundamental postulate assigns equal probability to every microstate on its energy shell. This lesson builds the microcanonical distribution, defines the enclosed phase-space volume $\\Gamma(E)$, the surface density of states $\\omega(E)=\\d\\Gamma\u002F\\d E$, and the shell count $\\Omega(E)$, shows their logarithms agree to $O(\\ln N)$ for large $N$, and reads the Boltzmann entropy $S=k\\ln\\Omega$ off the count. The measure factors $h^{3N}$ and $N!$ enter here and make $S$ extensive.\n",{"path":5667,"title":5668,"module":5664,"summary":5669},"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential","Thermal, Mechanical, and Diffusive Equilibrium","Two isolated subsystems that can exchange energy, volume, or particles reach equilibrium at the partition that maximizes their combined entropy. Setting the derivative of the total entropy to zero identifies the statistical definitions $1\u002FT=(\\partial S\u002F\\partial E)$, $P\u002FT=(\\partial S\u002F\\partial V)$, and $-\\mu\u002FT=(\\partial S\u002F\\partial N)$, shows heat flows from hot to cold as an entropy increase, and recovers the fundamental relation $\\d S=(\\d E+P\\,\\d V-\\mu\\,\\d N)\u002FT$ from pure counting.\n",{"path":5671,"title":5672,"module":5664,"summary":5673},"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy","The Ideal Gas, Phase-Space Volume, and the Sackur–Tetrode Entropy","The monatomic ideal gas is the first system whose microcanonical count can be done in closed form. The momentum integral is the volume of a $3N$-dimensional ball of radius $\\sqrt{2mE}$, the configuration integral is $V^N$, and together they give the Sackur–Tetrode entropy $S=Nk[\\ln(V\u002FN\\lambda^3)+5\u002F2]$ with the thermal wavelength $\\lambda=h\u002F\\sqrt{2\\pi mkT}$. The formula matches the measured entropy of helium, fixes the classical regime $n\\ll n_Q$, and shows why the $N!$ is needed for extensivity.\n",{"path":5675,"title":5676,"module":5664,"summary":5677},"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature","Two-State Systems, Paramagnets, and Negative Temperature","The ideal two-state paramagnet has a multiplicity counted by the binomial coefficient, an entropy that is an inverted dome in the energy, and a temperature read from the slope $1\u002FT=\\partial S\u002F\\partial E$. Because the energy is bounded above, the slope changes sign past the entropy maximum: a population-inverted spin system has a negative absolute temperature, which is hotter than any positive temperature. Nuclear-spin experiments and lasers realize the inverted state.\n",{"path":5679,"title":5680,"module":5681,"summary":5682},"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution","The Canonical Ensemble and the Boltzmann Distribution","The Canonical Ensemble","A system held at fixed temperature by contact with a heat reservoir is described by the canonical ensemble. Expanding the reservoir entropy to first order in the system energy gives the Boltzmann distribution $p_i\\propto e^{-\\beta E_i}$, and the same law follows from maximizing the Gibbs entropy at fixed mean energy. Both routes identify $\\beta=1\u002Fk_BT$ and fix the probability of every microstate from the temperature alone.\n",{"path":5684,"title":5685,"module":5681,"summary":5686},"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy","The Partition Function and the Helmholtz Free Energy","The normalizing sum of the Boltzmann distribution, the partition function $Z=\\sum_i e^{-\\beta E_i}$, is a generating function for the thermodynamics. The mean energy is $-\\partial\\ln Z\u002F\\partial\\beta$, and the Gibbs entropy of the canonical distribution collapses to the bridge relation $F=-k_BT\\ln Z$. From $F$ every thermodynamic quantity follows by differentiation, and $Z$ factorizes over independent degrees of freedom.\n",{"path":5688,"title":5689,"module":5681,"summary":5690},"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence","Energy Fluctuations and the Equivalence of Ensembles","In the canonical ensemble the energy fluctuates, and the second derivative of $\\ln Z$ gives its variance. The fluctuation–response identity $\\langle\\Delta E^2\\rangle = k_BT^2C_V$ ties the spread of the energy to the heat capacity, and the relative fluctuation falls as $1\u002F\\sqrt{N}$. In the thermodynamic limit the canonical energy distribution is a sharp spike, and the canonical and microcanonical ensembles predict the same thermodynamics.\n",{"path":5692,"title":5693,"module":5681,"summary":5694},"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems","Harmonic Systems: The Einstein Solid and Vibrational Heat Capacity","A quantum harmonic oscillator has a geometric partition function summed in closed form, giving a mean energy $\\hbar\\omega(\\tfrac12+\\langle n\\rangle)$ with the Bose occupation factor. Modeling a solid as $3N$ independent oscillators yields a heat capacity that rises from zero and saturates at the Dulong–Petit value $3Nk_B$. The Einstein temperature sets the crossover, and the model's exponential low-temperature falloff, too steep against the observed $T^3$, motivates the Debye theory.\n",{"path":5696,"title":5697,"module":5681,"summary":5698},"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly","Paramagnetism, Two-Level Systems, and the Schottky Anomaly","A magnetic moment in a field is a two-level system whose partition function is a hyperbolic cosine. The magnetization of a spin-$\\tfrac12$ paramagnet is $N\\mu\\tanh(\\mu B\u002Fk_BT)$, generalizing to the Brillouin function for spin $J$; it gives Curie's law $\\chi\\propto 1\u002FT$ at high temperature and saturates at low temperature. A finite level gap produces the Schottky heat-capacity peak, and the temperature dependence of the entropy on the field is the basis of adiabatic demagnetization cooling.\n",{"path":5700,"title":5701,"module":5702,"summary":5703},"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox","The Ideal Gas Partition Function and the Gibbs Paradox","The Classical Ideal Gas","The classical monatomic ideal gas built from the partition function. The single-particle sum is $z_1=V\u002F\\lambda^3$ with the thermal de Broglie wavelength $\\lambda$; the $N$-particle partition function is $z_1^N\u002FN!$, and the $N!$ is forced by indistinguishability. From $Z$ the ideal-gas law, $U=\\tfrac32 Nk_BT$, and the Sackur–Tetrode entropy follow. The $N!$ makes the entropy extensive and resolves the Gibbs paradox: mixing identical gases produces no entropy change.\n",{"path":5705,"title":5706,"module":5702,"summary":5707},"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem","Equipartition and the Virial Theorem","The equipartition theorem derived from the canonical ensemble: every phase-space coordinate that enters the Hamiltonian quadratically carries a mean energy $\\tfrac12 k_BT$. The generalized form $\\langle x_i\\,\\partial H\u002F\\partial x_j\\rangle = k_BT\\,\\delta_{ij}$ contains equipartition and the classical virial theorem as special cases. Equipartition fixes the classical heat capacities, fails by quantum freeze-out when a level gap exceeds $k_BT$, and shifts for a relativistic gas whose energy is linear rather than quadratic in momentum.\n",{"path":5709,"title":5710,"module":5702,"summary":5711},"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration","Molecular Gases: Rotational and Vibrational Degrees of Freedom","The internal partition function of a diatomic gas factorizes into translational, rotational, vibrational, and electronic parts. The rigid rotor gives a rotational temperature $\\theta_{\\rm rot}$; the harmonic bond gives a vibrational temperature $\\theta_{\\rm vib}$. Each mode contributes to the heat capacity only above its characteristic temperature, producing the diatomic $C_V$ staircase from $\\tfrac32 R$ to $\\tfrac52 R$ to $\\tfrac72 R$. Homonuclear molecules carry a symmetry number, and hydrogen splits into ortho and para species.\n",{"path":5713,"title":5714,"module":5715,"summary":5716},"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function","The Grand Canonical Ensemble","Grand Canonical Ensemble","When a system exchanges both energy and particles with a reservoir, the reservoir fixes its temperature and its chemical potential. Expanding the reservoir entropy to first order in the exchanged energy and particle number gives the Gibbs factor $e^{-\\beta(E-\\mu N)}$, and summing it over every microstate of every particle number gives the grand partition function $\\Xi$. The grand potential $\\Phi = -k_BT\\ln\\Xi = -PV$ generates the mean particle number, energy, entropy, and pressure by differentiation.\n",{"path":5718,"title":5719,"module":5715,"summary":5720},"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations","Chemical Potential, Fugacity, and Number Fluctuations","The chemical potential is the energy to add one particle at fixed entropy and volume, equal to the slope of the free energy in the particle number. For the classical ideal gas $\\mu=k_BT\\ln(n\\lambda^3)$ is large and negative, and the fugacity $z=n\\lambda^3$ is small. The grand ensemble makes the particle number fluctuate; its variance $\\langle\\Delta N^2\\rangle=k_BT(\\partial N\u002F\\partial\\mu)$ equals $k_BT\\,N^2\\kappa_T\u002FV$, tying density fluctuations to the isothermal compressibility. Equality of $\\mu$ is the condition for diffusive equilibrium and phase coexistence.\n",{"path":5722,"title":5723,"module":5715,"summary":5724},"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web","The Three Ensembles and the Thermodynamic Web","The microcanonical, canonical, and grand canonical ensembles hold different variables fixed and generate different potentials — the entropy $S$, the Helmholtz free energy $F$, and the grand potential $\\Phi$ — linked by Legendre transforms that trade each fixed variable for its conjugate. Each successive ensemble lets one more quantity fluctuate. In the thermodynamic limit the three agree, the relative fluctuations vanishing as $1\u002F\\sqrt{N}$; the ideal gas gives the same equation of state in all three. The choice of ensemble is a matter of convenience, set by which sum is easiest.\n",{"path":5726,"title":5727,"module":5728,"summary":5729},"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac","Quantum Statistics — Bose-Einstein and Fermi-Dirac","Quantum Statistics","Quantum particles of the same kind are genuinely indistinguishable: no label survives an overlap of their wave functions. Counting states with that constraint replaces the Boltzmann distribution with two quantum laws — the Bose-Einstein distribution for integer-spin particles, which clump into shared states, and the Fermi-Dirac distribution for half-integer-spin particles, which exclude one another. Both reduce to Boltzmann in the dilute, hot limit, and a de Broglie criterion says exactly when.\n",{"path":5731,"title":5732,"module":5728,"summary":5733},"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions","Deriving the Quantum Distributions from the Grand Ensemble","The Bose-Einstein and Fermi-Dirac distributions follow from one observation: in the occupation-number representation the single-particle modes are independent, so the grand partition function factorizes into one factor per mode. A boson mode sums a geometric series over all occupancies; a fermion mode sums two terms. Differentiating each factor gives the mean occupation $1\u002F(e^{\\beta(\\varepsilon-\\mu)}\\mp 1)$, the Maxwell-Boltzmann limit when occupancies are small, and the occupation fluctuations that distinguish bunching from anti-bunching.\n",{"path":5735,"title":5736,"module":5728,"summary":5737},"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration","The Classical Limit and Quantum Concentration","When every single-particle level is nearly empty, both quantum distributions collapse to the Maxwell-Boltzmann form, and the fugacity equals the ratio of the number density to the quantum concentration $n_Q = 1\u002F\\lambda^3$. The gas is classical when $n \\ll n_Q$, degenerate when $n \\gtrsim n_Q$. The chemical potential is large and negative in the classical regime and rises through zero as the gas degenerates. The leading quantum correction to the ideal-gas law is a second virial term that lowers the pressure for bosons and raises it for fermions — a statistical attraction and repulsion with no interaction behind it.\n",{"path":5739,"title":5740,"module":5728,"summary":5741},"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework","Ideal Quantum Gases: The General Framework","Every ideal quantum gas is handled by one calculation. The sum over single-particle modes becomes an energy integral weighted by a density of states $g(\\varepsilon)\\propto\\varepsilon^{1\u002F2}$, and the number and pressure reduce to the Bose and Fermi functions $g_\\nu(z)$ and $f_\\nu(z)$ of the fugacity. An integration by parts fixes $PV=\\tfrac23 U$ for a nonrelativistic gas and $PV=\\tfrac13 U$ for an ultrarelativistic one, independent of statistics. Specializing the density of states and the chemical potential then produces the photon gas, phonons, the Bose gas, and the Fermi gas as four branches of the same framework.\n",{"path":5743,"title":5744,"module":5745,"summary":5746},"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas","Bose-Einstein Condensation and the Fermion Gas","Bosonic Systems","Below a critical temperature a boson gas drops a macroscopic fraction of its particles into the single ground state — Bose-Einstein condensation, the mechanism behind superfluid helium and the dilute-atom condensates cooled to nanokelvin. The same statistics applied to a photon gas reproduces Planck's blackbody spectrum. Fermions do the opposite: forbidden from sharing states, they fill every level up to the Fermi energy, and that filled sea governs the electrons in metals and the pressure that holds up a white dwarf.\n",{"path":5748,"title":5749,"module":5745,"summary":5750},"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law","The Photon Gas and Planck's Radiation Law","Electromagnetic radiation in equilibrium with cavity walls is a gas of non-conserved bosons, and non-conservation forces the chemical potential to zero. Counting standing-wave modes with two polarizations and weighting each by the Bose occupation gives the Planck spectral energy density. Its low-frequency tail reproduces the classical Rayleigh-Jeans law and the ultraviolet catastrophe; the Bose factor cuts the divergence off at high frequency and the peak obeys Wien's displacement law.\n",{"path":5752,"title":5753,"module":5745,"summary":5754},"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure","Blackbody Thermodynamics and Radiation Pressure","Integrating the Planck spectrum over all frequencies gives the total energy density proportional to the fourth power of temperature — the Stefan-Boltzmann law — and the isotropy of a relativistic gas fixes the radiation pressure at one third of the energy density. From the free energy follow the entropy and heat capacity, both proportional to T cubed, and the adiabatic law for radiation. The results govern the pressure inside stars and the cooling of the cosmic microwave background as the universe expands.\n",{"path":5756,"title":5757,"module":5745,"summary":5758},"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model","Phonons and the Debye Model","The vibrations of a crystal lattice are quantized into phonons — bosons of zero chemical potential, counted exactly like cavity photons but with three polarizations, a finite sound speed, and a total of 3N modes. The Debye model replaces the true dispersion by a linear one cut off at a frequency that enforces that count. It gives the correct low-temperature T-cubed heat capacity the Einstein model missed and recovers the Dulong-Petit value at high temperature.\n",{"path":5760,"title":5761,"module":5745,"summary":5762},"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived","Bose-Einstein Condensation Derived","For a gas of conserved bosons the excited states can hold only a finite number of particles at fixed temperature, set by the Bose function at unit fugacity. When the total exceeds that ceiling the surplus collapses into the single ground state, which the continuum density-of-states integral misses and which must be restored by hand. This fixes the critical temperature, the condensate fraction, and the fact that a uniform gas condenses only in three or more dimensions.\n",{"path":5764,"title":5765,"module":5745,"summary":5766},"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity","Thermodynamics of the Bose Gas and Superfluidity","The energy and pressure of the ideal Bose gas follow from the Bose function at the order above the density, and below the critical temperature the pressure depends on temperature alone because the condensate carries none. The heat capacity rises to a cusp at the transition. Real superfluid helium departs from the ideal gas because interactions matter: the Landau criterion ties frictionless flow to the phonon-roton excitation spectrum, and the two-fluid model carries a second sound.\n",{"path":5768,"title":5769,"module":5770,"summary":5771},"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature","The Ideal Fermi Gas at Zero Temperature","Degenerate Fermi Gas","At absolute zero a gas of non-interacting fermions fills every single-particle state up to the Fermi energy and leaves the rest empty, a filled Fermi sphere in momentum space. This lesson computes the Fermi momentum, energy, and temperature from the density, the density of states, the total ground-state energy, and the degeneracy pressure that grows as $n^{5\u002F3}$. Numerical Fermi energies for metals set the scale: they are electron-volts, so room temperature is deep in the degenerate regime.\n",{"path":5773,"title":5774,"module":5770,"summary":5775},"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals","The Sommerfeld Expansion and Electrons in Metals","Turning on a small temperature blurs the Fermi step over a shell of width $k_BT$ around $\\epsilon_F$. The Sommerfeld expansion turns integrals over the Fermi function into a power series in $(k_BT\u002F\\epsilon_F)^2$, giving the shift of the chemical potential and a heat capacity linear in $T$. This resolves the old puzzle of the missing electronic heat capacity, predicts the combined $C=\\gamma T+AT^3$ of a metal, and gives the temperature-independent Pauli paramagnetism of the electron gas.\n",{"path":5777,"title":5778,"module":5770,"summary":5779},"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit","White Dwarfs and the Chandrasekhar Limit","A white dwarf is held up against its own gravity by the degeneracy pressure of its electrons. Balancing that pressure against gravity gives a mass-radius relation $R\\propto M^{-1\u002F3}$: heavier white dwarfs are smaller and denser. As the density rises the electrons turn relativistic, the pressure softens from $n^{5\u002F3}$ to $n^{4\u002F3}$, and the star can no longer support itself above a critical mass. This lesson derives that Chandrasekhar mass, about $1.4\\,M_\\odot$, and what lies beyond it.\n",{"path":5781,"title":5782,"module":5770,"summary":5783},"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter","Neutron Stars and Dense Matter","When a collapsing core passes nuclear density, electron capture converts the matter to neutrons and their degeneracy pressure takes over. The same balance that fixes a white dwarf, rescaled by the neutron mass, gives a neutron star of a few solar masses in a ten-kilometre radius. General relativity is no longer a correction: the Tolman-Oppenheimer-Volkoff equation replaces the Newtonian balance and sets a maximum mass around two solar masses. This lesson rescales the Fermi-gas argument, states where it breaks, and places the compact objects in one stability sequence.\n",{"path":5785,"title":5786,"module":5787,"summary":5788},"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients","The Cluster Expansion and Virial Coefficients","Interacting Gases","A real gas departs from $PV=Nk_BT$ because its molecules interact. The configuration integral factors through the Mayer function $f_{ij}=e^{-\\beta u_{ij}}-1$, and expanding it in powers of density produces the virial expansion $PV\u002FNk_BT = 1 + B_2(T)n + B_3(T)n^2 + \\cdots$. The second virial coefficient $B_2(T)=-\\tfrac12\\int f\\,\\d^3r$ is a single integral over the pair potential; it is positive for a hard core, negative for an attractive well, and vanishes at the Boyle temperature where the two balance.\n",{"path":5790,"title":5791,"module":5787,"summary":5792},"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence","The van der Waals Gas and Liquid-Gas Coexistence","Resumming the second virial coefficient $B_2=b-a\u002Fk_BT$ into an equation of state gives the van der Waals model $(P+a\u002Fv^2)(v-b)=k_BT$, the simplest theory of a fluid that condenses. Below the critical temperature its isotherms develop a mechanically unstable loop; the Maxwell equal-area construction replaces the loop with a coexistence tie line. The critical point sits at $v_c=3b$, $k_BT_c=8a\u002F27b$, $P_c=a\u002F27b^2$, and the model predicts universal but incorrect critical exponents because it ignores fluctuations.\n",{"path":5794,"title":5795,"module":5787,"summary":5796},"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange","Quantum Gases with Interactions and Statistical Exchange","A quantum gas has a nonzero second virial coefficient even with no forces between the particles: symmetrization alone produces an effective statistical interaction, attractive for bosons and repulsive for fermions, with range the thermal wavelength $\\lambda$. This lesson derives that exchange contribution $B_2=\\mp\\lambda^3\u002F2^{5\u002F2}g$, writes it as a statistical potential $v_s(r)=-k_BT\\ln(1\\pm e^{-2\\pi r^2\u002F\\lambda^2})$, and shows how real interactions add on top through the Beth-Uhlenbeck phase-shift formula, reducing at low temperature to a single scattering length.\n",{"path":5798,"title":5799,"module":5800,"summary":5801},"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification","Phases, Coexistence, and the Classification of Transitions","Phase Transitions","A phase transition is a point where the free energy of a substance loses analyticity, so a small change in temperature or pressure produces a qualitative change of state. This lesson maps the coexistence curves of a pure substance, derives the Clausius-Clapeyron relation between the slope of a coexistence line and its latent heat, and separates first-order transitions (discontinuous entropy and density) from continuous ones (a vanishing order parameter and divergent response). The Ehrenfest scheme, the order parameter, and the triple and critical points fix the vocabulary the rest of the module builds on.\n",{"path":5803,"title":5804,"module":5800,"summary":5805},"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions","The Ising Model and Exact Results","The Ising model reduces cooperative ordering to spins on a lattice coupled to their neighbors, and the same Hamiltonian describes uniaxial magnets, the liquid-gas critical point through the lattice gas, and binary alloys. This lesson solves the one-dimensional chain exactly with the transfer matrix, shows by a domain-wall argument why one dimension has no ordered phase at any positive temperature, contrasts the survival of order in two dimensions, and quotes Onsager's exact two-dimensional results: the critical temperature, the logarithmically divergent heat capacity, and the magnetization exponent one eighth.\n",{"path":5807,"title":5808,"module":5800,"summary":5809},"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model","Mean-Field Theory and Spontaneous Symmetry Breaking","Mean-field theory replaces the neighbors of each spin by their average, turning the interacting Ising model into a single spin in a self-consistent field. The resulting equation m = tanh(beta J z m + beta h) has only the zero solution above a critical temperature and gains a nonzero root below it, giving spontaneous magnetization and a mean-field critical temperature k T_c = J z. The Bragg-Williams free energy turns single-welled above T_c and double-welled below, the picture of spontaneous symmetry breaking. The approximation is exact in high dimension and fails below the upper critical dimension four, quantified by the Ginzburg criterion.\n",{"path":5811,"title":5812,"module":5800,"summary":5813},"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory","Critical Exponents, Scaling, and Landau Theory","Near a continuous transition every singular quantity follows a power law in the reduced temperature, and the exponents alpha, beta, gamma, delta, nu, and eta encode the transition more sharply than T_c itself. Landau theory expands the free energy in the order parameter and delivers the mean-field exponents in a few lines. They disagree with experiment and with the exact two-dimensional Ising values, but the exponents are not independent: the scaling relations of Rushbrooke, Widom, Fisher, and Josephson tie them together, and the correlation length sets the length scale that organizes universality classes.\n",{"path":5815,"title":5816,"module":5800,"summary":5817},"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea","Scaling and the Renormalization-Group Idea","At a critical point fluctuations exist on every length scale, so the system looks the same after coarse-graining. The renormalization group makes this self-similarity a computation: group spins into blocks, integrate out the short scales, and track how the couplings change. The transformation has fixed points, and the flow near a critical fixed point separates relevant couplings that grow from irrelevant ones that shrink, which is why only dimension and symmetry survive to set the exponents. The one-dimensional Ising decimation carries the whole scheme through in closed form and reproduces the absence of a finite-temperature transition.\n",{"path":5819,"title":5820,"module":5821,"summary":5822},"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response","Thermodynamic Fluctuations and Response Functions","Fluctuations and Response","Thermodynamic variables are sharp only on average; a macroscopic system in equilibrium fluctuates about its mean values. Einstein inverted Boltzmann's $S=k_B\\ln\\Omega$ into a Gaussian probability for a fluctuation, $w\\propto e^{\\Delta S\u002Fk_B}$, and the second moments it predicts reproduce the response functions: $\\langle\\Delta E^2\\rangle=k_BT^2C_V$, $\\langle\\Delta V^2\\rangle=k_BTV\\kappa_T$, $\\langle\\Delta M^2\\rangle=k_BT\\chi_T$. The variances diverge where the responses diverge, at a critical point, producing critical opalescence and the breakdown of the thermodynamic description.\n",{"path":5824,"title":5825,"module":5821,"summary":5826},"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation","Brownian Motion and the Langevin Equation","A pollen grain in water executes a random walk driven by molecular collisions. Einstein tied its diffusion constant to its mobility, $D=\\mu_{\\mathrm{mob}}k_BT$, turning a visible motion into a measurement of Avogadro's number. The Langevin equation splits the collisions into a systematic drag and a random force whose strength is fixed by the drag through $\\langle\\xi(t)\\xi(t')\\rangle=2\\gamma k_BT\\,\\delta(t-t')$ — the first fluctuation–dissipation relation. The mean-square displacement grows ballistically at short times and linearly, $\\langle r^2\\rangle=2dDt$, at long times, and the Stokes–Einstein relation $D=k_BT\u002F6\\pi\\eta a$ closes the loop to Perrin's experiments.\n",{"path":5828,"title":5829,"module":5821,"summary":5830},"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem","Linear Response and the Fluctuation-Dissipation Theorem","A system driven by a weak external field responds through a generalized susceptibility $\\chi(\\omega)$ whose imaginary part measures dissipation. The Wiener–Khinchin theorem makes the power spectrum of equilibrium fluctuations the Fourier transform of their correlation function, and the fluctuation–dissipation theorem ties the two together: $S_x(\\omega)=(2k_BT\u002F\\omega)\\,\\chi''(\\omega)$, so the spectrum of spontaneous fluctuations is fixed by the dissipative response. The Johnson–Nyquist noise of a resistor, $\\langle V^2\\rangle=4k_BTR\\,\\Delta f$, is the canonical example, and Onsager reciprocity closes the subject.\n",{"path":5832,"title":5833,"module":306,"summary":306},"\u002Fstatistical-mechanics","Statistical Mechanics",{"path":5835,"title":5836,"module":5837,"summary":5838},"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms","Bonding Mechanisms","Molecules and Chemical Bonding","A molecule forms when the total energy of two atoms drops below the energy of the separated pair. This lesson works through the four mechanisms that produce that minimum: the ionic bond from charge transfer, the covalent bond from shared electron wave functions, the metallic bond, and the weak dipole-dipole and hydrogen bonds, computing bond lengths and dissociation energies for NaCl, H₂, and H₂⁺.\n",{"path":5840,"title":5841,"module":5837,"summary":5842},"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus","The Molecular-Orbital Method and H₂⁺","The hydrogen molecule ion is the two-center problem that fixes the language of chemical bonding. This lesson builds the molecular orbital as a linear combination of atomic orbitals, minimizes the energy through the variational secular equation, and reduces the result to three two-center integrals: the overlap, the Coulomb term, and the exchange (resonance) integral. The bonding and antibonding levels, their potential-energy curves, and the charge piled between the nuclei follow from those integrals.\n",{"path":5844,"title":5845,"module":5837,"summary":5846},"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange","The Hydrogen Molecule, Exchange, and Hybridization","Adding the second electron turns the one-electron ion into the two-electron hydrogen molecule, where electron-electron repulsion and the Pauli principle govern the bond. This lesson contrasts the Heitler-London valence-bond and molecular-orbital wave functions, derives the singlet-triplet splitting as an exchange energy, shows why naive molecular orbitals fail at dissociation, and builds the sp, sp², and sp³ hybrids that fix the directed geometry of covalent bonds.\n",{"path":5848,"title":5849,"module":5837,"summary":5850},"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces","Van der Waals Forces","The bond of last resort acts between all atoms, even closed-shell noble gases with no permanent moment. This lesson separates the three van der Waals contributions — Keesom orientation, Debye induction, and London dispersion — derives the London 1\u002Fr⁶ attraction from the coupled-oscillator and second-order perturbation pictures, and assembles the Lennard-Jones potential to compute the equilibrium spacing and cohesive energy of the noble-gas crystals, argon in particular.\n",{"path":5852,"title":5853,"module":5854,"summary":5855},"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra","Rotational and Vibrational Spectra of Molecules","Molecular Spectra","A diatomic molecule stores energy in three well-separated ledgers: electronic, vibrational, and rotational. Quantizing the rigid rotor gives levels spaced as ℓ(ℓ+1); quantizing the bond as a harmonic oscillator gives equally spaced vibrational levels. Their combination produces the P and R branches of an infrared absorption band, from which the bond length and force constant are read directly.\n",{"path":5857,"title":5858,"module":5854,"summary":5859},"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure","Anharmonicity and Rovibrational Structure","The rigid rotor and harmonic oscillator are first approximations. A real bond follows the Morse potential, whose levels converge toward dissociation; a real rotor stretches centrifugally; and vibration couples to rotation, so the rotational constant depends on the vibrational level. This lesson works out the anharmonic and centrifugal corrections, the Birge-Sponer route to the dissociation energy, the isotope shift, and the thermal band envelope.\n",{"path":5861,"title":5862,"module":5854,"summary":5863},"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands","Raman Scattering and Electronic Bands","Not every vibration absorbs in the infrared. Raman scattering reaches modes that modulate the polarizability, giving Stokes and anti-Stokes lines whose intensity ratio measures temperature, and the mutual-exclusion rule pairs it with infrared absorption. Electronic transitions add the vibronic structure of band spectra, governed by the Franck-Condon principle, and the radiative fates of an excited state are sorted by the Jablonski diagram into fluorescence and phosphorescence.\n",{"path":5865,"title":5866,"module":5854,"summary":5867},"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers","Lasers, Masers, and Stimulated Emission","Einstein's three radiative processes — absorption, spontaneous emission, and stimulated emission — and the coefficients that relate them. Stimulated emission produces coherent photons, and inverting the level populations turns it into net amplification. We build the ruby three-level laser and the helium-neon four-level laser, and show why the fourth level makes inversion easy.\n",{"path":5869,"title":5870,"module":5871,"summary":5872},"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids","The Structure of Solids","Crystal Structure","A crystal is a unit cell repeated in three dimensions. We classify the common cubic lattices, compute the Coulomb energy of an ionic crystal through the Madelung constant, and show how the divergent naive lattice sum is tamed by cubic shells. The cohesive energy that results predicts melting points and connects the diatomic bond of an earlier lesson to the bulk solid.\n",{"path":5874,"title":5875,"module":5871,"summary":5876},"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems","Bravais Lattices, Bases, and Crystal Structures","A crystal is a Bravais lattice decorated by a basis. This lesson separates the two, builds primitive and Wigner-Seitz cells, enumerates the seven crystal systems and fourteen Bravais lattices, and fixes the language of point and space groups. Miller indices label planes and directions, and the packing fractions of the close-packed, cubic, and diamond structures follow from the geometry.\n",{"path":5878,"title":5879,"module":5871,"summary":5880},"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones","The Reciprocal Lattice and Brillouin Zones","Every periodic crystal has a dual lattice in wavevector space. This lesson defines the reciprocal lattice through the condition b_i dot a_j equals two pi delta, derives its properties, shows the reciprocal of fcc is bcc, links reciprocal vectors to families of lattice planes, and builds the first Brillouin zone as the Wigner-Seitz cell of the reciprocal lattice, including the higher zones.\n",{"path":5882,"title":5883,"module":5871,"summary":5884},"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors","X-ray and Neutron Diffraction","A crystal diffracts radiation whose wavelength matches its atomic spacing. This lesson derives the Bragg condition, the equivalent Laue condition 2k dot G equals G squared, and the Ewald-sphere construction, then computes the geometric structure factor that produces systematic absences for bcc and fcc, the atomic form factor, and the powder method. It closes on why neutrons and electrons complement X-rays.\n",{"path":5886,"title":5887,"module":5888,"summary":5889},"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion","The Harmonic Crystal and Phonon Dispersion","Lattice Dynamics","Atoms in a crystal vibrate about their equilibrium sites, and expanding the potential to second order turns the whole lattice into a set of coupled harmonic oscillators. This lesson sets up the harmonic approximation and the dynamical matrix, solves the monatomic linear chain for its dispersion omega(k) = 2 sqrt(K\u002FM) times the absolute sine of ka over two, explains why wavevectors outside the first Brillouin zone are redundant, and extends the chain to two atoms per cell to produce acoustic and optical branches with a frequency gap.\n",{"path":5891,"title":5892,"module":5888,"summary":5893},"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos","Phonons, Density of States, and Crystal Momentum","Quantizing the normal modes of a harmonic crystal turns each vibrational mode into a quantum oscillator whose excitations are phonons. This lesson counts phonons with Bose-Einstein statistics, defines crystal momentum and the normal versus Umklapp distinction in momentum conservation, builds the density of states with its van Hove singularities, and shows how inelastic neutron scattering measures a dispersion curve point by point.\n",{"path":5895,"title":5896,"module":5888,"summary":5897},"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity","Thermal Properties — Einstein and Debye Models","The lattice heat capacity follows the classical Dulong-Petit value at high temperature but collapses toward zero as T approaches zero, a purely quantum effect. This lesson derives that behavior from the Einstein model of a single frequency, then the Debye model of a linear phonon spectrum with a cutoff, obtaining the Debye T-cubed law at low temperature and the Debye interpolation across all temperatures, and closes with thermal expansion and the Gruneisen parameter.\n",{"path":5899,"title":5900,"module":5888,"summary":5901},"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport","Anharmonicity, Thermal Expansion, and Heat Conduction","A perfectly harmonic crystal neither expands when heated nor resists heat flow. Both effects come from the cubic and higher terms the harmonic approximation discards. This lesson derives thermal expansion from an asymmetric interatomic potential, treats phonon-phonon scattering as the decay channel these terms open, shows why Umklapp processes are what make lattice thermal conductivity finite, and traces the temperature dependence of the conductivity and the phonon mean free path.\n",{"path":5903,"title":5904,"module":5905,"summary":5906},"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction","Conduction and the Free-Electron Gas","Free-Electron Fermi Gas","Drude's classical free-electron model gets Ohm's law right but the resistivity, its temperature dependence, and the heat capacity wrong. Replacing the Maxwell-Boltzmann distribution with the Fermi-Dirac distribution and treating electron-lattice collisions as wave scattering repairs all three: the Fermi energy, Fermi speed, and a mean free path set by thermal lattice vibrations.\n",{"path":5908,"title":5909,"module":5905,"summary":5910},"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity","The Sommerfeld Model: Ground State and Heat Capacity","Quantizing the free-electron gas in a box fills a Fermi sphere in k-space. The density of states grows as the square root of energy in three dimensions, and the Fermi energy, temperature, and wavevector follow for real metals. The Sommerfeld expansion shows only a thermal shell of width k_BT near E_F is excited, giving an electronic heat capacity linear in T that sits beneath the phonon T-cubed term.\n",{"path":5912,"title":5913,"module":5905,"summary":5914},"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect","Transport, Wiedemann–Franz, and the Hall Effect","The relaxation-time picture displaces the Fermi sphere under an applied field and gives the electrical conductivity ne-squared-tau over m. The same electrons carry heat, and their ratio yields the Wiedemann–Franz law with the universal Lorenz number. A magnetic field bends the carriers into cyclotron orbits and produces the Hall voltage, whose sign reveals the charge of the carriers.\n",{"path":5916,"title":5917,"module":5905,"summary":5918},"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons","Screening, Plasmons, and the Limits of Free Electrons","A mobile electron gas rearranges to screen any foreign charge, turning the bare Coulomb potential into a short-ranged Yukawa form over the Thomas–Fermi length. Displaced collectively, the gas rings at the plasma frequency, whose quantum is the plasmon and whose value sets the reflectivity edge of metals. A ledger of free-electron successes and failures then motivates band theory.\n",{"path":5920,"title":5921,"module":5922,"summary":5923},"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands","Bloch's Theorem and Energy Bands","Band Theory","An electron in a periodic potential has stationary states that are plane waves modulated by a lattice-periodic envelope. This lesson proves Bloch's theorem two ways, defines crystal momentum and the band index, counts the allowed wavevectors from Born–von Kármán boundary conditions, and sets up the extended, reduced, and repeated-zone descriptions of a band.\n",{"path":5925,"title":5926,"module":5922,"summary":5927},"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model","The Nearly-Free-Electron Model","A weak periodic potential leaves the free-electron parabola almost intact except near Brillouin-zone boundaries, where two nearly degenerate plane waves mix. This lesson solves the resulting two-by-two secular problem, shows the gap of size twice the potential component opening at each boundary, identifies the two standing waves that pile charge on and between the ions, and works the exactly solvable Kronig–Penney model.\n",{"path":5929,"title":5930,"module":5922,"summary":5931},"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method","The Tight-Binding Method","The opposite limit to nearly-free electrons builds bands from atomic orbitals. A Bloch sum of one orbital per site gives a dispersion set by the hopping integral between neighbours; the band widens from a sharp atomic level as the atoms approach. This lesson derives the s-band cosine dispersion, extends it to p-bands, and introduces Wannier functions as the localized dual of Bloch states.\n",{"path":5933,"title":5934,"module":5922,"summary":5935},"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics","Fermi Surfaces, Effective Mass, and Metals vs Insulators","Filling the bands settles which crystals conduct. A filled band carries no current, so a crystal with filled bands and a gap is an insulator, while a partly filled band makes a metal. This lesson derives the no-current theorem for a filled band, defines the Fermi surface and Harrison's construction, introduces holes and the effective mass from band curvature, and states the semiclassical equations of motion that lead to Bloch oscillations.\n",{"path":5937,"title":5938,"module":5939,"summary":5940},"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions","Band Theory and Semiconductors","Semiconductors","The periodic lattice splits atomic levels into allowed energy bands separated by forbidden gaps. Whether the highest occupied band is full or partly full, and how wide the gap above it is, sorts every solid into conductor, insulator, or semiconductor. Doping adds donor or acceptor levels inside the gap, and a p-n junction built from doped regions gives the diode, the solar cell, the LED, and the transistor.\n",{"path":5942,"title":5943,"module":5939,"summary":5944},"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors","Carrier Statistics: Intrinsic and Extrinsic Semiconductors","The number of mobile electrons and holes in a semiconductor follows from the density of states near each band edge and the Fermi-Dirac tail that reaches into it. This lesson derives the effective densities of states, the intrinsic concentration and its exponential gap dependence, the law of mass action, the temperature march of the Fermi level, and the freeze-out, saturation, and intrinsic regimes of a doped crystal.\n",{"path":5946,"title":5947,"module":5939,"summary":5948},"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination","Carrier Transport and Recombination","Carriers move by drift in a field and by diffusion down a concentration gradient, the two tied together by the Einstein relation. This lesson derives mobility and its scattering-limited temperature dependence, the drift and diffusion currents, the continuity equations, band-to-band and trap-assisted recombination, and the minority-carrier lifetime and diffusion length that set the length scale of every junction device.\n",{"path":5950,"title":5951,"module":5939,"summary":5952},"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction","The p-n Junction in Depth","Joining p-type and n-type silicon aligns their Fermi levels and leaves a depletion region of fixed charge with a built-in potential. This lesson derives the space-charge field and potential from Poisson's equation in the depletion approximation, the built-in voltage from Fermi-level alignment, the Shockley diode equation from minority-carrier diffusion, junction and diffusion capacitance, and the avalanche and Zener breakdown mechanisms.\n",{"path":5954,"title":5955,"module":5939,"summary":5956},"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics","Transistors and Optoelectronic Devices","Two junctions in series make a bipolar transistor whose thin base gives current gain; a gate over an oxide makes a MOSFET whose inversion channel switches digital logic. Run in reverse, a junction converts photons to current. This lesson derives the transistor current gain and the MOSFET channel current, then treats the LED, the diode laser, and the illuminated solar-cell characteristic.\n",{"path":5958,"title":5959,"module":5960,"summary":5961},"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization","Dielectrics, Polarization, and the Local Field","Dielectrics and Ferroelectrics","An insulator responds to an electric field by polarizing. This lesson builds the macroscopic polarization and the dielectric constant, sorts the microscopic response into electronic, ionic, and orientational polarizability, and corrects the field an atom actually feels to the Lorentz local field E + P\u002F3 epsilon-0. The Clausius-Mossotti relation links the measured permittivity to the atomic polarizability, and the frequency dependence of each mechanism explains why the static and optical dielectric constants differ.\n",{"path":5963,"title":5964,"module":5960,"summary":5965},"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics","Ferroelectrics, Piezoelectrics, and Structural Transitions","Some crystals carry a polarization with no applied field and switch it under a reversing field, tracing a hysteresis loop. This lesson develops the ferroelectric transition through the perovskite BaTiO3 displacive instability and its soft transverse-optical mode, builds the Landau free-energy theory of first- and second-order polar transitions, derives the Curie-Weiss divergence of the dielectric constant, and closes with piezoelectricity and pyroelectricity and their devices.\n",{"path":5967,"title":5968,"module":5969,"summary":5970},"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism","Diamagnetism and Paramagnetism","Magnetism in Solids","Every solid responds to a magnetic field. Filled shells give a small negative diamagnetic susceptibility from induced Larmor currents; localized moments give a positive Curie paramagnetism described by the Brillouin function, with the ground-state moment fixed by Hund's rules. The conduction electrons add a temperature-independent Pauli paramagnetism from the thermal shell near the Fermi surface, partly cancelled by Landau diamagnetism of their orbital motion.\n",{"path":5972,"title":5973,"module":5969,"summary":5974},"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism","Exchange and Ferromagnetism","Magnetic ordering at hundreds of kelvin cannot be dipolar; it is an exchange effect, the Coulomb repulsion sorted by the Pauli principle into a spin-dependent energy captured by the Heisenberg Hamiltonian. Weiss molecular-field theory replaces the exchange field by an average proportional to the magnetization, giving a self-consistent equation whose solution is spontaneous magnetization below a Curie temperature and a Curie–Weiss susceptibility above it. Itinerant ferromagnetism follows from the Stoner criterion on the band density of states.\n",{"path":5976,"title":5977,"module":5969,"summary":5978},"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains","Antiferromagnetism, Ferrimagnetism, and Domains","A negative exchange coupling orders neighboring spins antiparallel. Two-sublattice molecular-field theory gives a Néel temperature marked by a cusp in the susceptibility, and unequal sublattices leave a net moment — ferrimagnetism, the magnetism of the ferrites. A ferromagnet breaks into domains to reduce its magnetostatic energy, separated by Bloch walls whose width is set by the competition between exchange and magnetocrystalline anisotropy, and the irreversible motion of those walls produces the hysteresis loop.\n",{"path":5980,"title":5981,"module":5969,"summary":5982},"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons","Spin Waves and Magnons","The lowest excitations of a ferromagnet are not single flipped spins but collective precessions in which every moment tips slightly and its phase advances along the crystal. These spin waves have a quadratic dispersion at long wavelength, quantize into magnons obeying Bose statistics, and their thermal population removes magnetization as the Bloch T-to-the-three-halves law. Antiferromagnetic magnons disperse linearly, and inelastic neutron scattering measures both.\n",{"path":5984,"title":5985,"module":5986,"summary":5987},"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology","Superconductivity: Phenomenology and BCS","Superconductivity","Below a critical temperature some materials lose all resistance and expel magnetic flux — the Meissner effect that defines the state. The isotope effect points to lattice vibrations, and BCS theory binds electrons into Cooper pairs through phonon exchange. The paired condensate opens an energy gap, quantizes magnetic flux, and drives the Josephson effects.\n",{"path":5989,"title":5990,"module":5986,"summary":5991},"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect","London Theory and the Meissner Effect","A perfect conductor freezes the field it was cooled in; a superconductor expels it. The distinction needs a constitutive law beyond zero resistance — the two London equations — whose solution is exponential flux decay over the penetration depth. The same rigidity follows from a macroscopic condensate wave function, and the thermodynamics of the critical field fixes the condensation energy, the latent heat, and the specific-heat jump.\n",{"path":5993,"title":5994,"module":5986,"summary":5995},"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory","Ginzburg–Landau Theory, Vortices, and Type-II","A complex order parameter and a free-energy expansion turn the superconducting transition into a Landau theory. Two lengths emerge — the coherence length and the penetration depth — whose ratio kappa sorts superconductors into type I and type II. Type-II materials admit flux as an Abrikosov lattice of vortices, each threading exactly one quantum h\u002F2e, between a lower and an upper critical field.\n",{"path":5997,"title":5998,"module":5986,"summary":5999},"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory","Microscopic BCS Theory","A phonon-mediated attraction, however weak, binds two electrons above the Fermi sea — the Cooper problem shows the sea is unstable. The BCS variational ground state pairs all electrons near the Fermi surface and, through a self-consistent gap equation, opens an energy gap. Weak-coupling solution gives the exponential T_c and the universal ratios 2 Delta(0) = 3.53 k_B T_c and Delta C \u002F C_n = 1.43.\n",{"path":6001,"title":6002,"module":5986,"summary":6003},"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc","Josephson Effects and Unconventional Superconductors","Two superconductors joined by a thin barrier carry a supercurrent set by their phase difference — the dc Josephson effect — and oscillate at 2eV\u002Fh under a voltage. A two-junction loop turns flux quantization into a magnetometer of single-quantum sensitivity. The cuprates superconduct in CuO2 planes with a doping-dependent dome, d-wave pairing, and a pseudogap that lie outside the phonon picture.\n",{"path":6005,"title":6006,"module":6007,"summary":6008},"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots","Quantum Wells, Wires, and Dots","Nanostructures","When a crystal is shrunk until one or more of its dimensions approaches the electron wavelength, the continuous bands of the bulk break into discrete subbands. Confining in one direction gives a quantum well with a step-like density of states, in two directions a quantum wire with inverse-square-root singularities, and in all three a quantum dot whose levels are sharp like an atom's. This lesson derives the density of states in each case and applies it to size-tunable dot emission and the Coulomb blockade of a single-electron transistor.\n",{"path":6010,"title":6011,"module":6007,"summary":6012},"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect","The 2D Electron Gas and the Integer Quantum Hall Effect","A two-dimensional electron gas in a strong perpendicular magnetic field has its continuous density of states collapse into macroscopically degenerate Landau levels. As the field is swept, the Hall resistance locks onto exact plateaus at h over an integer times e squared, while the longitudinal resistance drops to zero. This lesson derives the Landau levels and their degeneracy, explains the plateaus through disorder-localized states and current-carrying edge channels, and states why the von Klitzing constant is now a resistance standard.\n",{"path":6014,"title":6015,"module":6007,"summary":6016},"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology","The Fractional Quantum Hall Effect and Topological Order","When the lowest Landau level is only partly filled, the non-interacting theory predicts no gap, yet a plateau appears at filling one-third. It is a many-body effect: Coulomb repulsion selects a correlated ground state, the Laughlin wavefunction, whose excitations carry a fraction of the electron charge. This lesson builds the Laughlin state, introduces composite fermions that map the fractional effect onto an integer one, and explains how the quantum Hall effect brought the Chern number and topology into condensed-matter physics.\n",{"path":6018,"title":6019,"module":6007,"summary":6020},"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials","Graphene and Dirac Materials","Graphene is one atomic layer of carbon on a honeycomb lattice. A tight-binding calculation on its two-atom basis gives valence and conduction bands that touch at the corners of the Brillouin zone, where the dispersion is linear and the electrons behave as massless two-dimensional Dirac particles with a fixed speed. This lesson derives the Dirac cones, the Berry phase of pi and the sublattice chirality, the anomalous half-integer quantum Hall effect that follows, and how opening a gap in a Dirac cone points toward topological insulators.\n",{"path":6022,"title":6023,"module":306,"summary":306},"\u002Fcondensed-matter","Condensed Matter Physics",{"path":6025,"title":6026,"module":5,"summary":6027},"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model","Logic as a Mathematical Model of Deduction","Symbolic logic models deductive reasoning the way probability theory models chance: it keeps the form of a correct deduction and discards its content. A deduction is valid when its conclusion follows from the form of the premises alone, independent of what the non-logical words mean. Two models carry the subject — coarse sentential logic and fine first-order logic — and four questions organize it: logical consequence, methods of proof, the gap between provable and true, and the link between logic and computability. Tuples, relations, functions, equivalence classes, and cardinality supply the set-theoretic vocabulary every later chapter uses.\n",{"path":6029,"title":6030,"module":6031,"summary":6032},"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas","Formal Languages and Well-Formed Formulas","Sentential Logic","The language of sentential logic has an alphabet of sentence symbols, five connectives, and two parentheses, with formation rules that pick out the well-formed formulas. The wffs are the least set of expressions closed under the five formula-building operations, and every such generated set carries an induction principle.\n",{"path":6034,"title":6035,"module":6031,"summary":6036},"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies","Truth Assignments, Tautologies, and Consequence","A truth assignment fixes the sentence symbols true or false, and a recursion extends it uniquely to every formula. Satisfaction, tautologies, and tautological implication — one formula following semantically from others — rest on that extension, and the truth-table procedure decides implication for finite premise sets.\n",{"path":6038,"title":6039,"module":6031,"summary":6040},"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing","Unique Readability and a Parsing Algorithm","Parentheses keep a formula from being read two ways. The parenthesis lemmas and a top-down parsing algorithm recover a formula's structure and yield unique readability: every wff has exactly one formation tree, which is what makes the truth recursion well defined.\n",{"path":6042,"title":6043,"module":6031,"summary":6044},"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion","Induction and Recursion on Formulas","Two principles govern any set generated from initial elements by operations: prove a property of all its members by covering the initial elements and the closure steps, and define a function on it by recursion on structure. The recursion theorem needs the set to be freely generated, and unique readability supplies that condition for the well-formed formulas.\n",{"path":6046,"title":6047,"module":6031,"summary":6048},"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms","Sentential Connectives and Normal Forms","Every formula computes a Boolean function of its atoms, and Post's theorem gives the converse: every Boolean function is realized by a wff in disjunctive normal form, so the five connectives are more than enough. Minimal complete sets follow, down to the single connectives NAND and NOR, together with a method for proving a set of connectives incomplete.\n",{"path":6050,"title":6051,"module":6031,"summary":6052},"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits","Switching Circuits","A memoryless two-valued circuit computes a Boolean function, so every formula names a gate network and every network a formula. Cost and delay are read off the formula by recursion, and tautological equivalence and normal forms design and simplify circuits realizing a given specification.\n",{"path":6054,"title":6055,"module":6031,"summary":6056},"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness","Compactness and Effectiveness","The compactness theorem reduces satisfiability of an infinite set of formulas to its finite subsets, proved by extension to a maximal finitely satisfiable set and applied to color infinite graphs. Effectiveness fixes what \"decidable\" and \"effectively enumerable\" mean and settles the decidability of tautologyhood.\n",{"path":6058,"title":6059,"module":6060,"summary":6061},"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages","First-Order Languages","First-Order Languages and Structures","Sentential logic cannot see inside a simple statement, so it misses valid arguments that turn on quantifiers and predicates. A first-order language adds a quantifier, variables, and a chosen vocabulary of predicate, function, and constant symbols. Terms and well-formed formulas are built by recursion over this alphabet, and a variable occurs free or bound according to the quantifiers that reach it.\n",{"path":6063,"title":6064,"module":6060,"summary":6065},"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction","Structures, Truth, and Satisfaction","A structure interprets a language: a nonempty universe plus a meaning for every predicate, function, and constant symbol. Tarski's recursion defines when a structure satisfies a formula under a variable assignment, and hence when a sentence is true. From satisfaction we recover logical implication, validity, and logical equivalence for first-order logic.\n",{"path":6067,"title":6068,"module":6060,"summary":6069},"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence","Definability and Elementary Equivalence","Fix a structure and ask which relations a formula can pick out: the definable ones. A set of sentences picks out a class of structures, the elementary classes. Homomorphisms and isomorphisms compare structures, and the homomorphism theorem shows isomorphic structures satisfy the same sentences. Automorphisms bound what first-order logic can distinguish, giving a tool for proving relations undefinable.\n",{"path":6071,"title":6072,"module":6060,"summary":6073},"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing","Parsing, Substitution, and Substitutability","Every recursion on first-order syntax rests on unique readability. A parenthesis-counting function proves that terms and formulas decompose in exactly one way, and a parsing algorithm recovers the decomposition. Substituting a term for a free variable can capture it under a quantifier; the substitutability condition rules that out, and the substitution lemma trades syntactic substitution for a change of assignment.\n",{"path":6075,"title":6076,"module":6077,"summary":6078},"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus","A Deductive Calculus for First-Order Logic","The Deductive Calculus and Its Metatheorems","A proof must be finite and mechanically checkable. A Hilbert-style calculus meets both demands: six schemas of logical axioms, a single rule of inference (modus ponens), and the syntactic consequence relation they generate. Substitution and substitutability are defined by recursion, and the bridge theorem reduces deducibility to tautological implication from the axioms.\n",{"path":6080,"title":6081,"module":6077,"summary":6082},"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules","The Deduction Theorem and Derived Rules","Raw deductions from axioms are unusable by hand. The generalization theorem, the deduction theorem, contraposition, reductio ad absurdum, and rule T reduce the calculus to the moves of ordinary mathematics, each proved once to license a block of axiom-level steps. Generalization on constants and alphabetic variants handle the quantifier and substitution bookkeeping.\n",{"path":6084,"title":6085,"module":6077,"summary":6086},"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness","The Soundness Theorem","Soundness is the easy half of the match between proof and truth. Whatever the calculus deduces is logically implied, by an induction on deduction length that rests on one lemma: every logical axiom is valid. The only hard case, quantifier instantiation, needs the substitution lemma. The contrapositive corollary states that every satisfiable set is consistent.\n",{"path":6088,"title":6089,"module":6077,"summary":6090},"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency","The Completeness Theorem","Gödel's completeness theorem is the deep converse of soundness: whatever is logically implied can be deduced. Equivalently, every consistent set has a model. The Henkin proof manufactures that model out of syntax alone: add witnessing constants, extend to a maximal consistent set, and read a term model off the formulas it contains. Compactness and the enumerability theorem drop out.\n",{"path":6092,"title":6093,"module":6094,"summary":6095},"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem","Compactness and the Löwenheim–Skolem Theorems","Models, Compactness, and Theories","A set of first-order sentences has a model whenever each of its finite subsets does. This compactness theorem follows from completeness and yields the finiteness limitation, the downward and upward Löwenheim–Skolem theorems, models of every infinite cardinality, and nonstandard models of arithmetic.\n",{"path":6097,"title":6098,"module":6094,"summary":6099},"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity","Theories, Elementary Classes, and Categoricity","A theory is a set of sentences closed under logical consequence. Theories correspond to classes of models; a theory may be complete, axiomatizable, or finitely axiomatizable, and completeness together with axiomatizability yields decidability. The Łoś–Vaught test derives completeness from categoricity in a cardinal, applied to dense linear orders and to algebraically closed fields.\n",{"path":6101,"title":6102,"module":6094,"summary":6103},"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories","Interpretations Between Theories","An interpretation translates the vocabulary of one theory into formulas of another, relativizing quantifiers to a definable domain and mapping symbols to defining formulas. Defined function symbols meet a noncreativity criterion; the syntactic translation of formulas carries theoremhood forward, and a faithful interpretation transfers decidability and undecidability between theories.\n",{"path":6105,"title":6106,"module":6094,"summary":6107},"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis","Nonstandard Analysis","Compactness builds a model of the real ordered field containing infinite elements and nonzero infinitesimals. The transfer principle carries every first-order truth from the reals to this extension, the standard-part map collapses finite hyperreals back onto the reals, and continuity and the derivative are rederived by working with infinitely small quantities directly.\n",{"path":6109,"title":6110,"module":6111,"summary":6112},"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic","The Structure of Arithmetic and Definability","Number Theory and Definability","Number theory is the theory of one fixed structure, the natural numbers under successor, order, addition, multiplication, and exponentiation. Every number is named by a numeral, and a relation is definable when a single formula picks out exactly its tuples. The central gap separates the sentences true in that structure from those any reasonable set of axioms can prove.\n",{"path":6114,"title":6115,"module":6111,"summary":6116},"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor","Natural Numbers with Successor","The weakest reduct keeps only zero and successor. Its models are a standard chain together with disjoint copies of the integers, which makes the theory categorical in every uncountable power, hence complete and decidable. A quantifier-elimination procedure gives a practical decision method and shows a subset is definable if and only if it is finite or cofinite.\n",{"path":6118,"title":6119,"module":6111,"summary":6120},"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts","Reducts: Order, Addition, and Multiplication","Adding order to the successor reduct keeps decidability and makes the theory finitely axiomatizable; adding addition gives Presburger arithmetic, still decidable by quantifier elimination once congruence predicates are included, with definable sets exactly the eventually periodic ones. Multiplication is the break point: neither addition nor order can define it, and once it joins addition the theory stops being decidable.\n",{"path":6122,"title":6123,"module":6111,"summary":6124},"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability","A Subtheory of Number Theory and Representability","A finite set of eleven axioms, the recursion equations for successor, order, addition, multiplication, and exponentiation, already proves every true quantifier-free and existential sentence. Representability asks a theory to prove the right instances of a formula rather than merely make them true, and a relation is defined to be recursive exactly when some consistent finite theory represents it. Church's thesis identifies that with decidability, and closure under composition, minimization, and primitive recursion builds the catalog the incompleteness proofs need.\n",{"path":6126,"title":6127,"module":6128,"summary":6129},"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax","Arithmetization of Syntax","Arithmetization and the Incompleteness Theorems","Gödel numbering assigns a natural number to every symbol, expression, formula, and deduction, turning statements about syntax into statements about numbers. The syntactic operations — substitution, \"is a wff\", \"is an axiom\", \"d codes a deduction of a\" — come out primitive recursive and hence representable in the subtheory, which lets a formula of arithmetic talk about formulas, including itself.\n",{"path":6131,"title":6132,"module":6128,"summary":6133},"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability","Incompleteness, Undecidability, and Church's Theorem","The fixed-point lemma manufactures a sentence that talks about its own Gödel number. Pointed at truth it gives Tarski's theorem — arithmetic truth is not arithmetically definable; pointed at provability it gives Gödel's first incompleteness theorem and the undecidability of the theory of the natural numbers, and, applied to validity, Church's theorem that first-order logic is undecidable. The set of theorems of a recursive theory is only recursively enumerable — the gap between provable and true.\n",{"path":6135,"title":6136,"module":6128,"summary":6137},"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem","The Second Incompleteness Theorem","Consistency of a recursively axiomatized theory is itself an arithmetic sentence, built from a provability predicate. When the theory is strong enough to formalize its own reflection and modus ponens — the Hilbert–Bernays–Löb derivability conditions — it cannot prove that sentence unless it is inconsistent. Löb's theorem is the companion result, and set theory is the case that closes Hilbert's program.\n",{"path":6139,"title":6140,"module":6141,"summary":6142},"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions","Recursive Functions and Church's Thesis","Recursive Functions and Representability","The recursive functions are the formal counterpart of the effectively computable ones: built from three initial functions by composition, primitive recursion, and minimization, and equivalently the functions representable in a finitely axiomatized arithmetic. Church's thesis identifies the class with effective calculability; Kleene's normal form theorem and the unsolvable halting problem place the recursive sets strictly inside the recursively enumerable ones.\n",{"path":6144,"title":6145,"module":6141,"summary":6146},"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation","Representing Exponentiation and the β-Function","Coding finite sequences by prime-power exponents already assumes exponentiation, so representing exponentiation from addition and multiplication alone needs a different encoder. Gödel's β-function, built from a pairing function and the Chinese remainder theorem, reads back arbitrary finite sequences using only plus and times. This represents exponentiation in the addition-multiplication arithmetic and closes the last gap in the representability of every recursive syntactic operation.\n",{"path":6148,"title":6149,"module":6150,"summary":6151},"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages","Second-Order Languages","Second-Order Logic and Beyond","Second-order logic quantifies over relations and functions, not just individuals. Second-order Peano arithmetic and the second-order theory of the reals become categorical, and finiteness is definable by a single sentence. Compactness, completeness, and the Löwenheim–Skolem theorems all fail for the standard semantics.\n",{"path":6153,"title":6154,"module":6150,"summary":6155},"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic","Skolem Functions and Many-Sorted Logic","Skolem functions replace existential quantifiers with named witnesses, putting any first-order formula into a prenex form with all existentials — now over functions — pulled to the front. The Skolemized formula is equisatisfiable with the original, which reduces satisfiability to universal sentences and, through Herbrand expansions, to sentential logic. Many-sorted logic then adds several universes at once and reduces cleanly to ordinary one-sorted logic.\n",{"path":6157,"title":6158,"module":6150,"summary":6159},"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures","General (Henkin) Structures","General semantics reinterprets second-order logic by letting the predicate and function quantifiers range over a designated collection of relations and functions rather than all of them. Recast as many-sorted first-order logic with comprehension axioms, general second-order logic recovers a sound and complete calculus together with compactness and Löwenheim–Skolem, giving up the categoricity of the standard semantics. The ω-models of analysis show the trade.\n",{"path":6161,"title":6162,"module":306,"summary":306},"\u002Flogic","Logic",{"path":6164,"title":6165,"module":5,"summary":6166},"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning","What Is Reinforcement Learning?","Reinforcement learning is learning what to do — how to map situations to actions — so as to maximize a numerical reward signal, discovered by trial and error rather than told. We set up the agent–environment loop, separate it from supervised and unsupervised learning, name the four elements (policy, reward, value, and an optional model), and train a tic-tac-toe player with a temporal-difference value update.\n",{"path":6168,"title":6169,"module":5,"summary":6170},"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl","A Brief History of Reinforcement Learning","The origins of reinforcement learning. Three threads — trial-and-error learning from animal psychology, optimal control and dynamic programming, and temporal-difference learning — ran independently for decades and merged around 1989 into the modern field. Replacing the lookup table with a neural network then produced deep reinforcement learning: DQN, AlphaGo, AlphaZero, MuZero, and RLHF.\n",{"path":6172,"title":6173,"module":5,"summary":6174},"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits","Multi-Armed Bandits","A bandit is reinforcement learning stripped to a single decision, repeated: no state, no consequences, only the tension between exploiting the arm that looks best and exploring the ones that might be better. We build up the whole toolkit — sample-average value estimates, the incremental update rule, ε-greedy, optimistic initialization, UCB, and gradient bandits — and use it to study exploration in isolation, the one problem that carries over to the full setting.\n",{"path":6176,"title":6177,"module":5,"summary":6178},"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms","Bandit Exploration Algorithms","Better ways to explore than picking at random. Upper-confidence-bound selection explores by optimism about what it hasn't measured; gradient bandits learn action preferences by stochastic gradient ascent on reward. We then add context to get the contextual bandit, the bridge to full RL, and measure everything by regret — where UCB1 and Thompson sampling reach the logarithmic optimum that fixed-ε greedy cannot.\n",{"path":6180,"title":6181,"module":5,"summary":6182},"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes","Markov Decision Processes","A Markov decision process is the formal interface between an agent and its environment: at each step the agent reads a state, chooses an action, and receives a reward and a next state. We fix that loop, the dynamics function that governs it, and the Markov property that makes the state sufficient; then turn goals into a scalar reward and rewards into a discounted return, with one notation that covers both episodic and continuing tasks.\n",{"path":6184,"title":6185,"module":5,"summary":6186},"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality","Value Functions and Optimality","A value function scores how good a state (or state–action pair) is under a policy: the expected return from there onward. Its defining property is the Bellman equation, a self-consistency condition linking a state's value to its successors' values, which we derive from the return and the dynamics. Pushing the same idea to the best-achievable value gives the Bellman optimality equations, whose solution yields an optimal policy — and whose intractability is what the rest of the course is about.\n",{"path":6188,"title":3165,"module":6189,"summary":6190},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming","Tabular Solution Methods","Dynamic programming computes optimal policies when a perfect model of the MDP is given, by turning the Bellman equations into assignment statements. We build up iterative policy evaluation (the expected update), the policy improvement theorem, and the two classic algorithms that alternate them — policy iteration and value iteration — worked on the gridworld, a two-state MDP, Jack's car rental, and the gambler's problem.\n",{"path":6192,"title":6193,"module":6189,"summary":6194},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi","Dynamic Programming: Asynchronous DP and Generalized Policy Iteration","Policy and value iteration both sweep the entire state set on every pass, which is impossible once the state space is huge. This lesson loosens the schedule: asynchronous DP updates states in any order, generalized policy iteration names the alternation of evaluation and improvement that underlies nearly every RL method, and a look at efficiency and the curse of dimensionality places DP among the alternatives. We close past Sutton & Barto with prioritized sweeping, neuro-dynamic programming, value-iteration networks, and MuZero.\n",{"path":6196,"title":6197,"module":6189,"summary":6198},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods","Monte Carlo Methods","Monte Carlo methods learn value functions and optimal policies from complete sampled episodes, with no model of the environment: they simply average the returns that actually followed each state. We build prediction (first-visit and every-visit averaging), see why estimating action values forces the exploration question, and answer it two ways on-policy — exploring starts and epsilon-soft control. Throughout, Monte Carlo samples one whole trajectory to termination and never bootstraps.\n",{"path":6200,"title":6201,"module":6189,"summary":6202},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy","Monte Carlo Methods: Off-Policy Learning","On-policy Monte Carlo can only reach the best exploring policy, not the true optimum. Off-policy methods remove that ceiling by learning about a greedy target policy from data generated by a soft behavior policy, corrected with importance sampling. We derive the importance-sampling ratio, weigh ordinary against weighted estimators on real numbers, give the incremental off-policy algorithm, sharpen it with discounting-aware sampling, and close by placing Monte Carlo on the model\u002Fbootstrap map beside DP and temporal-difference learning.\n",{"path":6204,"title":6205,"module":6189,"summary":6206},"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning","Temporal-Difference Learning","Temporal-difference learning is the one idea most central to reinforcement learning: learn a value directly from experience, like Monte Carlo, but update each guess toward the next guess before the episode ends, like dynamic programming. We derive the TD(0) prediction rule and its reward-prediction error, contrast its one-step backup with MC and DP, work the driving-home and random-walk examples, and show the batch-updating optimality that makes TD approximate the certainty-equivalence estimate.\n",{"path":6208,"title":6209,"module":6189,"summary":6210},"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning","TD Control: Sarsa, Q-learning, and Double Learning","With TD prediction in hand, control follows the generalized-policy-iteration pattern with TD as the evaluation step. We build Sarsa (on-policy), Q-learning (off-policy, targeting the optimal policy), and Expected Sarsa that spans the two, then confront the maximization bias every max-based method inherits and fix it with Double Q-learning. We close past Sutton & Barto, following each one-step tabular update into its deep-RL descendant — DQN, Double DQN, and Rainbow.\n",{"path":6212,"title":6213,"module":6189,"summary":6214},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping","n-Step Bootstrapping","Monte Carlo waits for the full return; one-step TD bootstraps after a single reward. Between them lies a whole spectrum, indexed by one integer n: look ahead n real rewards, then bootstrap from the value n steps out. The n-step return unifies the previous two lessons, and — on the random walk — an intermediate n beats both extremes. We build the n-step return, the n-step TD update, the backup-diagram spectrum, and n-step Sarsa for control.\n",{"path":6216,"title":6217,"module":6189,"summary":6218},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods","n-Step Bootstrapping: Off-Policy Methods","Taking the n-step family off-policy raises the same importance-sampling questions Monte Carlo did, now over a window of exactly n actions. We reweight n-step returns by the policy ratio, watch the ratio product inflate variance on real numbers, then build the tree-backup algorithm that learns off-policy with no ratios at all — and finally n-step Q(sigma), one algorithm whose per-step switch recovers Sarsa, tree backup, and Expected Sarsa as special cases.\n",{"path":6220,"title":6221,"module":6189,"summary":6222},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning","Planning and Learning","Planning and learning are the same operation run on two kinds of experience. A model turns states and actions into simulated transitions; planning backs up values over that simulated experience exactly as learning backs them up over real experience. We build the Dyna architecture that interleaves acting, model-learning, direct RL, and planning in one loop, trace a single Dyna-Q step by hand, and patch the architecture for when the model goes stale.\n",{"path":6224,"title":6225,"module":6189,"summary":6226},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time","Planning: Focusing Updates and Decision-Time Search","Dyna plans by replaying remembered transitions, but sampling them uniformly wastes most of the effort. This lesson sharpens planning: prioritized sweeping works backward from states whose value just changed, expected versus sample updates weigh thoroughness against cost, and trajectory sampling and real-time DP focus updates on the states the policy actually visits. We trace Dyna forward to model-based deep RL, then turn to decision-time planning — heuristic search, rollouts, and Monte Carlo Tree Search.\n",{"path":6228,"title":6229,"module":6189,"summary":6230},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning","Decision-Time Planning","Planning need not build a global policy. Decision-time planning runs a fresh lookahead every time a state arrives and returns just one action, then throws the work away. We start from real-time dynamic programming — asynchronous value iteration on the states the agent actually visits — then move through heuristic search and rollout algorithms, each a one-step policy improvement applied on the fly to the current state.\n",{"path":6232,"title":6233,"module":6189,"summary":6234},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search","Monte Carlo Tree Search","Monte Carlo Tree Search is a rollout algorithm with memory: it accumulates value estimates across simulations and steers later ones toward promising branches. We work through the four steps — selection, expansion, simulation, backup — the UCT selection rule computed on real numbers, the asymmetric growing tree, and the full pseudocode. We close past Sutton & Barto with the lineage from UCT to AlphaGo, AlphaZero, and MuZero, where a learned network stands in for the leaf value and the rollout.\n",{"path":6236,"title":6237,"module":6238,"summary":6239},"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction","On-Policy Prediction with Approximation","Approximate Solution Methods","Every tabular method so far stored one number per state, which fails once the state space is large or continuous. We replace the table with a parameterized value function $\\hat v(s,\\mathbf{w})$, define the mean squared value error it should minimize under the on-policy distribution, and derive stochastic- and semi-gradient learning rules — the semi-gradient TD(0) update that bootstraps and so is not a true gradient. Linear methods make the analysis clean and give the TD fixed point; feature construction (polynomials, Fourier basis, coarse and tile coding, RBFs) supplies the vectors $\\mathbf{x}(s)$, and neural networks are the nonlinear bridge to deep RL.\n",{"path":6241,"title":6242,"module":6238,"summary":6243},"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear","Feature Construction and Nonlinear Approximation","Linear methods are only as good as the feature vectors $\\mathbf{x}(s)$ fed to them, and this lesson builds those vectors. Polynomials and the Fourier basis turn a state's coordinates into smooth global features; coarse coding, tile coding, and radial basis functions cover a continuous space with overlapping local receptive fields whose size sets the reach of generalization. Then we stop designing features by hand: a neural network learns the representation itself by gradient descent, trading the convergence guarantees of the linear case for expressiveness — the bridge to deep reinforcement learning.\n",{"path":6245,"title":6246,"module":6238,"summary":6247},"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control","On-Policy Control with Approximation","Prediction learned a value function from features; control learns to act. We carry semi-gradient methods over to action values $\\hat q(s,a,\\mathbf{w})$, giving episodic semi-gradient Sarsa and its n-step form, and solve Mountain Car by descending a cost-to-go surface. In the continuing case, function approximation makes discounting unable to affect which policy is best, so we replace it with the average-reward setting — the differential return, differential value functions, and differential semi-gradient Sarsa.\n",{"path":6249,"title":6250,"module":6238,"summary":6251},"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control","Average-Reward Control for Continuing Tasks","With function approximation, discounting has no effect on a continuing task: averaged over the on-policy distribution, the discounted objective equals the average reward times a policy-independent constant, so $\\gamma$ cannot change which policy is best. This lesson replaces discounting with the average-reward setting — the long-run reward rate $r(\\pi)$, the differential return that measures each state's transient advantage over that rate, differential value functions and TD error, and differential semi-gradient Sarsa, the control method for continuing tasks that never invokes a discount factor.\n",{"path":6253,"title":6254,"module":6238,"summary":6255},"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad","Off-Policy Methods and the Deadly Triad","Off-policy learning with function approximation is where the convergence guarantees of reinforcement learning fail. We extend the tabular off-policy updates to semi-gradient form with per-step importance sampling, show Baird's counterexample driving the weights to infinity, and identify the cause: the deadly triad of function approximation, bootstrapping, and off-policy training — any two are safe, all three can diverge. The divergence is not caused by sampling noise: a fully synchronous dynamic-programming update blows up just the same, which is what makes the triad a structural hazard rather than a fluke.\n",{"path":6257,"title":6258,"module":6238,"summary":6259},"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td","Value-Function Geometry and Gradient-TD Methods","Why does the deadly triad diverge, and how do you stop it? This lesson develops the geometry that explains the failure: value functions as vectors, the projection operator onto the representable subspace, and the split between the Bellman error, the value error, and the projected Bellman error: the three objectives have different minimizers. The projected Bellman error is the learnable one, and Gradient-TD methods (GTD2, TDC) do true stochastic gradient descent on it, staying stable even off-policy at $O(d)$ cost. Emphatic TD reweights states instead, and a survey of variance-reduction techniques closes the gap between stability and usable learning.\n",{"path":6261,"title":6262,"module":6238,"summary":6263},"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces","Eligibility Traces","n-step methods unify TD and Monte Carlo by storing the last n feature vectors; eligibility traces do the same job with a single short-term memory vector. The λ-return averages every n-step return under a geometric weighting; the forward view looks ahead to that average, and the backward view produces nearly the same updates online through a decaying trace vector. We build the λ-return, TD(λ) with its trace, the two ways λ recovers TD(0) and Monte Carlo, a note on the exact equivalence of true online TD(λ), and Sarsa(λ) for control.\n",{"path":6265,"title":6266,"module":6238,"summary":6267},"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda","True Online TD(λ) and Sarsa(λ)","Plain TD(λ) makes the forward and backward views nearly agree; this lesson closes the gap. True online TD(λ) uses a dutch trace and a small correction term to produce exactly the same weight sequence as the online λ-return algorithm, at the same memory and only a constant factor more compute — the sharpest statement of the forward\u002Fbackward duality. The whole apparatus then lifts to control unchanged: Sarsa(λ) threads a single delayed reward back along an entire trajectory in one sweep, and the λ-weighting reappears in modern deep RL as generalized advantage estimation.\n",{"path":6269,"title":6270,"module":6238,"summary":6271},"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods","Policy Gradient Methods","Every method so far learned values and read a policy off them. Policy gradient methods drop the intermediary: parameterize the policy directly and climb the performance gradient. We build the softmax-in-preferences parameterization, prove the policy gradient theorem that makes the gradient computable without the unknown state distribution, and derive REINFORCE and its variance-cutting state-value baseline — the launch point for the bootstrapping actor-critic that follows.\n",{"path":6273,"title":6274,"module":6238,"summary":6275},"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions","Actor-Critic Methods and Continuous Actions","REINFORCE with a baseline learns a value function but never bootstraps; this lesson adds the bootstrapping critic that completes the actor-critic architecture. The critic scores each transition into a single TD error that steers both the actor's policy step and its own value step, trading a little bias for much lower variance and fully online, continuing-task learning. The policy gradient theorem carries over unchanged to the average-reward setting, a Gaussian policy handles real-valued actions with self-tuning exploration, and the natural policy gradient leads straight to TRPO, PPO, and the deep actor-critic methods that train today's agents.\n",{"path":6277,"title":6278,"module":6238,"summary":6279},"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods","Least-Squares TD","Semi-gradient TD spends one cheap step per example and needs many examples; this lesson makes the opposite tradeoff. Least-Squares TD (LSTD) accumulates the matrices $\\mathbf{A}$ and $\\mathbf{b}$ and solves the TD fixed point $\\mathbf{w} = \\mathbf{A}^{-1}\\mathbf{b}$ directly, using the Sherman-Morrison identity to maintain the inverse in $O(d^2)$ — the most data-efficient linear TD method, at a quadratic cost. We work a solve by hand, weigh the quadratic cost against semi-gradient TD's cheap steps, and note that LSTD never forgets — a problem in control, where least-squares policy iteration is the natural extension.\n",{"path":6281,"title":6282,"module":6238,"summary":6283},"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods","Memory-Based and Kernel Methods","Least-squares TD spent more compute to extract more from each example; this lesson drops the parametric form entirely. Memory-based methods store training examples untouched and answer a query locally at retrieval time — nearest neighbor, weighted average, locally weighted regression — so accuracy grows with the data and effort concentrates where the agent actually goes. Kernel-based methods weight stored examples by a similarity kernel $k(s,s')$, and every linear method turns out to be a kernel method. Interest and emphasis, finally, make the on-policy weighting itself a design choice, aiming scarce approximation capacity at the states that matter.\n",{"path":6285,"title":6286,"module":6238,"summary":6287},"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces","Off-Policy Eligibility Traces","Eligibility traces meet off-policy learning and function approximation — the corner where stability gets hard. We first let the bootstrapping and discounting parameters vary with state, so a single generalized return covers episodic and continuing tasks and folds termination into the discount. Then we fold the per-decision importance ratio into the trace with a control-variate correction, and build Watkins's Q(λ) and its importance-sampling-free successor Tree-Backup(λ) — all correct in expectation, but still semi-gradient, so the deadly triad and its fixes wait for the next lesson.\n",{"path":6289,"title":6290,"module":6238,"summary":6291},"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces","Stable Off-Policy Methods with Traces","Off-policy traces get the expected target right, but with $\\lambda \u003C 1$ they bootstrap, so off-policy plus bootstrapping plus function approximation is the deadly triad and the weights can diverge. This lesson carries the two one-step fixes to traces: GTD(λ) and GQ(λ) add a second weight vector and a gradient correction for true gradient descent on the projected Bellman error, while Emphatic TD(λ) reweights updates through a followon trace and interest to recover the on-policy stability. It closes with the implementation reality that traces are cheap because they are sparse, and with Retrace and V-trace — the clipped-ratio descendants that make off-policy traces work at deep-RL scale.\n",{"path":6293,"title":5611,"module":6294,"summary":6295},"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks","Deep Reinforcement Learning","Deep Q-networks replace the linear value function with a neural network $Q(s,a;\\mathbf{w})$ and confront the fact that a nonlinear approximator, off-policy bootstrapping, and correlated online data — the deadly triad — make naive Q-learning diverge. DQN counters this empirically with two stabilizers: an experience replay buffer that decorrelates and reuses samples, and a periodically-frozen target network that fixes the bootstrap target. We derive the DQN loss and gradient, walk through the Atari convolutional architecture and its results, and then add the three refinements that define modern value-based deep RL — Double DQN, dueling networks, and prioritized experience replay.\n",{"path":6297,"title":6298,"module":6294,"summary":6299},"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements","DQN Improvements: Double, Dueling, and Prioritized Replay","Three refinements that turn plain DQN into the standard modern value-based agent, each touching a different part of the system. Double DQN fixes the maximization bias in the target by splitting action selection from evaluation; dueling networks restructure the network around a state value and per-action advantages; prioritized replay changes which transitions are learned from. We close with Rainbow, which combines them, and the distributional view that predicts the whole return distribution rather than its mean.\n",{"path":6301,"title":6302,"module":6294,"summary":6303},"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo","Actor–Critic and GAE","Make the actor and the critic deep networks and the policy-gradient architecture becomes modern deep RL. We build the neural actor-critic, the advantage estimate that replaces the raw return, and Generalized Advantage Estimation as a λ-blend of n-step advantages, then the parallel-worker methods A3C and A2C that decorrelate on-policy data. The step-size constraints — trust regions, PPO, and the continuous-control family — follow in the next lesson.\n",{"path":6305,"title":6306,"module":6294,"summary":6307},"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control","PPO and Continuous Control","Keeping the policy-gradient step from destroying the policy, and the algorithms that result. Trust-region optimization bounds each update by a KL constraint; PPO keeps that goal but replaces the second-order machinery with a first-order clip on the probability ratio, which is why it is the modern default and the optimizer inside RLHF. We then tour the off-policy continuous-control family — DDPG, TD3, and SAC — and where actor-critic went at scale, from OpenAI Five to language-model alignment.\n",{"path":6309,"title":6310,"module":6294,"summary":6311},"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies","Case Studies: Learning to Play","The game-playing systems that turned reinforcement learning from a theory into a track record: Samuel's checkers player, TD-Gammon, Watson's Daily-Double wagering, a reinforcement-learning memory controller, DQN, and AlphaGo through AlphaGo Zero. Read as a set they draw one line — a value function, learned by self-play or interaction, refined by search, carried by a deep network — that runs from a 1959 checkers program to superhuman Go.\n",{"path":6313,"title":6314,"module":6294,"summary":6315},"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games","Reinforcement Learning Beyond Games","The same value-and-reward machinery, pointed at problems with no opponent. Web personalization as a contextual bandit and then a full MDP for life-time value; thermal soaring, where a glider learns to climb on turbulent air and reward design does most of the work; and the industrial-scale systems that carried the same design past Sutton & Barto — AlphaStar, OpenAI Five, GT Sophy, and RLHF, where the reward itself is learned from human preference.\n",{"path":6317,"title":6318,"module":6294,"summary":6319},"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers","Frontiers: Beyond the Standard MDP","The standard MDP fixes three things — state, reward, and single-step actions — and this lesson loosens two of them. We generalize the value function into a general value function that predicts any signal, and use those predictions as auxiliary tasks that shape representations; we extend actions in time with the options framework; and we treat state as a construction the agent builds from a stream of observations. Reward design and the open problems follow in the next lesson.\n",{"path":6321,"title":6322,"module":6294,"summary":6323},"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems","Reward Design and Open Problems","How to design a reward signal that encodes the intended goal — sparse reward, shaping, and reward hacking — and the problems the whole tabular, approximate, and deep arc leaves unsolved. We close with how the frontiers were pushed after Sutton & Barto: auxiliary tasks, learned options, intrinsic-motivation bonuses, learned world models, and offline RL, then the two concerns of reward hacking and safety that any real-world agent must address.\n",{"path":6325,"title":6326,"module":6327,"summary":6328},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow","Sharpening DQN: Improvements and the Distributional Idea","Modern Deep Reinforcement Learning","In the years after the 2015 DQN paper, a stream of focused improvements each fixed one weakness of the baseline without disturbing its frame. This lesson recaps five that keep the scalar $Q$-value — Double DQN, multi-step returns, dueling networks, prioritized replay, and NoisyNets, each changing a different slot of the same Q-learning loop — then develops the sixth, distributional RL, which changes the objective itself: learn the whole return distribution $Z(s,a)$. We build the distributional Bellman equation and the C51 categorical algorithm, projection step and all, worked end to end on real numbers. A companion lesson takes up QR-DQN, Rainbow, and the modern distributional line.\n",{"path":6330,"title":6331,"module":6327,"summary":6332},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2","Distributional RL and Rainbow","A companion to the DQN improvements lesson. C51 fixed the return atoms and learned their probabilities; QR-DQN does the reverse — fix the probabilities, learn the values — which removes the projection and trains with a quantile loss. We cover why the distribution helps even when you act on the mean, then assemble Rainbow: all six improvements in one Q-learning loop, with the component ablation that shows each one's real weight. The distributional line then runs on through IQN, FQF, and Agent57, the first agent to beat the human baseline on all 57 Atari games.\n",{"path":6334,"title":6335,"module":6327,"summary":6336},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control","Continuous Control: DDPG and TD3","When actions are real-valued, the $\\arg\\max_a Q(s,a)$ in Q-learning becomes an optimization problem on every step. This lesson builds the off-policy actor-critic family that sidesteps it: the deterministic policy gradient and DDPG, which replaces the max with a learned actor, and the three fixes of TD3 that counter the value overestimation DDPG inherits. A companion lesson takes up SAC's maximum-entropy objective and the methods built on this template.\n",{"path":6338,"title":6339,"module":6327,"summary":6340},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2","Continuous Control: SAC and Beyond","A companion to the DDPG and TD3 lesson. Where those actors are deterministic and explore with bolted-on noise, soft actor-critic (SAC) changes the objective itself: maximize return plus the entropy of the policy, so exploration becomes intrinsic and the agent stays robust. We develop the maximum-entropy objective, the reparameterized squashed-Gaussian actor, and automatic temperature tuning, then survey the methods built on this off-policy template — distributional critics (D4PG), critic ensembles (REDQ), and control from pixels (DrQ, RAD).\n",{"path":6342,"title":6343,"module":6327,"summary":6344},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl","Model-Based Deep RL: Sample Efficiency and PETS","A model turns experience into imagined planning. This lesson makes the sample-efficiency case for learning a dynamics model, works through why a learned model's errors compound over the planning horizon, and builds the most direct model-based method: PETS plans online with a probabilistic ensemble under model-predictive control, distrusting the model exactly where its members disagree. A companion lesson takes up latent world models (Dreamer) and MuZero.\n",{"path":6346,"title":6347,"module":6327,"summary":6348},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2","Model-Based Deep RL: World Models, Dreamer, and MuZero","A companion to the PETS lesson. PETS plans in the environment's native state space; these methods change what the model represents. World Models and Dreamer learn a compact latent state and do almost all their learning by imagining inside it, with value gradients flowing through the differentiable dynamics. MuZero predicts neither states nor pixels — only the reward, value, and policy that MCTS reads — and plans with search against that learned model, AlphaZero without the rules. We close with MBPO, TD-MPC, and EfficientZero.\n",{"path":6350,"title":6351,"module":6327,"summary":6352},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration","Exploration in Deep RL: Novelty as Reward","When the state space is enormous and reward is rare, ε-greedy amounts to a random walk that almost never reaches the first reward. This lesson scales the bandit's exploration ideas up to deep RL through the dominant approach — manufacture a reward for novelty and let the agent chase it: optimism and pseudo-counts from density models, and intrinsic motivation and curiosity (the Intrinsic Curiosity Module and Random Network Distillation). A companion lesson takes up posterior sampling, Go-Explore, and the modern methods.\n",{"path":6354,"title":6355,"module":6327,"summary":6356},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2","Exploration in Deep RL: Posterior Sampling and Go-Explore","A companion to the novelty-as-reward lesson. Pseudo-counts and curiosity reward the unfamiliar after the agent stumbles into it; this lesson covers two ideas that go further. Bootstrapped DQN keeps an ensemble that approximates a posterior over value functions and explores by committing to one sampled hypothesis per episode — the deep, directed exploration ε-greedy cannot manage. Go-Explore remembers and returns to the frontier, defeating detachment and derailment to solve Montezuma's Revenge. We close with episodic memory (Never Give Up), Agent57, and model-based exploration.\n",{"path":6358,"title":6359,"module":6327,"summary":6360},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl","Offline RL: The Problem and Value-Based Fixes","Offline reinforcement learning learns a policy from a fixed logged dataset with no further environment interaction — off-policy learning pushed to the extreme, and it breaks for the extreme version of the same reason. Bootstrapping queries the value function at out-of-distribution actions the data never covers, those errors are optimistic, and with no online feedback to correct them they compound through the Bellman backup. This lesson sets up the failure and off-policy evaluation, then builds the first two families of pessimistic fixes: policy constraint (BCQ) and conservative value estimation (CQL). A companion lesson takes up implicit methods, model-based offline RL, and Decision Transformer.\n",{"path":6362,"title":6363,"module":6327,"summary":6364},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2","Offline RL: Implicit Methods, Sequence Models, and Beyond","A companion to the offline-RL problem lesson. Policy constraint and conservative value estimation both still query a learned value function; implicit methods (IQL) avoid querying it off the data at all, using an in-sample expectile backup. We then build pessimism into a learned model (MOPO, COMBO) and drop bootstrapping entirely with Decision Transformer's return-conditioned sequence modeling, closing with offline-to-online fine-tuning, diffusion planners, and the offline view of RLHF. The one rule throughout: without online correction, be pessimistic about what you cannot verify.\n",{"path":6366,"title":6367,"module":6327,"summary":6368},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl","Imitation Learning: Cloning, DAgger, and Inverse RL","When a reward is hard to specify but an expert is easy to watch, learn from demonstrations instead. Behavioral cloning treats control as supervised learning of the expert's state-to-action map, and fails through compounding error: small mistakes carry the agent off the expert's distribution, where it was never trained. DAgger fixes the mismatch by querying the expert on the learner's own states. Inverse RL instead recovers the reward the expert seems to optimize — an ill-posed problem that maximum-entropy IRL disambiguates. A companion lesson casts imitation as adversarial occupancy matching (GAIL, AIRL).\n",{"path":6370,"title":6371,"module":6327,"summary":6372},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2","Imitation as Adversarial Matching: GAIL and AIRL","A companion to the imitation-learning lesson. If the point of recovering a reward is only to re-run RL and match the expert, you can skip the reward and match the behavior directly. GAIL casts imitation as a GAN — a discriminator separating expert from learner state-action pairs supplies the reward a policy-gradient method optimizes — matching occupancy measures without ever naming a reward. AIRL reads a transferable reward back out of the discriminator. We compare all four methods and close with reward models in RLHF, scaled cloning, and diffusion policies.\n",{"path":6374,"title":6375,"module":6327,"summary":6376},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl","Multi-Agent RL: Markov Games and Centralized Training","With more than one learning agent in an environment, each agent's world becomes non-stationary because the others are changing too. This lesson builds the Markov-game generalization of the MDP, diagnoses non-stationarity as the central obstacle, shows why the naive baselines fail, and develops the dominant fix — centralized training with decentralized execution (MADDPG, VDN, QMIX). A companion lesson takes up self-play, the landmark game-playing systems, and the equilibrium concepts that define what \"solved\" means.\n",{"path":6378,"title":6379,"module":6327,"summary":6380},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2","Multi-Agent RL: Self-Play and Solution Concepts","A companion to the Markov-games lesson. In the purely competitive setting, an agent can generate its own training curriculum by playing against copies of itself — self-play, the method behind AlphaGo, OpenAI Five, and AlphaStar. We develop why self-play produces an ever-improving opponent, the systems it built, and then the equilibrium solution concepts (Nash, correlated, coarse-correlated) that define what \"solved\" means once there is an opponent, closing with PSRO, MAPPO, and the language-model-agent frontier.\n",{"path":6382,"title":6383,"module":6327,"summary":6384},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl","Hierarchical RL: Options and the Option-Critic","Flat RL cannot explore a long horizon: reaching reward through hundreds of primitive actions is exponentially unlikely, and every credit-assignment update crawls one step at a time. Hierarchy breaks one hard long-horizon problem into many short ones. This lesson develops temporal abstraction — the options framework and its semi-Markov view, and learning options end to end with the option-critic. A companion lesson takes up goal-conditioned manager\u002Fworker hierarchies (FeUdal Networks and HIRO), hindsight relabeling, and unsupervised skill discovery.\n",{"path":6386,"title":6387,"module":6327,"summary":6388},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2","Hierarchical RL: Goal-Conditioned Hierarchies and Skills","A companion to the options lesson. Options package a behavior; goal-conditioned hierarchies instead give the top level an explicit language of goals — a manager proposes a target state or a latent direction, and a worker is rewarded for reaching it (FeUdal Networks, HIRO). We develop that architecture, the hindsight relabeling that lets it learn from sparse reward, and unsupervised skill discovery (DIAYN) that learns a repertoire of behaviors with no reward at all. The shared idea throughout: shorten the horizon by inserting a level that decides less often.\n",{"path":6390,"title":6391,"module":6327,"summary":6392},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models","RLHF and Language Models","A language model trained to predict the next token is fluent but not helpful, honest, or harmless — the objective it was optimized for is not the objective we want. RLHF closes that gap by turning the one thing humans do reliably, comparing two outputs, into a reward. We build the three-stage pipeline: supervised fine-tuning, a Bradley-Terry reward model fit to preference pairs, then PPO against that reward with a KL penalty keeping it near the reference policy. We then cover reward hacking and why the KL penalty matters, Direct Preference Optimization, which folds the reward model into a single classification loss, and the RLAIF and verifiable-reward variants. This pipeline is what makes the largest models usable as assistants.\n",{"path":6394,"title":6395,"module":6327,"summary":6396},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps","Partial Observability: POMDPs and the Belief State","Drop the assumption that the agent sees the state. It sees an observation, a partial and noisy function of a hidden state, and one observation is no longer a Markov signal. This lesson builds the POMDP tuple, shows that the belief state — the posterior over hidden states — is a sufficient statistic that turns a POMDP back into an MDP over beliefs, and works the Bayes-filter belief update step by step. A companion lesson explains why exact planning is intractable and develops the deep-RL answer of recurrent, history-based policies.\n",{"path":6398,"title":6399,"module":6327,"summary":6400},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2","Partial Observability: Planning and Recurrent Policies","A companion to the belief-state lesson. In principle a POMDP reduces to an MDP over beliefs; in practice two obstacles block that. Exact planning over the belief simplex is intractable — the value function is piecewise-linear-and-convex with a number of pieces that can explode — and computing the belief needs a model the agent rarely has. This lesson develops the intractability, the point-based approximations that address it, and the deep-RL answer: make the policy a function of history with a recurrent network (DRQN, R2D2), with frame-stacking, attention, and world-model latents as learned beliefs.\n",{"path":6402,"title":6403,"module":6327,"summary":6404},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl","Safe and Constrained RL: The CMDP and Policy Methods","Maximizing a scalar reward is not the same as behaving well: a capable optimizer will find and exploit any gap between the reward and what its designer actually meant, a failure called specification gaming or reward hacking. The remedy is to add explicit cost constraints — the constrained MDP — maximizing return subject to an expected-cost budget. This lesson builds the core toolkit: the CMDP itself, Lagrangian primal-dual methods that learn a multiplier on the constraint (RCPO), and constrained policy optimization (CPO) with its trust-region cost bound. A companion lesson covers risk-sensitivity, safe exploration, and the alignment framing.\n",{"path":6406,"title":6407,"module":6327,"summary":6408},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2","Safe RL: Risk, Safe Exploration, and Alignment","A companion to the constrained-MDP lesson. Constraining the mean cost is not enough: a policy safe on average can be catastrophic in the tail, and a policy safe at convergence can violate its limits wildly while learning. This lesson optimizes the tail with risk-sensitive objectives (CVaR), then makes exploration itself safe with shields, Lyapunov methods, and safety layers that project unsafe actions onto the feasible set — closing with benchmarks, safe RLHF, robustness, and the alignment framing that ties safety back to the problem of incompletely specified reward.\n",{"path":6410,"title":6411,"module":6327,"summary":6412},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization","Meta-RL and Generalization","An agent that masters one task often fails on the next; it has overfit to a single environment. This lesson treats fast adaptation as a meta-problem over a distribution of tasks: meta-train so that a few episodes at meta-test time suffice. We cover the two families — optimization-based (MAML learns an initialization) and context-based (RL-squared and PEARL infer a latent task) — the exploration cost of adaptation, and the parallel problem of generalization: why deep RL memorizes environments and what fixes it (domain randomization, procedural generation, augmentation, regularization). It closes on foundation models and sequence-model agents as the generalist endpoint.\n",{"path":6414,"title":6415,"module":6416,"summary":6417},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement","The Psychology of Reinforcement","Reinforcement Learning in Minds and Brains","Reinforcement learning is both an engineering method and a theory of how animals learn. The prediction\u002Fcontrol split of the algorithms mirrors the psychologist's split between classical and instrumental conditioning. We trace the correspondence: the Rescorla–Wagner model as a prediction-error rule that explains blocking, its real-time TD extension, Thorndike's Law of Effect behind trial-and-error control, and the habitual\u002Fgoal-directed distinction that maps onto model-free versus model-based learning.\n",{"path":6419,"title":6420,"module":6416,"summary":6421},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control","The Psychology of Reinforcement: Instrumental Control","Classical conditioning was prediction; instrumental conditioning is control. Thorndike's Law of Effect is trial-and-error control — selection plus association, search plus memory — and Skinner's shaping and schedules are reward engineering. The habitual\u002Fgoal-directed distinction maps onto model-free versus model-based control, dissociated by outcome devaluation and arbitrated by uncertainty. Delayed reinforcement is the credit-assignment problem, and the stimulus traces and secondary reinforcers of animal-learning theory are eligibility traces and value functions.\n",{"path":6423,"title":6424,"module":6416,"summary":6425},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error","Dopamine and the TD Error","The TD error was invented as an algorithm; a decade later it turned out to closely describe the firing of the brain's dopamine neurons. We follow Schultz's experiments — dopamine fires at an unpredicted reward, shifts to the earliest predictive cue, and dips below baseline when a predicted reward is withheld — and match each result to the TD error term by term. We then read the basal ganglia as a neural actor–critic with dopamine as its shared training signal, and close on addiction as a hijacking of that signal.\n",{"path":6427,"title":6428,"module":6416,"summary":6429},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain","Dopamine in the Brain: The Neural Actor–Critic","If phasic dopamine is a TD error, where does it go and what does it change? We follow the axons into the basal ganglia, read the corticostriatal synapse as the place where state, action, and error meet, and map the ventral and dorsal striatum onto the critic and the actor of an actor–critic. Addiction becomes a broken cancellation in the same learning signal, and distributional dopamine extends the scalar RPE into a population code.\n",{"path":6431,"title":6432,"module":6416,"summary":6433},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition","Animal Learning and Cognition","Three classic associative phenomena turn out to be reinforcement-learning mechanisms seen in behavior. Blocking says learning is driven by prediction error, not co-occurrence, and reduces to least-squares regression fitting a collinear feature. Higher-order conditioning and conditioned reinforcement make a value estimate a secondary reinforcer — bootstrapping in an animal. Delayed reinforcement is the credit-assignment problem, and the stimulus traces and goal gradients of Pavlov and Hull are eligibility traces and TD-learned value functions.\n",{"path":6435,"title":6436,"module":6416,"summary":6437},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning","Cognitive Maps and Model-Based Learning","Tolman's rats learned the layout of a maze with no reward, then used it the moment food appeared — latent learning, a cognitive map, and the behavioral face of model-based reinforcement learning. The map is learned by system identification (stimulus–stimulus associations), which fills in whether or not reward is present, and queried by planning, which re-solves a route from a single changed reward. The successor representation sits between cache and model, and hippocampal predictive maps and scaled-up world models carry the same idea into brain and machine.\n",{"path":6439,"title":6440,"module":6416,"summary":6441},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement","The Neuroscience of Reinforcement","The dopamine story is one contact point between reinforcement learning and the brain; this lesson fills in the surrounding neuroscience so the mapping stands on its own. We build a working primer of neurons, synapses, and neuromodulation; separate four signals that casual usage conflates — reward, reinforcement, value, and prediction error; and read the actor and critic as corticostriatal synapses updated by two- and three-factor rules, grounded in spike-timing-dependent and reward-modulated plasticity.\n",{"path":6443,"title":6444,"module":6416,"summary":6445},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems","The Brain's Several Learning Systems","The actor's three-factor rule has an ancestor in Klopf's hedonistic neuron — a single cell as a reinforcement-seeking agent — and a bacterium's run-and-twiddle shows the Law of Effect with no synapses at all. Teams of such neurons implement policy gradient collectively, the broadcast reward replacing backpropagation. And the brain is not only model-free: outcome devaluation, prefrontal value coding, and hippocampal forward sweeps localize a model-based system. The recurring conclusion is that the brain is several interacting learning systems, not one algorithm.\n",{"path":6447,"title":5603,"module":306,"summary":306},"\u002Freinforcement-learning",{"path":6449,"title":6450,"module":5,"summary":6451},"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai","What Is Artificial Intelligence?","Eight definitions of AI fall into a two-by-two grid: think versus act, and measure success against human performance versus an ideal standard of rationality. We work through all four schools — the Turing test, cognitive modelling, the laws of thought, and the rational agent — and adopt the last as the frame for the whole course: AI is the study and design of rational agents.\n",{"path":6453,"title":6454,"module":5,"summary":6455},"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai","The Foundations of AI","Where the rational-agent idea came from and what surrounds it. AI inherited its core tools from eight older disciplines — philosophy, mathematics, economics, neuroscience, psychology, computer engineering, control theory, and linguistics. Its history runs in cycles of boom and winter, from the 1956 Dartmouth workshop through expert systems to the statistical turn. And the deep-learning era — AlexNet, the Transformer, GPT-3, AlphaGo — is a new way of computing the agent function at scale, not a new definition of AI.\n",{"path":6457,"title":6458,"module":5,"summary":6459},"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents","Intelligent Agents","An agent perceives an environment through sensors and acts on it through actuators; its behavior is an agent function mapping percept sequences to actions. A rational agent chooses, for each percept sequence, the action that maximizes its expected performance measure given its knowledge. We build the first half of the vocabulary the whole course rests on — the agent function, rationality, PEAS task specifications, and the six axes along which task environments vary.\n",{"path":6461,"title":6462,"module":5,"summary":6463},"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures","Agent Architectures","How to build a program that computes a good agent function without storing an astronomically large lookup table. Four skeleton architectures in order of increasing power — simple reflex, model-based, goal-based, and utility-based — plus the learning agent that improves any of them, the scale of world representations (atomic, factored, structured) they rest on, and how a modern language-model agent fits the same frame.\n",{"path":6465,"title":6466,"module":6467,"summary":6468},"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search","Uninformed Search","Search","A goal-based agent that cannot see which action is best turns the problem into a state space — an initial state, a set of actions, a transition model, a goal test, and a path cost — and searches for a sequence of actions reaching the goal. We build the state-space formulation on the 8-puzzle and route-finding, give the one TREE-SEARCH \u002F GRAPH-SEARCH skeleton every algorithm specializes, and measure strategies by completeness, optimality, and complexity. This lesson develops the first two frontier disciplines — breadth-first and uniform-cost search; the rest follow in the next lesson.\n",{"path":6470,"title":6471,"module":6467,"summary":6472},"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared","Search Strategies Compared","Breadth-first and uniform-cost search pay for optimality in memory. This lesson develops the strategies that trade memory for depth: depth-first search, which keeps only the current path; depth-limited and iterative-deepening search, which fix DFS's failure on infinite paths; and bidirectional search, which meets in the middle for a square-root saving. It closes by lining up all six uninformed strategies against completeness, optimality, and complexity, and tracing where the algorithms came from and where they went.\n",{"path":6474,"title":6475,"module":6467,"summary":6476},"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search","Informed Search and A*","An informed search uses a heuristic $h(n)$, an estimate of the cost from a node to the goal, to decide what to expand next. Greedy best-first search follows the heuristic blindly and gives up optimality; A* corrects it by ranking nodes on $f(n) = g(n) + h(n)$, and is optimal when the heuristic is admissible (tree search) or consistent (graph search). This lesson defines the heuristic, builds best-first search, and proves why A* is optimal, with the contour picture that explains its pruning. Where good heuristics come from is the next lesson.\n",{"path":6478,"title":6479,"module":6467,"summary":6480},"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions","Heuristic Functions and Memory-Bounded Search","A* is only as good as its heuristic, so this lesson answers where good heuristics come from: relaxed problems, whose exact solution cost is an admissible heuristic, and pattern databases, which precompute subproblem costs. It measures heuristic quality with dominance and the effective branching factor, then tackles A*'s memory problem with IDA*, RBFS, and SMA*. It closes with modern heuristic search — weighted A*, learned and disjoint pattern-database heuristics, and bidirectional A*.\n",{"path":6482,"title":6483,"module":6467,"summary":6484},"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search","Local Search and Optimization","When the path to a goal is irrelevant and only the final state matters, we can discard the search tree entirely and keep just the current state, moving to a better neighbor at each step. This lesson builds the state-space landscape metaphor, works through hill climbing and the three obstacles that defeat it (local maxima, ridges, plateaus), then develops the first escapes: random restarts and simulated annealing with its temperature schedule. The population-based methods and continuous-space calculus follow in the next lesson.\n",{"path":6486,"title":6487,"module":6467,"summary":6488},"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search","Population and Continuous Search","Single-state local search escapes a trap by restarting or tolerating downhill moves. This lesson develops the alternatives that keep several states at once — local beam search, which shares successors across parallel threads, and genetic algorithms, which recombine two parents through crossover and mutation — then crosses into continuous spaces, where calculus replaces the finite neighbor set: gradient ascent, line search, and Newton's method. It closes with the industrial descendants of these methods and the loop they all share.\n",{"path":6490,"title":6491,"module":6467,"summary":6492},"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search","Adversarial Search and Games","When another agent plans against you, search becomes a game. We formalize two-player, zero-sum, perfect-information games as search problems, define the minimax value that optimal play backs up through the game tree, and give the MINIMAX algorithm that computes it. Alpha–beta pruning then cuts the cost of that search roughly in half in the exponent without changing the answer, and a heuristic evaluation function plus a cutoff test turns the exact algorithm into a real-time player that copes with the horizon effect.\n",{"path":6494,"title":6495,"module":6467,"summary":6496},"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information","Games of Chance and Imperfect Information","Minimax and alpha–beta assume a deterministic game both players can see in full. Drop either assumption and search must change. This lesson adds chance nodes and the expectiminimax value for games with dice, then belief-state reasoning for partially observable games — Kriegspiel and card games — where averaging over clairvoyance both helps and misleads. It closes with the line from Deep Blue's alpha–beta to AlphaGo's learned evaluation and Monte Carlo tree search, and the provable-pruning and self-play research around each end of that story.\n",{"path":6498,"title":6499,"module":6467,"summary":6500},"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction","Constraint Satisfaction Problems","A constraint satisfaction problem replaces the black-box state with a factored one: variables, domains, and constraints. That structure supports inference before any search runs. This lesson defines the CSP on map coloring, Sudoku, and scheduling, then develops constraint propagation: node and arc consistency, the AC-3 algorithm that makes a whole network arc-consistent, and the way one deleted value cascades across the graph to prune impossible options ahead of search.\n",{"path":6502,"title":6503,"module":6467,"summary":6504},"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure","CSP Search and Structure","Propagation prunes a CSP but rarely finishes it, so we search. This lesson builds backtracking search over partial assignments and the general-purpose heuristics that make it fast — MRV, degree, least-constraining-value, forward checking, MAC, and intelligent backtracking. It then shows how the shape of the constraint graph controls difficulty: tree-structured problems fall in linear time, cutset conditioning handles the rest, and min-conflicts local search solves a million queens in a constant number of steps.\n",{"path":6506,"title":6507,"module":6467,"summary":6508},"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty","Search Under Uncertainty","Classical search assumes the agent knows the state it is in and exactly what each action does. Drop the second assumption and a plan can no longer be a fixed sequence of actions. This lesson develops the first response: AND-OR search over nondeterministic actions, which returns a branching contingency plan rather than a straight line. We build it on the erratic vacuum world, show how OR nodes (the agent's choices) alternate with AND nodes (nature's outcomes), trace the recursion that finds a plan, and handle the case where the only solution is a cyclic \"try, try again.\"\n",{"path":6510,"title":6511,"module":6467,"summary":6512},"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search","Belief-State and Online Search","When the agent cannot see the full state, a plan can no longer test where it actually is — it must reason over the set of states it might be in. This lesson develops belief-state search, from sensorless (conformant) planning that coerces an unknown world into a goal, through the predict-observe-update cycle of contingent planning with percepts, to online search in unknown environments, where the agent must act in order to learn. It closes with LRTA*, which refines its own heuristic as it explores, one step from reinforcement learning.\n",{"path":6514,"title":6515,"module":6516,"summary":6517},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic","Logical Agents and Propositional Logic","Logic and Planning","A knowledge-based agent keeps a store of sentences and acts by asking it what to do. To make \"asking\" mean something we need entailment — the relation $KB \\models \\alpha$ that holds when every model of the knowledge base is a model of the query. Propositional logic gives a syntax and a truth-table semantics for which entailment is decidable. This first part builds the foundations: the agent loop, the Wumpus World, models and entailment, the connectives and truth tables, theorem proving by refutation, and the resolution rule with its CNF conversion — a single complete inference procedure for all of propositional logic.\n",{"path":6519,"title":6520,"module":6516,"summary":6521},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference","Propositional Inference and Logical Agents","Model checking and resolution decide entailment, but both can blow up. This part turns propositional logic into a practical engine and a working agent. Horn clauses give linear-time forward and backward chaining — the basis of logic programming. DPLL and WalkSAT make satisfiability testing fast in the common case. Then we make the agent situated: time-indexed fluents, the frame problem and its solution by successor-state axioms, a hybrid agent that deduces a safe map and plans a route through it, and SATPlan, which finds a plan by asking a SAT solver for a satisfying model.\n",{"path":6523,"title":6524,"module":6516,"summary":6525},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic","First-Order Logic","Propositional logic can only say that facts hold; it cannot talk about the objects a fact is about, or state a rule once and have it cover every object. First-order logic fixes this by committing to a world of objects, relations, and functions. This first part builds the language from the ground up: the ontology it commits to, the model that gives a sentence a truth value, the syntax of terms and sentences, the two quantifiers with their standard mistakes, and equality.\n",{"path":6527,"title":6528,"module":6516,"summary":6529},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use","First-Order Logic in Use","With the language of first-order logic in hand, this part is about using it well. Database semantics trades expressive power for the convenience of a single intended model; higher-order logic shows what first-order logic gives up for decidability. Then we put the language to work: the Tell\u002FAsk interface, the kinship domain axiomatized from scratch, and the seven-step knowledge-engineering process applied to a digital circuit.\n",{"path":6531,"title":6532,"module":6516,"summary":6533},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution","Inference in First-Order Logic","Propositional inference lifts to first-order logic once we can make terms match. Unification is that machinery: the algorithm that finds the substitution making two expressions identical, and the basis of generalized modus ponens. This first part builds the lifted inference rules and the two chaining algorithms they drive — forward chaining, the data-driven procedure behind production systems and Datalog, and backward chaining, the goal-driven procedure behind Prolog.\n",{"path":6535,"title":6536,"module":6516,"summary":6537},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution","First-Order Resolution","Chaining is complete only for Horn knowledge bases. General first-order sentences — with disjunctive conclusions and negations — need a single sound and complete rule: resolution. This part converts arbitrary sentences to CNF by skolemizing away the existentials, lifts the resolution rule with unification, and proves entailment by refuting the negated goal. The result is the proof procedure Gödel's completeness theorem guarantees will find any entailment, together with the search strategies that make it usable.\n",{"path":6539,"title":6540,"module":6516,"summary":6541},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning","Classical Planning","Classical planning represents a problem in a factored language, PDDL: states are sets of ground fluents, and actions are lifted schemas with a precondition and an effect. That structure turns planning into search — forward through states or backward through goals — and lets a program read heuristics straight off the schemas by relaxing the problem. This first part develops the representation, the two search directions, and the domain-independent heuristics that come from ignoring preconditions or delete lists.\n",{"path":6543,"title":6544,"module":6516,"summary":6545},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan","Planning Heuristics and GraphPlan","Every relaxation heuristic can be inaccurate, and none can tell how far apart subgoals sit. The planning graph is a polynomial-size structure that does better: leveled off the problem, it yields admissible distance estimates and a record of which actions and fluents cannot coexist. This part builds the graph, reads heuristics from it, extracts plans with GraphPlan, and closes with the other classical approaches — SATPlan and partial-order planning — and the representational trade that makes all of it work.\n",{"path":6547,"title":6548,"module":6516,"summary":6549},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world","Planning and Acting in the Real World","Classical planning's clean theory rests on four assumptions: time is ignored, actions are atomic, the world is deterministic and fully observable, and the agent is alone. This first part drops the first two. We add durations and resource constraints — turning a plan into a schedule, solved by the critical-path method and, once resources contend, by NP-hard job-shop scheduling — and let a planner reason at multiple levels of abstraction through high-level actions and their angelic reachable sets.\n",{"path":6551,"title":6552,"module":6516,"summary":6553},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty","Planning Under Uncertainty","Classical planning assumed the world was deterministic, fully observable, and the agent alone. This part drops the last two assumptions. When the agent cannot see or predict the world, planning moves into belief-state space: sensorless plans that coerce the world into the goal without sensing, contingent plans that branch on what is sensed, and online agents that monitor and replan when execution diverges. Then we add other agents — joint plans, the coordination problem, and the conventions that let a team act without constant negotiation.\n",{"path":6555,"title":6556,"module":6516,"summary":6557},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation","Knowledge Representation","First-order logic gives you the language; this lesson is about what to say in it. This first part builds the content: a general upper ontology from the top down, categories as first-class objects with taxonomies and inheritance, physical composition and the count-noun\u002Fmass-noun split, events and time reified through the event calculus, and belief modeled with modal logic — the machinery for representing the world an agent reasons about.\n",{"path":6559,"title":6560,"module":6516,"summary":6561},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults","Reasoning Systems and Default Logic","Having represented the world, this part is about reasoning with it at scale. Semantic networks give a graphical notation with fast inheritance; description logics keep subsumption and classification tractable by design. Then we confront the fact that most useful rules hold only by default: circumscription and default logic give a logical account of nonmonotonic reasoning, and truth maintenance systems retract conclusions cleanly when the beliefs beneath them change.\n",{"path":6563,"title":6564,"module":6565,"summary":6566},"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes","Quantifying Uncertainty","Uncertainty","Logic breaks down in any domain where the rules have exceptions you cannot enumerate — the qualification problem. Probability replaces truth values with degrees of belief that obey Kolmogorov's axioms, and the full joint distribution becomes a knowledge base from which any query is answered by summing entries: marginalization, conditioning, and normalization. Independence factors that joint into smaller pieces — the first step toward a calculus of rational belief that an agent can actually compute with.\n",{"path":6568,"title":6569,"module":6565,"summary":6570},"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes","Bayes' Rule and Naive Bayes","Bayes' rule inverts a causal model into a diagnostic one, turning \"how a cause produces its symptoms\" into \"which cause explains what I observed.\" Ignoring the prior is the base-rate fallacy behind overconfident test results. Conditional independence then lets several pieces of evidence combine by multiplying likelihood ratios instead of building an exponential joint, giving the naive Bayes model and pointing directly at Bayesian networks.\n",{"path":6572,"title":6573,"module":6565,"summary":6574},"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks","Bayesian Networks","A Bayesian network is a directed acyclic graph of random variables in which each node carries a conditional probability table for itself given its parents. That structure factors the full joint distribution into a product of local terms, turning an exponential table into a linear one, and it makes the conditional independences of the domain explicit. We build the canonical burglary–alarm network, read compactness and d-separation off the graph, run exact inference by variable elimination, and, where that is intractable, estimate answers by sampling.\n",{"path":6576,"title":6577,"module":6565,"summary":6578},"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks","Bayesian Networks: Inference and Relational Models","When exact inference is intractable, sampling estimates the posterior instead: prior and rejection sampling, likelihood weighting, and Gibbs\u002FMCMC, whose error shrinks as one over the square root of the sample count. The same graphical idea then lifts from a fixed set of variables to whole populations — relational and open-universe probability models write dependencies once and unroll them over objects — and we close by placing probability against the rule-based, Dempster–Shafer, and fuzzy alternatives it displaced.\n",{"path":6580,"title":6581,"module":6565,"summary":6582},"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time","Probabilistic Reasoning over Time","A world that changes needs a state variable at every point in time. The Markov assumption cuts the dependence on history down to the previous slice, leaving a transition model and a sensor model that define a temporal Bayesian network. Four recursive tasks fall out — filtering, prediction, smoothing, and the most likely explanation — each a message passed along the sequence. We ground them in hidden Markov models and their matrix form, sketch the Kalman filter for continuous state, and reach dynamic Bayesian networks with particle filtering as the general approximate method.\n",{"path":6584,"title":6585,"module":6565,"summary":6586},"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association","Reasoning over Time: Tracking and Data Association","Dynamic Bayesian networks generalize HMMs and Kalman filters to arbitrarily many state variables per slice, and when exact inference blows up, particle filtering approximates the belief state with a population of weighted samples that propagate, reweight, and resample. Tracking several objects at once adds the data-association problem — which observation came from which object — whose combinatorics defeat any exact filter, so particle filters and MCMC keep many hypotheses alive. We close with SLAM and learned state-space models.\n",{"path":6588,"title":6589,"module":6565,"summary":6590},"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions","Making Decisions: Utility Theory","A rational agent chooses the action that maximizes expected utility — the probability of each outcome weighted by how much the agent wants it. We derive the utility function from six axioms on preferences, so maximizing expected utility is forced by consistency rather than assumed; look at risk aversion in the utility-of-money curve; package one-shot choices into decision networks; and quantify what an observation is worth with the value of information.\n",{"path":6592,"title":6181,"module":6565,"summary":6593},"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes","When an agent must act repeatedly in a stochastic world, a fixed plan is useless — it needs a policy, an action for every state. The Markov decision process makes this precise with a transition model, a reward, and a discount factor; the Bellman equation characterizes the optimal state utilities, and value iteration and policy iteration solve it. Partial observability lifts the problem to belief states, and bandits, Monte-Carlo tree search, and scalable POMDP solvers extend it — this is the model-known half of reinforcement learning.\n",{"path":6595,"title":6596,"module":6565,"summary":6597},"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory","Decision Analysis: Multi-Attribute Utility and Decision Networks","Decision analysis takes the single-agent utility framework and makes it practical: utility over several attributes, dominance and additive value functions, influence diagrams that fold Bayesian networks together with decision and utility nodes, and the value of information that tells an agent which questions are worth asking. Structure in an agent's preferences — dominance, preferential and utility independence — collapses an exponential utility table into a few one-dimensional functions, the same move that made Bayesian networks compact.\n",{"path":6599,"title":6600,"module":6565,"summary":6601},"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design","Game Theory and Mechanism Design","When outcomes depend on other rational agents, single-agent utility maximization no longer suffices. Game theory studies decisions among agents — normal-form games, dominant strategies, Nash and maximin equilibria, and repeated games — and mechanism design runs the logic backwards, engineering rules (auctions, VCG) so that self-interested play produces a good collective outcome. Algorithmic game theory then asks whether equilibria can be computed, what selfishness costs society, and how the mechanisms deployed at internet scale actually behave.\n",{"path":6603,"title":6604,"module":6605,"summary":6606},"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples","Learning from Examples","Learning","An agent that improves with experience does not need its designer to anticipate every situation. Inductive learning takes that ambition and narrows it to one tractable problem: from labelled input-output pairs, recover a function that predicts the output for inputs never seen. This first part builds the foundation around a single organizing question — generalization — through decision trees and information gain, and the training\u002Fvalidation\u002Ftest discipline for evaluating and choosing hypotheses. A second part takes up the theory of learning and the main model families.\n",{"path":6608,"title":6609,"module":6605,"summary":6610},"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families","The Theory of Learning and Model Families","Cross-validation measures generalization but does not explain it. This part supplies the theory — PAC learning, sample complexity, and the VC dimension — that says when a hypothesis consistent with enough data is probably approximately correct, and why an unrestricted hypothesis space can never generalize. It then surveys the model families a practitioner reaches for: linear regression and gradient descent, the perceptron and logistic regression, support vector machines and the kernel trick, and ensembles by bagging and boosting — closing with what deep learning changed about the classical picture.\n",{"path":6612,"title":6613,"module":6605,"summary":6614},"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning","Learning Probabilistic Models","A [Bayesian network](\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks) is useless until its numbers are filled in, and those numbers come from data. This first part casts learning itself as probabilistic inference: hypotheses carry a prior, data update it to a posterior, and predictions average over what remains. From that frame fall the standard estimators — maximum likelihood by counting, MAP with a conjugate prior, full Bayesian updating — for the case where every variable is observed. A second part takes up the harder case of hidden variables and the EM algorithm.\n",{"path":6616,"title":6617,"module":6605,"summary":6618},"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization","Learning with Hidden Variables: The EM Algorithm","Complete data can be learned by counting; real data usually hide some variables — the disease behind the symptoms, the cluster behind the points. This part develops the expectation-maximization algorithm, which learns those models by alternating an expected completion of the missing data with a re-estimation of the parameters. It works the idea through mixtures of Gaussians, Bayesian networks, and hidden Markov models, proves the monotone-likelihood guarantee from the evidence lower bound, and traces the line from EM to variational inference and the variational autoencoder.\n",{"path":6620,"title":5603,"module":6605,"summary":6621},"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning","Reinforcement learning is an MDP with the model unknown: the agent knows neither how its actions move the world nor which states are rewarded, and must recover good behaviour from experienced transitions and rewards alone. This first part builds the classical tabular theory — passive learning (fix a policy, learn its value, by direct estimation, adaptive dynamic programming, and temporal differences) and active learning (choose actions, trade exploration against exploitation, and learn control with Q-learning and SARSA). A second part lifts it off the lookup table with function approximation and policy search.\n",{"path":6623,"title":6624,"module":6605,"summary":6625},"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search","Reinforcement Learning: Generalization and Policy Search","Tabular reinforcement learning stores one number per state, which is hopeless for backgammon or chess. This part lifts RL off the lookup table with function approximation, so that updating one state generalizes to related ones, then turns to policy search — representing and optimizing the policy directly, up to the REINFORCE policy gradient and correlated sampling. It closes with the bridge to deep reinforcement learning (deep Q-networks, actor-critic, PPO), the classic applications, and the hand-off to the dedicated RL subject.\n",{"path":6627,"title":6628,"module":6605,"summary":6629},"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning","Knowledge in Learning","Pure induction learns a function from labelled examples while knowing almost nothing to begin with. This first part brings prior knowledge into the loop by recasting learning as logical inference — hypotheses, examples, and classifications as sentences. It develops current-best-hypothesis search, the version space and its general\u002Fspecific boundary maintained by candidate elimination, and states the three entailment constraints that fix how background knowledge enters. A second part builds the three knowledge-based methods those constraints define.\n",{"path":6631,"title":6632,"module":6605,"summary":6633},"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods","Knowledge-Based Learning: EBL, Relevance, and ILP","Once learning is cast as logical inference, three methods follow from the three ways prior knowledge can enter. Explanation-based learning generalizes a single example by explaining it with the domain theory, gaining speed but nothing new. Relevance-based learning uses determinations to shrink the hypothesis space and converge from fewer examples. Inductive logic programming learns genuinely new first-order rules — top-down with FOIL, bottom-up by inverting resolution, even inventing new predicates — and connects to modern statistical relational and neuro-symbolic learning.\n",{"path":6635,"title":6636,"module":6637,"summary":6638},"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception","Vision and Perception","Frontiers","Perception connects an agent to the physical world. We follow one modality — vision — from the physics of image formation (the pinhole camera, perspective projection, lenses, shading, color) through the early operations that turn a pixel array into edges, texture, and motion, and into recognition by appearance. The recurring problem is inversion: a camera collapses a 3-D world onto a 2-D grid, and an agent that wants to act must build the scene back up. Rebuilding the scene is the subject of the companion lesson.\n",{"path":6640,"title":6641,"module":6637,"summary":6642},"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world","Vision: Reconstructing the 3D World","A camera collapses a three-dimensional world onto a flat grid; this lesson inverts that collapse. We build the camera projection matrix (intrinsics and extrinsics), triangulate a point from two views, then work through the toolbox of depth cues — motion parallax, binocular stereopsis, multiple views, texture, shading, and contour — that turn an ambiguous image back into a scene. We add structural recognition (pictorial-structure \"cardboard people\"), the task-driven use of vision in cars and robots, and the shift from hand-built pipelines to learned deep-vision networks.\n",{"path":6644,"title":6645,"module":6637,"summary":6646},"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics","Robotics","A robot is an agent with a body: sensors that read the physical world and effectors that push back on it. This lesson grounds the abstract AI machinery in that body. We build up the hardware (range finders, proprioception, degrees of freedom), then cast perception as probabilistic filtering — the kinematic motion and sensor models, Monte Carlo localization, the extended Kalman filter, and simultaneous localization and mapping (SLAM). The companion lesson takes the estimated pose forward into planning and control.\n",{"path":6648,"title":6649,"module":6637,"summary":6650},"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control","Robotics: Planning and Control","A robot that knows where it is still has to decide how to move, and then make a slipping, sensing-imperfect body actually go there. This lesson takes the pose estimate forward: planning motion in configuration space with cell decomposition and sampling-based roadmaps (PRMs and RRTs), planning under uncertainty with most-likely-state and online replanning, closing the loop with P\u002FPD\u002FPID control and potential fields, and finally the software architectures — subsumption, three-layer, and pipeline — that assemble it all, plus the learning-based turn in modern robotics.\n",{"path":6652,"title":6653,"module":6637,"summary":6654},"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai","Natural Language for AI Agents","Language is how agents acquire the knowledge already written down and how they communicate with the humans they serve. This lesson gives the classical AI account of language as a source of information: n-gram language models and the information-seeking tasks built on them — text classification, information retrieval (BM25, the inverted index, PageRank), and information extraction with finite-state templates and hidden Markov models. Throughout, we point to the dedicated NLP subject for the modern deep-learning treatment; the companion lesson takes up grammar, translation, and speech.\n",{"path":6656,"title":6657,"module":6637,"summary":6658},"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech","Language for AI Agents: Grammar, Translation, and Speech","N-gram models see only a local window; they cannot say why \"black dog\" is well-formed English and \"dog black\" is not, because that is a fact about structure. This lesson takes up structure: phrase-structure and probabilistic context-free grammars, syntactic analysis by chart parsing and CYK, augmented grammars and compositional semantics, then the two major statistical successes — machine translation and speech recognition — cast as noisy-channel problems. It closes with the bridge from n-grams to transformers and where the classical account sits relative to modern NLP.\n",{"path":6660,"title":6661,"module":6637,"summary":6662},"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future","Philosophy, Ethics, and the Future of AI","Two questions have shadowed the field since its founding: can machines act intelligently (weak AI), and can they really think (strong AI)? We work through Turing's objections and their rebuttals — the arguments from disability, mathematics, and informality — then the strong-AI debate: the mind-body problem, functionalism and the brain prosthesis, Searle's Chinese Room and the systems reply, and consciousness and qualia. The companion lesson turns from what AI can do to what it should, and closes the course.\n",{"path":6664,"title":6665,"module":6637,"summary":6666},"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future","The Ethics and Future of AI","Having asked whether machines can act intelligently and really think, we turn to whether we should build them at all. This lesson works through the six ethical risks — lost jobs, autonomous weapons, surveillance and privacy, biased decisions, the safety of superintelligence, and the erosion of accountability — then the value-alignment problem in the LLM era, and where the classical agent components could go next. It closes the course by tying search, logic, probability, and learning into a single picture of intelligence as rational agency.\n",{"path":6668,"title":6669,"module":306,"summary":306},"\u002Fartificial-intelligence","Artificial Intelligence",{"path":6671,"title":6672,"module":6673,"summary":6674},"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart","Nuclear Composition and Ground-State Properties","Nuclear Properties","The nucleus is a bound assembly of Z protons and N neutrons packed to a radius R = R0 A^(1\u002F3) at a nearly constant density of about 10^17 kg\u002Fm^3. We fix the vocabulary of nuclides, derive nuclear size from mirror-nuclide and electron-scattering data, read the binding-energy-per-nucleon curve, and model it with the liquid-drop semiempirical mass formula.\n",{"path":6676,"title":6677,"module":6673,"summary":6678},"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions","Nuclear Size, Shape, and Charge Distributions","Elastic electron scattering resolves the nucleus by its de Broglie wavelength. The measured cross section is the Mott point-charge cross section modulated by a form factor, and that form factor is the Fourier transform of the charge density. Diffraction minima fix the radius, the small-angle slope fixes the mean-square radius, and the fitted Woods-Saxon profile gives a central density and a skin thickness. Mirror-nucleus Coulomb energies, muonic-atom X-rays, and optical isotope shifts give independent radii that all track R = R0 A^(1\u002F3).\n",{"path":6680,"title":6681,"module":6673,"summary":6682},"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy","Nuclear Masses, Mass Excess, and Separation Energies","The atomic mass unit fixes the scale, and the mass excess collects the small binding-driven deviation from the integer mass number. Penning-trap cyclotron frequencies now measure masses to parts in a billion, and every decay and reaction Q-value is a difference of these masses. One- and two-nucleon separation energies read the binding difference between neighbouring nuclides directly, showing the even-odd pairing stagger and the sharp drops at magic numbers, and their vanishing marks the neutron and proton drip lines that bound the chart of the nuclides.\n",{"path":6684,"title":6685,"module":6673,"summary":6686},"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula","The Semi-Empirical Mass Formula and the Valley of Stability","Five physical terms reproduce nuclear binding across the chart: a volume term from saturation, a surface term from the deficit of edge neighbours, a Coulomb term from the electrostatic self-energy of a charged sphere, an asymmetry term from the Pauli cost of unequal proton and neutron filling, and a pairing term. The formula is quadratic in Z at fixed A, so isobars lie on a mass parabola whose minimum sets the most stable charge and whose slope dictates the direction of beta decay. The same competition between surface and Coulomb energy defines the fissility parameter and the onset of fission.\n",{"path":6688,"title":6689,"module":6673,"summary":6690},"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles","Nuclear Spin, Magnetic Dipole, and Electric Quadrupole Moments","The ground state of a nucleus carries a definite spin and parity, a magnetic dipole moment of order the nuclear magneton, and, when its spin exceeds one-half, an electric quadrupole moment that measures its shape. The single-particle Schmidt lines predict the magnetic moment of an odd-A nucleus from the last unpaired nucleon, and the measured moments fall between them. The quadrupole moment distinguishes prolate from oblate deformation, and hyperfine structure is the experimental handle that fixes the spin and the moments from an atomic spectrum.\n",{"path":6692,"title":6693,"module":6694,"summary":6695},"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview","The Nuclear Force and the Shell Model","The Nuclear Force","The strong force between nucleons is short-range, charge-independent, saturated, and repulsive at its core, about a hundred times stronger than Coulomb. Yukawa explained it as an exchange of massive mesons, tying the force's range to the meson mass through the uncertainty principle. Layered on top, an independent-particle shell model with strong spin-orbit coupling reproduces the magic numbers 2, 8, 20, 28, 50, 82, 126.\n",{"path":6697,"title":6698,"module":6694,"summary":6699},"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron","The Deuteron and the Tensor Force","The deuteron is the only bound two-nucleon state: one shallow level at 2.22 MeV, no excited states. A square-well fit fixes a depth near 35 MeV over a 2 fm range, yet the wavefunction leaks so far past the edge that most of the probability lies outside the force. Its spin-1 ground state, magnetic moment close to the sum of the free-nucleon moments, and small but nonzero electric quadrupole moment together force a D-state admixture and a non-central tensor force.\n",{"path":6701,"title":6702,"module":6694,"summary":6703},"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering","Nucleon-Nucleon Scattering and the Interaction's Structure","Scattering probes the nuclear force above threshold. Partial-wave analysis reduces low-energy data to a single s-wave phase shift, and the effective-range expansion packages that into a scattering length and an effective range. The triplet channel binds (the deuteron) while the singlet is only virtual, which together explain the anomalously large free neutron-proton cross section. Comparing pp, nn, and np results establishes charge symmetry and charge independence, and polarization experiments expose the spin-orbit and tensor pieces.\n",{"path":6705,"title":6706,"module":6694,"summary":6707},"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin","Meson Exchange, the Yukawa Potential, and Isospin","Yukawa's massive-field propagator turns the range of the nuclear force into a meson mass: the exchanged quantum's Compton wavelength is the range. One-pion exchange fixes the long-range tail, complete with the tensor structure the deuteron demanded, while heavier mesons build the intermediate attraction and the repulsive core. Charge independence becomes an isospin symmetry, the force is diagonalized by the total isospin through a tau-dot-tau interaction, and the whole picture sits inside QCD as a residual color force between color-neutral nucleons.\n",{"path":6709,"title":6710,"module":6711,"summary":6712},"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model","The Fermi Gas Model","Nuclear Models","Treating the nucleus as two degenerate Fermi gases of protons and neutrons confined in a common well fixes the Fermi momentum near 250 MeV\u002Fc and the Fermi energy near 33 MeV from the nuclear density alone. The average kinetic energy per nucleon is about 20 MeV, the well depth is the Fermi energy plus the separation energy, and unequal proton and neutron Fermi levels reproduce the asymmetry term of the mass formula.\n",{"path":6714,"title":6715,"module":6711,"summary":6716},"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates","The Liquid-Drop Model and Collective Deformation","Deforming a charged liquid drop into a spheroid raises its surface energy and lowers its Coulomb energy; the two effects compete through the deformation parameter to set a stability minimum and a fission barrier. The ratio of Coulomb to twice the surface energy is the fissility Z-squared over A, which crosses one near 49 and marks the point where the sphere is unstable. The same surface tension that restores small deformations quantizes into collective vibrations, carrying the static mass formula into dynamic collective motion.\n",{"path":6718,"title":6719,"module":6711,"summary":6720},"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle","The Shell Model: Single-Particle States and Spin-Orbit Coupling","A harmonic-oscillator well reproduces the first three magic numbers but fails above twenty; adding a strong inverted spin-orbit term that drives the stretched j equals l plus one-half level down closes the gaps at 28, 50, 82, and 126. The filled shells couple to zero, so the last unpaired nucleon fixes the ground-state spin and parity, and its single-particle magnetic moment falls on the Schmidt lines. Configuration mixing sets the limits of the extreme single-particle model.\n",{"path":6722,"title":6723,"module":6711,"summary":6724},"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations","The Collective Model: Rotations, Vibrations, and Deformed Nuclei","Deformed nuclei rotate with energies proportional to I times I plus one, giving the ground-state band its characteristic level ratios, while near-spherical nuclei vibrate in quantized surface phonons that build one- and two-phonon multiplets. The Nilsson model tracks single-particle levels as the well deforms, moments of inertia fall between the rigid and irrotational limits, backbending marks the sudden alignment of a broken pair, and giant resonances are the bulk dipole and quadrupole modes of the whole nucleus.\n",{"path":6726,"title":6727,"module":6728,"summary":6729},"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes","Radioactivity and Decay Modes","Radioactive Decay","Unstable nuclei decay at a rate proportional to how many remain, giving the exponential law N(t) = N0 e^(-lambda t) with half-life t = 0.693\u002Flambda. We work through the three common modes: alpha decay as Coulomb-barrier tunneling with the Geiger-Nuttall rule, beta decay whose continuous spectrum demands the neutrino, and gamma de-excitation, and follow a decay chain across the chart of nuclides.\n",{"path":6731,"title":6732,"module":6728,"summary":6733},"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium","Serial Decay, the Bateman Equations, and Radioactive Equilibrium","A radioactive parent that decays into a radioactive daughter obeys a coupled pair of rate equations whose solution is the Bateman formula. Depending on the half-life ordering the chain settles into secular equilibrium (equal activities), transient equilibrium (a fixed activity ratio), or no equilibrium. Constant production under irradiation drives the activity toward a saturation value equal to the production rate, competing decay modes split the total decay constant into partial constants, and the natural decay series in secular equilibrium underpin radiometric dating.\n",{"path":6735,"title":6736,"module":6737,"summary":6738},"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory","Alpha Decay and the Gamow Theory of Tunneling","Alpha Decay","The alpha Q-value turns positive above mass number 150 because the emitted helium-4 is exceptionally tightly bound. Emission proceeds by quantum tunneling through the Coulomb barrier: a WKB integral from the nuclear surface to the outer turning point gives the Gamow factor, and multiplying its penetrability by the assault frequency yields half-lives spanning more than twenty orders of magnitude. The leading term reproduces the Geiger-Nuttall relation, log t½ proportional to the daughter charge over the square root of Q.\n",{"path":6740,"title":6741,"module":6737,"summary":6742},"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance","Fine Structure, Angular Momentum, and Hindrance Factors","A single parent emits several alpha groups of slightly different energy, each feeding a distinct level of the daughter, so the alpha spectrum maps the daughter's low-lying states. Emission with orbital angular momentum L raises the barrier by a centrifugal term and is allowed only when angular-momentum and parity selection rules permit. Comparing the measured partial half-life to the Gamow estimate defines a hindrance factor near unity for even-even ground-state transitions and large for odd-A decays that must rearrange the unpaired nucleon.\n",{"path":6744,"title":6745,"module":6746,"summary":6747},"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino","Beta Decay Energetics and the Neutrino","Beta Decay and the Weak Interaction","Beta decay converts a neutron into a proton or the reverse, adjusting Z at fixed A along an isobaric mass parabola. We write the three processes (beta-minus, beta-plus, electron capture), reduce every Q-value to a difference of neutral atomic masses, and read the continuous electron spectrum as the fingerprint of a third, nearly massless particle. Pauli's neutrino, its detection by Reines and Cowan, and the endpoint bound on its mass close the lesson.\n",{"path":6749,"title":6750,"module":6746,"summary":6751},"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay","Fermi's Theory: Kurie Plots and ft Values","Fermi treated beta decay as a point-contact weak transition and read its rate from the golden rule. The electron spectrum then follows from phase space and the Coulomb Fermi function; the Kurie plot straightens it to a line whose intercept is the endpoint. Integrating the spectrum gives the comparative half-life ft, whose logarithm sorts transitions into superallowed, allowed, and forbidden classes governed by the Fermi and Gamow-Teller selection rules.\n",{"path":6753,"title":6754,"module":6746,"summary":6755},"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation","The Weak Interaction and Parity Violation","Beta decay violates mirror symmetry. The Wu experiment on polarized cobalt-60 showed electrons emitted preferentially against the nuclear spin, a pseudoscalar correlation forbidden if parity were conserved. The result fixes the weak charged current as left-handed V minus A, forces neutrinos to be left-handed and antineutrinos right-handed (measured by Goldhaber), and places beta decay within the electroweak theory as W-boson exchange turning a down quark into an up quark.\n",{"path":6757,"title":6758,"module":6746,"summary":6759},"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass","Double Beta Decay and Neutrino Mass","For even-A isobars the pairing term splits the mass parabola into two curves, and a handful of even-even nuclides sit below their odd-odd neighbor yet above the next even-even one: single beta decay is forbidden but second-order double beta decay is allowed. The two-neutrino mode is a standard-model process with the longest measured lifetimes in nature; the neutrinoless mode would require the neutrino to be its own antiparticle and its rate measures the effective Majorana mass, the sharpest probe of the absolute neutrino mass scale.\n",{"path":6761,"title":6762,"module":6763,"summary":6764},"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation","Multipole Radiation and Selection Rules","Gamma Decay","Gamma decay carries a nucleus from an excited state to a lower one by emitting a photon of definite angular momentum and parity. We correct the photon energy for nuclear recoil, expand the radiation field into electric and magnetic multipoles, and read off how the transition rate collapses with each increase in multipole order. The Weisskopf single-particle estimates set the scale, and angular-momentum and parity conservation fix which multipole dominates.\n",{"path":6766,"title":6767,"module":6763,"summary":6768},"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers","Internal Conversion and Isomers","A nucleus can shed excitation energy without emitting a photon by handing it directly to an atomic electron. We define the internal-conversion coefficient, trace its growth with atomic number, multipole order, and decreasing energy, and treat the electron-only E0 transitions and internal pair formation. When the lowest allowed multipole is high and the energy low, the gamma rate falls so far that the excited state survives as a metastable isomer.\n",{"path":6770,"title":6771,"module":6763,"summary":6772},"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer","Angular Correlations and the Mössbauer Effect","Two gammas emitted in cascade are not independent in direction: detecting the first selects magnetic substates of the intermediate level and makes the second anisotropic, so the correlation function fixes the intermediate spin. The same nuclear resonance that recoil normally destroys is recovered when the emitter is locked in a lattice, giving the Mössbauer effect and its part-in-a-trillion resolution of isomer shifts and hyperfine fields.\n",{"path":6774,"title":6775,"module":6776,"summary":6777},"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections","Nuclear Reactions, Fission, and Fusion","Nuclear Reactions","A nuclear reaction X(x, y)Y is governed by its Q value and its cross section, the effective target area for a given process. Splitting the curve of binding energy near iron in either direction releases energy: fission of heavy nuclei by neutron capture and a chain reaction, and fusion of light nuclei that powers the Sun and needs Lawson's density-confinement criterion to be practical.\n",{"path":6779,"title":6780,"module":6776,"summary":6781},"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances","The Compound Nucleus and Resonance Reactions","Low-energy reactions proceed through a long-lived intermediate state whose decay forgets how it formed. Bohr's independence hypothesis factorizes the cross section into a formation step and a branching ratio, an isolated level gives the single-level Breit-Wigner line shape with total width Γ tied to the lifetime by Γτ = ħ, and at high excitation overlapping levels merge into a statistical continuum described by evaporation spectra and the Hauser-Feshbach average.\n",{"path":6783,"title":6784,"module":6776,"summary":6785},"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model","Direct Reactions and the Optical Model","A complex optical potential replaces the many-body target by a single particle moving in an average field whose imaginary part removes flux into non-elastic channels, reproducing the diffraction pattern of elastic scattering. Direct reactions bypass the compound nucleus, transferring a nucleon in one step: stripping and pickup deposit or remove a single nucleon, the angle of the first peak in the distorted-wave angular distribution fixes the transferred orbital angular momentum, and its magnitude gives the spectroscopic factor.\n",{"path":6787,"title":6788,"module":6789,"summary":6790},"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics","The Fission Barrier and Fragment Energetics","Nuclear Fission","Fission is the large-amplitude collective deformation of a heavy nucleus into two fragments. The liquid-drop model sets a barrier from the competition between rising surface energy and falling Coulomb energy under quadrupole deformation, with the fissility parameter Z²\u002FA measuring how close a nucleus is to instability. Bohr-Wheeler theory separates spontaneous from neutron-induced fission, the fragment mass yield is double-humped and asymmetric, about 200 MeV is released per event, and shell corrections add a second minimum that produces fission isomers.\n",{"path":6792,"title":6793,"module":6789,"summary":6794},"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics","Chain Reactions and Reactor Physics","A self-sustaining chain reaction is a fixed point of neutron bookkeeping: the multiplication factor k counts the neutrons in one generation per neutron in the last, and criticality is k = 1. The four-factor formula tracks a neutron through fast fission, resonance escape, thermal utilization, and reproduction; moderation slows fission neutrons to the thermal energies where the fission cross section is largest; and the small delayed-neutron fraction sets the timescale that makes a reactor controllable. Breeding converts fertile U-238 and Th-232 into new fissile fuel.\n",{"path":6796,"title":6797,"module":6798,"summary":6799},"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement","Fusion Reactions and Confinement","Fusion and Nucleosynthesis","Light nuclei release energy when they fuse because binding per nucleon rises steeply toward the iron peak, but the Coulomb barrier suppresses the rate at reactor temperatures. The thermonuclear rate is a convolution of the Maxwell distribution with the tunneling probability, sharply peaked at the Gamow energy. The deuterium-tritium reaction has the lowest barrier and largest cross section; sustained energy gain requires the Lawson triple product of density, temperature, and confinement time, reached by magnetic or inertial confinement.\n",{"path":6801,"title":6802,"module":6798,"summary":6803},"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis","Stellar Nucleosynthesis","Main-sequence stars burn hydrogen to helium through the proton-proton chain and the CNO cycle, both releasing 26.7 MeV per helium nucleus. Helium burning bridges the mass-5 and mass-8 gaps by the triple-alpha process through the Beryllium-8 and Hoyle resonances, and successive carbon-to-silicon burning stages climb to the iron peak, where fusion stops. The elements beyond iron are built by slow and rapid neutron capture, and the solar neutrino flux confirms the reactions directly.\n",{"path":6805,"title":6806,"module":6798,"summary":6807},"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis","Big-Bang Nucleosynthesis","In the first three minutes the expanding universe forged the light elements. The weak interaction froze the neutron-to-proton ratio near one in six when the reaction rate fell below the expansion rate, and free-neutron decay lowered it to about one in seven before the deuterium bottleneck broke. Almost every surviving neutron ended in helium-4, fixing the primordial helium mass fraction near 0.25, with trace deuterium, helium-3, and lithium-7. The deuterium abundance measures the cosmic baryon density.\n",{"path":6809,"title":6810,"module":6811,"summary":6812},"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power","Stopping Power and the Range of Charged Particles","Radiation and Applications","A heavy charged particle loses energy in a dense sequence of small Coulomb collisions with atomic electrons, at a rate the Bethe-Bloch formula fixes from the particle's charge and speed and the medium's electron density and mean excitation energy. The rate scales as the inverse square of the speed, so most energy is deposited at the end of the track in the Bragg peak, and integrating the reciprocal rate gives a sharp range. Electrons differ: they also radiate, and above a critical energy bremsstrahlung dominates. Fast particles above the phase velocity of light in the medium emit Cherenkov radiation.\n",{"path":6814,"title":6815,"module":6811,"summary":6816},"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions","Interactions of Photons and Neutrons","Photons are removed from a beam in single events, so their intensity falls exponentially with a linear attenuation coefficient built from three processes: the photoelectric effect at low energy, Compton scattering at intermediate energy, and pair production above twice the electron rest energy, each with its own atomic-number and energy dependence. Neutrons carry no charge and interact only with nuclei, moderating by elastic scattering and being captured with a cross section that rises as one over speed away from resonances.\n",{"path":6818,"title":6819,"module":6811,"summary":6820},"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors","Radiation Detectors and Nuclear Spectroscopy","Every detector converts the energy a radiation deposits into a measurable electrical signal. Gas counters read the ionization directly, in three operating regions set by the applied voltage; scintillators convert the energy to light read out by a photomultiplier; semiconductor detectors collect electron-hole pairs and give the best energy resolution because so many carriers are made per event. The resolution is governed by the number of independent charge carriers, and the pulse-height spectrum of a gamma line shows a full-energy photopeak, a Compton continuum with its edge, and escape peaks.\n",{"path":6822,"title":6823,"module":6811,"summary":6824},"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology","Dosimetry, Radiation Biology, and Protection","Absorbed dose is the energy deposited per unit mass, measured in gray. Equal absorbed doses do unequal biological damage because densely ionizing radiation deposits its energy along short tracks: weighting the dose by a radiation factor gives the equivalent dose, and weighting by tissue sensitivity gives the effective dose, both in sieverts. Deterministic effects have a threshold and a severity that grows with dose; stochastic effects are assumed to follow a linear-no-threshold probability. Natural background dominates the dose to the population, and protection rests on time, distance, and shielding.\n",{"path":6826,"title":6827,"module":6811,"summary":6828},"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine","Applications — Dating, Analysis, and Nuclear Medicine","Charged particles lose energy continuously and stop at a well-defined range with a Bragg peak, while gamma rays are attenuated exponentially. These interactions define radiation detectors and dosimetry (gray and sievert) and drive the applications: neutron activation analysis, magnetic resonance imaging, PET, and radiometric dating with carbon-14 and long-lived rock clocks.\n",{"path":6830,"title":6831,"module":306,"summary":306},"\u002Fnuclear-physics","Nuclear Physics",{"path":6833,"title":6834,"module":5,"summary":6835},"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp","What Is Natural Language Processing?","Natural language processing is the computational treatment of human language: reading it, representing it, and generating it. We set up why the problem is hard — ambiguity at every level, from sound to intent — trace the field from ELIZA's pattern-matching through statistical methods to today's neural models, lay out the linguistic levels and task families the course covers, and fix the vocabulary of tokens, types, and corpora the rest of the notes rely on.\n",{"path":6837,"title":6838,"module":5,"summary":6839},"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization","Regular Expressions and Text Normalization","Before any model touches text, the text has to be found and cleaned. Regular expressions give an algebra for describing string patterns; tokenization, case folding, and stemming turn raw characters into the units a model counts; and byte-pair encoding builds a subword vocabulary that spells out any word. Measuring how far apart two strings are — minimum edit distance — is the next lesson.\n",{"path":6841,"title":6842,"module":5,"summary":6843},"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance","Minimum Edit Distance","Much of language processing needs to measure how similar two strings are — a speller ranking corrections, a diff tool, a coreference resolver. Minimum edit distance counts the insertions, deletions, and substitutions that turn one string into another, computed by a dynamic-programming table. We fill the table for intention to execution, backtrace to recover the alignment, and see how the same machinery generalizes to weighted edits, Viterbi, and biological sequence alignment.\n",{"path":6845,"title":6846,"module":5,"summary":6847},"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models","N-Gram Language Models","A language model assigns a probability to a sequence of words and, equivalently, predicts the next word from its history. The n-gram model makes this tractable by truncating the history to the last few words, estimates the resulting conditional probabilities by counting, and is scored by perplexity. We build the model from the chain rule, work a bigram example on a small corpus, and read perplexity as a branching factor. The next lesson covers the zero counts that break this model and the smoothing that repairs them.\n",{"path":6849,"title":6850,"module":5,"summary":6851},"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff","Smoothing and Backoff","Every finite corpus is missing good word sequences it simply never saw, so a raw n-gram model assigns them probability zero and breaks. Smoothing repairs the zeros: add-one and add-k shave mass off seen events, backoff and interpolation fall back on shorter contexts, and Kneser-Ney — worked here by hand — replaces raw frequency with how many contexts a word completes. We close on web-scale stupid backoff and the neural models that dissolve the zero problem rather than patch it.\n",{"path":6853,"title":6854,"module":6855,"summary":6856},"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment","Naive Bayes and Sentiment Classification","Text Classification","Text classification assigns a category to a document — positive or negative, spam or not, one topic among many. Naive Bayes is a generative solution: apply Bayes' rule, assume the words are conditionally independent given the class, and the winning class is the one maximizing the product of a prior and per-word likelihoods. We train it by counting with add-one smoothing, work a full sentiment example by hand, sharpen it for sentiment (binary counts, negation, lexicons), and place it among the transformer classifiers that came after.\n",{"path":6858,"title":6859,"module":6855,"summary":6860},"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers","Evaluating Classifiers","A trained classifier is only useful once we can measure how good it is. We build the confusion matrix, see why accuracy misleads on unbalanced data, and define precision, recall, and the F-measure that balances them. Multi-class tasks need macro- versus micro-averaging; reliable estimates need cross-validation. We close on statistical significance — the paired bootstrap test for whether one system's lead over another is significant.\n",{"path":6862,"title":6863,"module":6855,"summary":6864},"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression","Logistic Regression","Logistic regression is the discriminative counterpart to naive Bayes: instead of modelling how a document is generated, it learns weights that directly separate the classes. We build it from the sigmoid, derive the cross-entropy loss from maximum likelihood, learn the weights by stochastic gradient descent, regularize to curb overfitting, and generalize to many classes with the softmax. The two-class model is already a one-neuron network, so this is the bridge to neural language models.\n",{"path":6866,"title":6867,"module":6855,"summary":6868},"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons","Sentiment and Affect Lexicons","A sentiment lexicon is a list of words annotated with the affective meaning they carry — positive or negative, or scores along valence, arousal, and dominance. We fix what \"emotion\" means (basic-emotion versus dimensional models), survey the standard lexicons, and then build lexicons three ways: by human labeling with best-worst scaling, by semi-supervised induction from seed words over an embedding space, and by supervised learning from starred reviews. We close on connotation frames, which record the sentiment a verb implies about each of its arguments.\n",{"path":6870,"title":6871,"module":6872,"summary":6873},"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings","Vector Semantics and Embeddings","Semantics","Vector semantics represents a word's meaning as a point in space, derived from the company the word keeps. This first part builds the count-based side: the distributional hypothesis, co-occurrence matrices in their term-document and word-word forms, cosine as the similarity measure, and the two weightings — tf-idf and PPMI — that fix what raw counts get wrong. The result is a sparse, interpretable vector for every word, and the setup for the dense embeddings of the next lesson.\n",{"path":6875,"title":6876,"module":6872,"summary":6877},"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings","Static Word Embeddings: word2vec and After","Count-based vectors are long and sparse; embeddings are the short, dense alternative. This lesson builds them with word2vec's skip-gram and negative sampling — a classifier whose learned weights are the vectors — derives its gradient, and works one update by hand. It then reads relations off the analogy parallelogram, surveys the papers that framed the static-embedding era (word2vec, GloVe, the SGNS-as-PPMI equivalence, fastText, ELMo), and closes on the biases embeddings inherit and the single-vector-per-word ceiling that contextual models break.\n",{"path":6879,"title":6880,"module":6872,"summary":6881},"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models","Neural Networks and Neural Language Models","A neural network is a stack of units, each a weighted sum passed through a non-linearity — a single unit on its own is logistic regression. We build the network up from that unit: the activation functions that give it power, the XOR problem that forces a hidden layer, the feedforward forward pass in matrix form, and the Bengio-style feedforward neural language model that concatenates word embeddings and predicts the next word with a softmax. Training is cross-entropy minimized by gradient descent, with backpropagation supplying the gradient. Embeddings let the model share statistical strength across similar words, avoiding the sparsity that limits n-gram models.\n",{"path":6883,"title":6884,"module":3412,"summary":6885},"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling","Sequence Labeling: POS and NER","Sequence labeling assigns one tag to every token in a sentence. This first part sets up the task through its two canonical cases — part-of-speech tagging over the Penn Treebank tagset, and named-entity recognition reframed as token labeling with the BIO scheme — then builds the hidden Markov model, the classic probabilistic tagger. The HMM tags by Bayesian inference: transition and emission probabilities under two Markov assumptions, reducing tagging to an argmax over tag sequences. That argmax is exponential to enumerate, which sets up the Viterbi decoder, the CRF, and neural taggers of the next lesson.\n",{"path":6887,"title":6888,"module":3412,"summary":6889},"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers","Viterbi Decoding, CRFs, and Neural Taggers","The HMM reduced tagging to an argmax over exponentially many tag sequences. This lesson builds the decoder that makes it tractable — the Viterbi dynamic program, worked through a full numeric trace on real WSJ probabilities — then keeps that same decoder while replacing the HMM's rigid tables. The linear-chain conditional random field is a discriminative log-linear model whose global feature functions can inspect any part of the input, which is why CRFs win for NER. Finally it traces the shift to neural taggers (biLSTM-CRF, character-aware NER, ELMo), where hand-built features become learned representations while the Viterbi decoder carries over unchanged.\n",{"path":6891,"title":6892,"module":3412,"summary":6893},"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms","RNNs and LSTMs","A feedforward neural language model sees a fixed window of words and can look no further back. The recurrent neural network removes that limit: it carries a hidden state across time, so each word is read in the context of everything before it. We build the RNN from its one recurrent equation, use it as a language model, train it by backpropagation through time, and diagnose the vanishing-gradient problem that makes plain RNNs forget. The LSTM fixes the forgetting with a cell state and three gates, and the encoder-decoder stacks two RNNs into a sequence-to-sequence model — and its single-vector bottleneck is the problem attention was invented to remove.\n",{"path":6895,"title":6896,"module":3894,"summary":6897},"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention","Transformers and Self-Attention","Recurrence forced language models to read one word at a time and to squeeze every dependency through a chain of hidden states. Self-attention removes the recurrence: at every layer each position compares itself to every other and reads a weighted mixture of them, in a single parallel step. This first part builds the attention operation from the ground up — the soft lookup, queries and keys and values, the scaled dot-product, the numeric trace, the matrix form, and the causal mask — and sets up the full transformer architecture that follows.\n",{"path":6899,"title":5449,"module":3894,"summary":6900},"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture","This part takes the scaled dot-product attention of the previous lesson and assembles the full transformer architecture around it: multi-head attention so several relations can be read at once, the transformer block of residual connections and layer norm that makes deep stacks trainable, positional embeddings that restore word order, the decoder-only language model, and the encoder, decoder, and encoder-decoder shapes — closing with the 2017 paper and the pre-norm, FlashAttention, and RoPE refinements that scaled it up.\n",{"path":6902,"title":5557,"module":3894,"summary":6903},"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models","A large language model is a decoder-only transformer trained on one objective — predict the next token. This first part assembles the inference side: the language-modeling head that turns a hidden state into a distribution over the vocabulary, autoregressive generation, and the decoding strategies — greedy, beam, and sampling with temperature, top-k, and nucleus — that read text back out of that distribution. Training the distribution at web scale comes next.\n",{"path":6905,"title":6906,"module":3894,"summary":6907},"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling","Large Language Models: Pretraining and Scaling","A language model's next-token distribution is only as good as the parameters behind it. This part is where those parameters come from: self-supervised pretraining on web-scale text with teacher forcing and cross-entropy, the scaling laws that make test loss a predictable power law in parameters, data, and compute, the KV cache that keeps long-context inference affordable, and how a finished model is evaluated by perplexity and benchmarks — closing with the Kaplan, Chinchilla, GPT-3, and emergence papers behind the scaling story.\n",{"path":6909,"title":6910,"module":3894,"summary":6911},"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting","Fine-Tuning and Prompting","A pretrained transformer is a general-purpose knowledge source; a task is what you do with it. There are two ways to adapt one, and this first part covers the one that updates the weights: fine-tuning. A bidirectional encoder like BERT is pretrained by masked language modeling, then a small task head is bolted on and the whole thing is trained on labelled data for classification, sequence labeling, or span-based question answering — with parameter-efficient variants (adapters, LoRA) that touch only a sliver of the weights. Prompting, the family that leaves the weights frozen, comes next.\n",{"path":6913,"title":6914,"module":3894,"summary":6915},"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment","Prompting and Alignment","Fine-tuning adapts a model by changing its weights. The second family of adaptation changes nothing: a large frozen model performs a task from an instruction and a few examples placed in its context. This part covers prompting and in-context learning, chain-of-thought that elicits reasoning, and the two training stages — instruction tuning and RLHF — that turn a fluent base predictor into an aligned assistant, closing with the BERT, LoRA, chain-of-thought, InstructGPT, and retrieval-augmentation papers behind the modern adaptation pipeline.\n",{"path":6917,"title":6918,"module":6919,"summary":6920},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing","Constituency Parsing","Linguistic Structure","A constituency parse groups a sentence into nested phrases described by a context-free grammar. We build the CFG formalism, read the phrase structure of English off a treebank, confront the structural ambiguity that makes parsing hard, convert to Chomsky normal form, and then solve it with CKY — the dynamic-programming chart that fills a triangular table bottom-up. Probabilistic and neural span parsers, evaluation, and shallow parsing follow in the companion lesson.\n",{"path":6922,"title":6923,"module":6919,"summary":6924},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation","CKY Scoring, Evaluation, and Shallow Parsing","The CKY chart returns every parse but does not say which is correct. Disambiguation needs a score on trees. This lesson attaches probabilities to a grammar (the PCFG and lexicalization), replaces the grammar with a neural span scorer over a pretrained encoder, states the self-attentive results that made it the state of the art, evaluates parsers against a treebank with PARSEVAL, and closes with chunking and shallow parsing for tasks that need only the flat phrases.\n",{"path":6926,"title":6927,"module":6919,"summary":6928},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing","Dependency Parsing","A dependency parse throws away phrases and keeps only directed, labeled arcs from heads to their dependents, so the subject and object of a verb hang off the verb directly. We fix the formalism (rooted trees, typed Universal-Dependency relations, projectivity), then build the first parser family: transition-based arc-standard and arc-eager parsing, a greedy stack-and-buffer machine trained from an oracle. Graph-based and neural dependency parsing follow in the companion lesson.\n",{"path":6930,"title":6931,"module":6919,"summary":6932},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing","Graph-Based and Neural Dependency Parsing","Greedy transition parsing commits locally; the graph-based family scores whole trees instead. This lesson scores every candidate head-dependent edge and extracts the maximum spanning tree with Chu-Liu\u002FEdmonds, develops the biaffine neural scorer that made graph-based parsing the accuracy leader, evaluates parsers with the unlabeled and labeled attachment scores (UAS and LAS), and closes on where the two parser families sit and what they feed downstream.\n",{"path":6934,"title":6935,"module":6919,"summary":6936},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd","Word Senses and Disambiguation","A word is not an atom of meaning: \"bass\" names a fish, a voice, and an instrument, and one static embedding blurs them into a single point. This lesson pulls those senses apart. We define polysemy and the relations that organize senses — synonymy, antonymy, hyponymy, meronymy — build them into WordNet's synset graph, measure similarity along that graph, and then solve the core of word sense disambiguation: the most-frequent-sense baseline, the Lesk gloss-overlap algorithm, feature-based classifiers, and the nearest-neighbor method over BERT embeddings. WSD variants, embeddings, and evaluation follow in the companion lesson.\n",{"path":6938,"title":6939,"module":6919,"summary":6940},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction","WSD in Practice and Word Sense Induction","Beyond core word sense disambiguation lie the variants and loose ends: the sense-inventory-free Word-in-Context task, retrofitting static embeddings to a thesaurus, discovering senses without a fixed inventory (word sense induction), the gloss-aware and bi-encoder neural systems that hold the state of the art, and how WSD and its cousins are evaluated. Together they connect one-vector-per-word embeddings to sense-aware contextual representations.\n",{"path":6942,"title":6943,"module":6919,"summary":6944},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction","Semantic Roles and Information Extraction","Semantic roles answer \"who did what to whom\" for a single event, abstracting away the syntax that expresses it. We show why syntax alone is not enough, generalize over diathesis alternations with thematic roles, number a predicate's arguments with PropBank and group predicates into frames with FrameNet, tag each argument automatically with semantic role labeling, and factor predicates into primitives. Information extraction scales the idea to a corpus in the companion lesson.\n",{"path":6946,"title":6947,"module":6919,"summary":6948},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates","Relations, Events, and Templates","Semantic roles answer \"who did what\" for one predicate; information extraction scales the idea to a whole corpus. This lesson turns unstructured text into structured data: relation extraction pulls entity-relation-entity triples out of sentences by patterns, supervision, and distant supervision; event and temporal extraction place those facts on a timeline; and template filling and knowledge-base population assemble them into a database a downstream system can query.\n",{"path":6950,"title":6951,"module":6919,"summary":6952},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse","Coreference and Discourse","A text is more than a bag of sentences: entities recur under different names. Coreference resolution links every mention to the discourse entity it evokes — the linguistic background of pronouns, definite NPs, and names; mention detection; the mention-pair, mention-ranking, and entity-based architectures; a neural end-to-end span model that scores candidate antecedents; features, evaluation by the CoNLL F1, gender bias, and the neural coreference lineage. Discourse coherence follows in the companion lesson.\n",{"path":6954,"title":6955,"module":6919,"summary":6956},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure","Coherence and Discourse Structure","Coherence is what makes a run of sentences a discourse rather than an arbitrary collection. This lesson develops coherence relations and Rhetorical Structure Theory trees, discourse-structure parsing, Centering and the entity grid for entity-based coherence, and representation-learning models of local coherence, measured in part over the coreference chains recovered in the companion lesson.\n",{"path":6958,"title":6959,"module":6919,"summary":6960},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics","Logical Representations of Meaning","A meaning representation turns a sentence into a formal structure a machine can check against a world and reason over. We set the desiderata a good representation must meet, ground truth in a model, build up first-order logic for sentences with its connectives, quantifiers, and inference, and reify events with the neo-Davidsonian event variable to escape fixed predicate arity. The compositional lambda calculus, quantifier scope, and description logics follow in the companion lesson.\n",{"path":6962,"title":6963,"module":6919,"summary":6964},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics","Compositional Semantics and Description Logics","How do you compute a logical form from a sentence automatically? This lesson builds the compositional machinery: the lambda calculus that assembles a formula from a parse tree one beta-reduction at a time, the quantifier-scope ambiguity a single syntax tree leaves open, and the decidable description logics — TBox, ABox, subsumption, role restrictions — behind the Web Ontology Language, closing with how the map from string to logical form can be learned.\n",{"path":6966,"title":6967,"module":6919,"summary":6968},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing","Semantic Parsing","Turning a sentence into a structured, executable meaning, the grammar-based way. We take the logical forms defined earlier and build them compositionally: a rule-based parser that walks a syntax tree applying lambda terms, then Combinatory Categorial Grammar (CCG), which fuses syntax and semantics so one lexicalized derivation produces both — including supertagging and A* parsing. Learned and neural semantic parsers follow in the companion lesson.\n",{"path":6970,"title":6971,"module":6919,"summary":6972},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing","Learned and Neural Semantic Parsing","Hand-writing a lexicon of lambda terms does not scale, so this lesson learns the parser instead. We cover the two supervision regimes (from logical forms and from denotations), Abstract Meaning Representation as a rooted concept graph, neural sequence-to-sequence parsing with constrained decoding and copy mechanisms, executable text-to-SQL and knowledge-based question answering, the practical systems that made learned parsers accurate, and how the task is evaluated.\n",{"path":6974,"title":6975,"module":6919,"summary":6976},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction","Information Extraction","Information extraction turns free text into a database, and the first step is relation extraction: pulling entity-relation-entity triples out of sentences. We cover all five families — hand-built patterns, supervised classifiers, semi-supervised bootstrapping, distant supervision, and unsupervised Open IE — with worked bootstrapping and distant-supervision traces, then the neural and LLM systems that extended them. Times, events, and templates follow in the companion lesson.\n",{"path":6978,"title":6979,"module":6919,"summary":6980},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates","Extracting Times, Events, and Templates","Once relation extraction has produced typed triples, the information-extraction pipeline still has to place facts in time and assemble them into records. This lesson detects and normalizes temporal expressions to ISO 8601 values, detects events and orders them on a timeline with the 13 Allen relations, and fills slot-and-filler templates — flat and hierarchical — for stereotyped situations, closing the loop from text to a queryable database.\n",{"path":6982,"title":6983,"module":6919,"summary":6984},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence","Discourse Coherence","A text is more than a set of sentences. What binds a run of sentences into a discourse is coherence, and one of its sources is structured relations between clauses. This lesson develops relational coherence — RST and the PDTB models of coherence relations — and discourse-structure parsing: EDU segmentation and shift-reduce RST parsing, then PDTB relation classification. Entity-based and global coherence follow in the companion lesson.\n",{"path":6986,"title":6987,"module":6919,"summary":6988},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence","Entity-Based and Global Coherence","A text coheres not only through relations between clauses but by staying about the same entities and the same topic, and by obeying the macro-structure of its genre. This lesson develops Centering Theory and the entity grid for entity-based coherence, representation-learning models of local coherence, and global coherence — topic segmentation, narrative and argumentation structure, and scientific discourse — then the neural models that learn each.\n",{"path":6990,"title":6991,"module":6919,"summary":6992},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars","Constituency Grammars","A constituency grammar is the declarative theory of sentence structure that a parser operates on. We build the context-free grammar formalism from its four parts, show how derivations become parse trees, and work through the phrase structure of English — noun phrases, verb phrases and their subcategorization frames, agreement, coordination, and long-distance dependencies. The treebank, normal-form, and lexicalized views follow in the companion lesson.\n",{"path":6994,"title":6995,"module":6919,"summary":6996},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars","Treebanks and Lexicalized Grammars","Where does a grammar come from, and how is it prepared for a parser? We read a context-free grammar off the Penn Treebank, normalize it to Chomsky Normal Form for the CKY chart, then invert the phrase-structure emphasis with lexicalized grammars — Combinatory Categorial Grammar and its slash categories — and close with the grammar's fate in the neural era: span scoring, self-attention, and grammar induction.\n",{"path":6998,"title":6999,"module":5545,"summary":7000},"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation","Machine Translation","Machine translation is the task that built the modern toolkit: the encoder-decoder was invented for it, attention was invented to fix its fixed-context bottleneck, and both were later folded into the general transformer. We work through why translation is hard (word order, morphology, lexical and structural divergences), the sequence-to-sequence model and its attention mechanism, transformer-based NMT with cross-attention, subword tokenization with a shared vocabulary, beam-search decoding, and evaluation by BLEU and its successors chrF, BERTScore, and COMET — closing on multilingual and low-resource translation and backtranslation.\n",{"path":7002,"title":7003,"module":5545,"summary":7004},"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation","Machine Translation: Decoding, Evaluation, and Scale","Having built the transformer translation model, we now decode from it and measure the output. Beam search turns the decoder's per-step distributions into a single output string; length normalization keeps it from favoring short translations. We then score translations automatically — BLEU with its n-gram precision, clipping, and brevity penalty, worked through by hand, then its successors chrF, BERTScore, and COMET — and close on the parts of MT that scale beyond one language pair: multilingual and low-resource translation, backtranslation, gender bias, and the lineage from the Transformer to massively multilingual models like NLLB-200.\n",{"path":7006,"title":7007,"module":5545,"summary":7008},"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering","Question Answering","A question-answering system takes a natural-language question and returns an answer, not a ranked list of documents. Almost every modern system is built on one pattern: retrieve then read. We start with the information-retrieval machinery that finds candidate text — tf-idf and BM25 term weighting, a worked ranking example, the inverted index, and dense embedding retrieval — then build the retriever-reader pipeline that extracts an answer span with BERT and trace a full retrieve-and-read example end to end.\n",{"path":7010,"title":7011,"module":5545,"summary":7012},"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms","Question Answering: Knowledge Bases and Language Models","The retrieve-and-read pipeline extracts an answer span from prose, but not all knowledge lives in prose. This part covers the rest of the QA stack: entity linking (Wikification) that grounds a question's entities to a knowledge base, knowledge-based QA by semantic parsing a question into an executable query, and the modern default — closed-book QA and retrieval-augmented generation with a large language model — closing on the DPR\u002FRAG\u002Ffusion-in-decoder lineage and how factoid answers are scored by exact match and F1.\n",{"path":7014,"title":7015,"module":5545,"summary":7016},"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots","Dialogue and Chatbots","Conversation is the most natural interface to a machine and one of the hardest to build. We set up what makes human dialogue work — turns, speech acts, grounding, and the local structure of adjacency pairs — then trace the two traditions that answer it: chatbots built to chat (ELIZA's pattern-matching, corpus retrieval, and seq2seq generation with its blandness problem) and task-oriented systems built to get something done (the GUS frame-and-slot architecture and the modern NLU \u002F state-tracker \u002F policy \u002F NLG pipeline that accumulates a frame across turns).\n",{"path":7018,"title":7019,"module":5545,"summary":7020},"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants","Dialogue Systems: LLM Assistants, Evaluation, and Design","Two dialogue traditions — chatbots built to chat and task-oriented frame systems built to get something done — met in the aligned LLM assistant. Instruction tuning plus RLHF fold chit-chat and task dialogue into one model; the LaMDA \u002F InstructGPT \u002F ChatGPT lineage fills in how. The lesson then turns to evaluation (human ratings and acute-eval for chatbots, task success and slot error rate for task systems), user-centered design with Wizard-of-Oz prototyping, and the ethical stakes of building agents people talk to.\n",{"path":7022,"title":7023,"module":5545,"summary":7024},"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization","Text Summarization","Summarization compresses a document to its essential meaning, by either selecting sentences to keep (extractive) or writing new ones (abstractive). This part fixes the task and its flavors — single vs. multi-document, generic vs. query-focused, extractive vs. abstractive — then works through extractive summarization in full: scoring by position and centrality, the TextRank\u002FLexRank graph algorithm run as PageRank over a sentence-similarity graph with a worked iteration, and supervised sentence selection.\n",{"path":7026,"title":7027,"module":5545,"summary":7028},"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation","Abstractive Summarization and Evaluation","Extractive methods can only reuse the source's own sentences; to compress within a sentence or paraphrase, a summarizer has to generate. This part covers abstractive summarization: the sequence-to-sequence approach, the pointer-generator's copy switch and coverage mechanism, pretrained summarizers (BART, PEGASUS) and zero-shot LLM prompting, the long-document and factuality problems, and ROUGE evaluation with a worked example and its limits — closing on the abstractive lineage from See 2017 through faithfulness metrics.\n",{"path":7030,"title":7031,"module":7032,"summary":7033},"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics","Phonetics","Speech","Before a recognizer can read speech it has to know what speech is. This first part covers the linguistic substrate: phones and their transcription in the IPA and ARPAbet; articulatory phonetics — how the vocal tract shapes airflow into consonants and vowels; and prosody — stress, tune, and the F0 contour. The acoustic side — the waveform, its spectrum, formants, and the spectrogram — is the second part.\n",{"path":7035,"title":7036,"module":7032,"summary":7037},"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics","Acoustic Phonetics","Articulation is the cause; the acoustic signal is the effect, and the effect is all a microphone ever gets. This part follows the sound out of the mouth: waves, sampling and the Nyquist limit, F0 and the pitch track, the mel scale, the spectrum and Fourier analysis, the source-filter model that explains why each vowel carries its own formants, and the spectrogram the log-mel front end of every ASR system sits directly on top of — closing with neural TTS, wav2vec, HuBERT, and Whisper, where phonetics went in neural speech.\n",{"path":7039,"title":7040,"module":7032,"summary":7041},"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition","Automatic Speech Recognition","Speech recognition maps an acoustic waveform to a string of words, and once the waveform is turned into a sequence of log-mel spectrogram frames the problem is the same sequence-to-sequence transduction the rest of the course already solved. This first part builds the feature front end (framing, the DFT, the mel filterbank, the log), then the modern architectures: the attention-based encoder-decoder, the CTC alignment trick that collapses repeated and blank frames, and RNN-T for streaming. Training-data advances, evaluation, TTS, and the other speech tasks come next.\n",{"path":7043,"title":7044,"module":7032,"summary":7045},"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications","ASR Evaluation and Speech Applications","A recognizer turns a waveform into text; this part scores that text and puts the same machinery to other uses. It opens with the self-supervised and weakly- supervised systems (wav2vec 2.0, HuBERT, Whisper) that made ASR error rates fall. Word error rate reuses the edit distance from the first module, run over words. Text-to-speech runs the whole pipeline in reverse — text to mel spectrogram to waveform. And a family of smaller tasks — wake-word detection, speaker recognition and diarization, language identification — reuse the same log-mel front end without the decoder.\n",{"path":7047,"title":7048,"module":306,"summary":306},"\u002Fnatural-language-processing","Natural Language Processing",{"path":7050,"title":7051,"module":5,"summary":7052},"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo","From the Electron to the Particle Zoo","A timeline of the subject, from J. J. Thomson's electron in 1897 to the Higgs boson in 2012. The electron, photon, nucleus, proton, and neutron gave a tidy picture that Yukawa's meson prediction and the muon–pion confusion complicated; strange particles in cosmic rays and the accelerator-era flood of hadrons then produced a \"particle zoo\" that only the quark model organized.\n",{"path":7054,"title":7055,"module":5,"summary":7056},"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts","Basic Concepts and Particle Classification","Every particle has an antiparticle of equal mass and opposite charge, a consequence of the Dirac equation confirmed by the positron. Feynman diagrams track interactions in spacetime; the material particles sort into leptons and the composite hadrons built from quarks, with baryons carrying three quarks and mesons a quark-antiquark pair.\n",{"path":7058,"title":7059,"module":5,"summary":7060},"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers","Fundamental Interactions and Force Carriers","Four interactions account for every force in nature: strong, electromagnetic, weak, and gravitational, in decreasing strength. Each is carried by a boson — the gluon, photon, W and Z, and the graviton — with a range fixed by the carrier's mass through the Yukawa relation, and a coupling constant that itself varies with distance.\n",{"path":7062,"title":7063,"module":7064,"summary":7065},"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales","Natural Units and Scales","Units and Kinematics","Setting $\\hbar = c = 1$ collapses mass, momentum, and energy into a single unit, the GeV, and turns lengths and times into inverse energies through the conversion $\\hbar c = 197.3$ MeV·fm. This lesson fixes the natural-unit conventions used for the rest of the course, converts cross sections between barns and GeV$^{-2}$, and shows how to restore factors of $\\hbar$ and $c$ by dimensional analysis.\n",{"path":7067,"title":7068,"module":7064,"summary":7069},"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass","Four-Vectors and Invariant Mass","The energy and momentum of a particle form a four-vector whose square is the frame-independent quantity $p^2 = m^2$. This lesson develops the metric and four-vector products, the invariant mass of a multiparticle system, the center-of-momentum and laboratory frames, and the description of collinear boosts by rapidity, whose additivity replaces the awkward velocity-addition law.\n",{"path":7071,"title":7072,"module":7064,"summary":7073},"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam","Decay, Scattering, and Mandelstam Variables","Two-body decay in the rest frame fixes the daughter momenta from the three masses alone; production thresholds follow from the minimum invariant mass. This lesson works both, then introduces the Mandelstam invariants $s$, $t$, $u$ for $2\\to2$ scattering, proves the identity $s+t+u=\\sum m_i^2$, and maps the physical regions and the crossing that relates channels.\n",{"path":7075,"title":7076,"module":7064,"summary":7077},"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule","Cross Sections and the Golden Rule","The cross section measures how often a scattering happens and the decay width how fast a particle disintegrates. This lesson defines both, relates event rate to luminosity through $R=\\mathcal L\\,\\sigma$ and lifetime to width through $\\tau=\\hbar\u002F\\Gamma$, and states Fermi's golden rule with Lorentz-invariant phase space, giving the master formulas that turn an amplitude $\\mathcal M$ into a measurable rate for $1\\to2$ decay and $2\\to2$ scattering.\n",{"path":7079,"title":7080,"module":7081,"summary":7082},"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries","Conservation Laws and Symmetries","Symmetries and Conservation Laws","Which decays occur is decided by conservation laws, each tied by Noether's theorem to a symmetry of physical law. Energy, charge, baryon number, and lepton number are conserved universally; strangeness, isospin, and parity hold in the strong and electromagnetic interactions but break in the weak one, whose parity and CP violation distinguish matter from antimatter.\n",{"path":7084,"title":7085,"module":7081,"summary":7086},"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt","Discrete Symmetries — C, P, T, and CPT","Parity reflects space, charge conjugation swaps particle for antiparticle, and time reversal runs the clock backward. Each assigns multiplicative quantum numbers that act as selection rules — intrinsic parities, the photon's C = −1, the C-parity argument fixing the pion's two-photon decay. Their product CPT is a theorem of any local relativistic field theory, forcing particle and antiparticle to share mass and lifetime.\n",{"path":7088,"title":7089,"module":7081,"summary":7090},"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak","Parity Violation and the Weak Force","The tau–theta puzzle forced a choice: two particles with identical mass but opposite parity, or one particle whose decay violates parity. Lee and Yang proposed the latter, Wu's polarized cobalt-60 confirmed it, and the violation proved maximal. The charged weak force couples only to left-handed chirality — the Goldhaber experiment showed the neutrino is left-handed — which is why the mirror image of a weak decay is something nature never produces.\n",{"path":7092,"title":7093,"module":7081,"summary":7094},"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry","Isospin, SU(2), and Flavor SU(3)","The near-equal masses of the proton and neutron, and of the three pions, signal a continuous internal symmetry of the strong force: isospin, an SU(2) whose ladder operators move between the members of a multiplet. Adding strangeness enlarges it to an approximate SU(3) flavor symmetry, and the Gell-Mann–Nishijima relation Q = I3 + Y\u002F2 places every hadron on a weight diagram in the isospin–hypercharge plane — the language in which the quark model is written.\n",{"path":7096,"title":7097,"module":7098,"summary":7099},"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3","The Eightfold Way and SU(3) Flavor","The Quark Model","Gell-Mann and Ne'eman's classification of the hadrons into geometric multiplets, read as representations of an approximate flavor SU(3). The fundamental triplet (u, d, s) and its antitriplet combine into the meson nonet from 3⊗3̄ = 8⊕1 and the baryon octet and decuplet from 3⊗3⊗3, and the empty corner of the decuplet forecast the Ω⁻.\n",{"path":7101,"title":7102,"module":7098,"summary":7103},"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy","Meson Multiplets and Quantum Numbers","Mesons as quark–antiquark bound states. The spin singlet and triplet, orbital excitations, and the assignment of J^PC from the quark spins and orbital angular momentum, giving the pseudoscalar and vector nonets. The η–η' and ω–φ mixing problems, and the charmonium and bottomonium spectra read as heavy-quark positronium.\n",{"path":7105,"title":7106,"module":7098,"summary":7107},"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy","Baryon Multiplets, Spin, and the Color Puzzle","Baryons as three-quark states, with a wavefunction factored into space, spin, flavor, and color. The spin-3\u002F2 Δ⁺⁺ = uuu forces a totally symmetric state that the Pauli principle forbids, and the resolution is an antisymmetric color factor — the first evidence for color. The octet and decuplet spin content, and baryon magnetic moments as a quantitative test of the model.\n",{"path":7109,"title":7110,"module":7098,"summary":7111},"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics","Color, Confinement, and Exotic Hadrons","Color as the gauged SU(3) charge, and the requirement that every physical hadron be a color singlet — which selects q-qbar mesons and qqq baryons as the simplest states. The R-ratio of e⁺e⁻ annihilation measures three colors directly. Beyond the simplest singlets lie glueballs, tetraquarks, and pentaquarks, and the recent XYZ states, read as either compact multiquarks or loose hadronic molecules.\n",{"path":7113,"title":7114,"module":7115,"summary":7116},"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation","The Klein-Gordon Equation","Relativistic Wave Equations","Quantizing the relativistic energy relation $E^2 = p^2 + m^2$ produces the Klein-Gordon equation for a scalar field. Its plane-wave solutions come in positive- and negative-energy branches, and the conserved density it supplies is not positive-definite — the two difficulties that first drove physicists to seek a first-order equation. The static Klein-Gordon equation with a point source gives the Yukawa potential, and the free equation gives the scalar propagator that later modules attach to exchanged lines.\n",{"path":7118,"title":7119,"module":7115,"summary":7120},"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors","The Dirac Equation and Spinors","Dirac demanded a wave equation first order in time to fix the Klein-Gordon density problem. Factorizing $E^2 = p^2 + m^2$ into a linear form forces the coefficients to be anticommuting matrices — the gamma matrices of the Clifford algebra — so the wavefunction becomes a four-component spinor. The plane-wave solutions split into two particle and two antiparticle states, spin appears automatically with the correct $g = 2$ magnetic moment, and the chirality projectors that the weak interaction later needs fall straight out of the fifth gamma matrix.\n",{"path":7122,"title":7123,"module":7115,"summary":7124},"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory","Antiparticles and Hole Theory","The negative-energy solutions of the Dirac equation refuse to go away, so they must mean something. Dirac read them as a filled sea of occupied negative-energy states whose holes are positive-energy antiparticles, predicting the positron before its discovery. The picture works for fermions but not bosons, and the Feynman-Stückelberg interpretation replaces it: an antiparticle is a negative-energy solution propagating backward in time, equivalent to a positive-energy antiparticle going forward. Crossing symmetry ties incoming particles to outgoing antiparticles in a single amplitude.\n",{"path":7126,"title":7127,"module":7128,"summary":7129},"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed","Feynman Rules for QED","Quantum Electrodynamics","Quantum electrodynamics computes a process by summing diagrams, each a term in a power series in the coupling. Every diagram translates into an amplitude by a fixed dictionary: spinors and polarization vectors for external lines, propagators for internal lines, and the vertex factor $ie\\gamma^\\mu$ for each photon-fermion junction. Squaring the amplitude and feeding it to Fermi's golden rule produces a cross section or decay rate, with each extra vertex costing one power of $\\alpha$.\n",{"path":7131,"title":7132,"module":7128,"summary":7133},"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes","Tree-Level QED Processes","The Feynman rules become numbers on the reference reactions of QED. Muon pair production $e^+e^-\\to\\mu^+\\mu^-$ sets the scale with its $1+\\cos^2\\theta$ distribution and $4\\pi\\alpha^2\u002F3s$ total cross section, and its ratio to hadron production counts colors. Compton scattering gives the Klein-Nishina formula and the Thomson limit; Bhabha scattering shows $s$- and $t$-channel interference. Casimir's trick turns every spin-averaged square into a trace of gamma matrices.\n",{"path":7135,"title":7136,"module":7128,"summary":7137},"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling","Renormalization and the Running Coupling","Beyond tree level, QED loops diverge. The three primitive one-loop diagrams — vacuum polarization, electron self-energy, and vertex correction — carry ultraviolet divergences that regularization exposes as logarithms of a cutoff. Renormalization absorbs them into the measured mass, charge, and field normalization, leaving finite predictions. The surviving physical content is that the coupling runs: vacuum polarization screens charge, so $\\alpha$ grows from $1\u002F137$ at low energy to about $1\u002F128$ at the $Z$ mass.\n",{"path":7139,"title":7140,"module":7128,"summary":7141},"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2","The Anomalous Magnetic Moment","The Dirac equation predicts $g=2$; loops shift it. Schwinger's one-loop vertex correction gives the anomaly $a=(g-2)\u002F2=\\alpha\u002F2\\pi$, and the QED series continues to five loops. The electron $a_e$ agrees with theory to better than a part in a billion, the most precise confrontation of theory and experiment in physics. The muon $a_\\mu$, heavier and so more sensitive to virtual heavy states, is dominated by hadronic uncertainty and sits at the center of a long-running comparison with the Standard Model prediction.\n",{"path":7143,"title":7144,"module":7145,"summary":7146},"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak","The V–A Charged Weak Current","The Weak Interaction","Fermi modelled beta decay as a four-fermion contact interaction, but a coupling with dimensions of inverse mass squared makes cross sections grow without bound and the theory fails near 300 GeV. The cure is a heavy mediator: the $W$ boson, whose propagator collapses to Fermi's contact term at low energy and fixes $G_F\u002F\\sqrt2 = g^2\u002F8M_W^2$. Parity violation dictates the current's form — vector minus axial-vector, coupling only to left-chiral fields — and universality of the coupling ties muon decay, beta decay, and pion decay to one constant. Pion decay's helicity suppression of the electron channel is the sharpest test.\n",{"path":7148,"title":7149,"module":7145,"summary":7150},"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays","The W and Z Bosons","The contact theory hides a massive mediator. The charged $W^\\pm$ carries the current that changes flavour; the neutral $Z^0$ carries a current that does not. Both were found at CERN's proton–antiproton collider in 1983 at the masses the electroweak theory demanded. Their decay widths partition into leptonic and hadronic channels, and the $Z$ carries a decisive extra: an invisible width from decays to neutrinos that counts the number of light generations at exactly three. Beta decay and muon decay are re-read at the parton level as $W$ exchange.\n",{"path":7152,"title":7153,"module":7145,"summary":7154},"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix","Quark Mixing and the CKM Matrix","The quark eigenstates the weak force acts on are not the mass eigenstates. Cabibbo captured this with one rotation angle; the GIM mechanism added a fourth quark to cancel dangerous flavour-changing neutral currents and predicted charm before its discovery. Three generations promote the rotation to the unitary Cabibbo–Kobayashi–Maskawa matrix — three angles and one irreducible complex phase, the sole source of Standard-Model CP violation. The Wolfenstein parametrization exposes its steep hierarchy, and unitarity closes into a triangle whose area measures the phase.\n",{"path":7156,"title":7157,"module":7145,"summary":7158},"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons","CP Violation in Kaons and B Mesons","The neutral kaon is its own laboratory for CP. Weak box diagrams mix $K^0$ and its antiparticle into short- and long-lived states that should be pure CP eigenstates decaying to two and three pions. In 1964 Cronin and Fitch caught the long-lived kaon decaying to two pions — CP is violated, at the two-per-mille level of $\\epsilon$. Direct violation ($\\epsilon'$) followed, and the $B$ factories turned the CKM phase into a large, clean time-dependent asymmetry measuring $\\sin 2\\beta$. The effect is real but far too small to explain why the universe is made of matter.\n",{"path":7160,"title":7161,"module":7162,"summary":7163},"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons","Color SU(3), Gluons, and the QCD Lagrangian","Quantum Chromodynamics","Color is the exact gauged SU(3) charge of the strong force. Gauging it forces eight massless gluons in the adjoint representation and, because the gauge group is non-abelian, three- and four-gluon self-couplings absent from QED. This lesson builds the QCD Lagrangian from the covariant derivative and the non-abelian field strength, states the Feynman rules with their color factors, and computes the Casimir invariants that set the strength of quark-gluon and gluon-gluon coupling.\n",{"path":7165,"title":7166,"module":7162,"summary":7167},"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement","Asymptotic Freedom and Confinement","The QCD beta function is negative: gluon self-interaction antiscreens color, so the coupling weakens at short distance (asymptotic freedom) and strengthens at long distance (confinement). This lesson computes the one-loop beta coefficient, solves for the running of alpha_s and the emergent scale Lambda_QCD, and reads the strong-coupling regime as the linear quark-antiquark potential of a color flux tube that breaks by pair creation.\n",{"path":7169,"title":7170,"module":7162,"summary":7171},"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons","Deep Inelastic Scattering and the Parton Model","Scattering electrons hard off a proton resolves pointlike constituents. This lesson sets up the deep-inelastic kinematics, defines the structure functions F1 and F2, and reads Bjorken scaling as the signature of free spin-half partons. The Callan-Gross relation fixes the parton spin, the structure function becomes a charge-weighted sum of parton distributions, and the slow logarithmic scaling violations expose the gluon through DGLAP evolution.\n",{"path":7173,"title":7174,"module":7162,"summary":7175},"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization","Jets, Hadronization, and Testing QCD","Quarks and gluons produced in a collision fragment into collimated sprays of hadrons — jets — whose directions track the underlying partons. This lesson reads two-jet events as the quark and antiquark of electron-positron annihilation, three-jet events as direct evidence of the radiated gluon, and the hadronization step as the flux tube breaking into color singlets. Jet algorithms and event-shape variables turn the pattern into precision measurements of alpha_s.\n",{"path":7177,"title":7178,"module":7179,"summary":7180},"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1","The Electroweak Theory","Electroweak Unification and the Higgs","The electromagnetic and weak interactions are two faces of a single gauge theory built on $SU(2)_L \\times U(1)_Y$. Left-handed fermions sit in weak-isospin doublets and right-handed fermions in singlets, each carrying a hypercharge fixed by the Gell-Mann–Nishijima relation $Q = T_3 + Y\u002F2$. The four gauge fields $W^{1,2,3}$ and $B$ mix: the charged combinations $W^\\pm$ mediate the charged current, while $W^3$ and $B$ rotate through the Weinberg angle into the massless photon and the massive $Z$. The single angle $\\theta_W$ ties the couplings, the boson masses, and the neutral-current strengths together.\n",{"path":7182,"title":7183,"module":7179,"summary":7184},"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking","Spontaneous Symmetry Breaking","A symmetry of the Lagrangian need not be a symmetry of the ground state. When the lowest-energy configuration sits away from the symmetric point, the symmetry is spontaneously broken and the vacuum is one of a degenerate family. Breaking a continuous global symmetry produces one massless scalar — a Goldstone boson — for every broken generator, the flat direction along the vacuum manifold. The Mexican-hat potential and the ferromagnet below its Curie point are the working pictures.\n",{"path":7186,"title":7187,"module":7179,"summary":7188},"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism","The Higgs Mechanism","Gauging a spontaneously broken symmetry converts the would-be Goldstone bosons into the longitudinal polarizations of the gauge fields, which thereby acquire mass. Applied to $SU(2)_L \\times U(1)_Y$ with a single Higgs doublet, three of the four scalar degrees of freedom are eaten by the $W^\\pm$ and $Z$; the fourth survives as the physical Higgs boson, and the photon stays massless. Fermion masses come from Yukawa couplings to the same field, each mass proportional to its coupling times the vacuum expectation value $v \\approx 246$ GeV.\n",{"path":7190,"title":7191,"module":7179,"summary":7192},"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery","The Higgs Boson","The Higgs boson is produced at the LHC chiefly through gluon fusion, with vector-boson fusion and associated production as cleaner but rarer channels. It decays most often to $b\\bar b$ and $WW^\\ast$, but the discovery rested on two rare clean modes, $H \\to \\gamma\\gamma$ and $H \\to ZZ^\\ast \\to 4\\ell$, whose narrow invariant-mass peaks emerged over smooth backgrounds. ATLAS and CMS announced a boson near 125 GeV in 2012; its measured spin-parity $0^+$ and its couplings, which scale with particle mass, identify it as the Standard Model Higgs.\n",{"path":7194,"title":7195,"module":7179,"summary":7196},"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model","The Standard Model","The Standard Model combines the quark model, quantum chromodynamics, and the electroweak theory. SU(3) symmetry sorts the hadrons and predicted the omega; color explains why only colorless quark combinations exist; QCD gives asymptotic freedom and confinement; and spontaneous symmetry breaking through the Higgs field gives the weak bosons their mass.\n",{"path":7198,"title":7199,"module":7200,"summary":7201},"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations","Neutrino Oscillations","Neutrino Physics","Neutrinos are produced and detected in flavour states, but they propagate as mass states, and the two bases are misaligned. A flavour therefore evolves coherently into a superposition of other flavours with a probability set by the mass-squared splitting and the ratio L\u002FE. This lesson derives the two-flavour oscillation formula, applies it to the solar and atmospheric neutrino deficits, shows how the SNO neutral-current measurement resolved the solar problem, and works out the MSW resonance that amplifies mixing inside the Sun.\n",{"path":7203,"title":7204,"module":7200,"summary":7205},"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns","Neutrino Mass and the PMNS Matrix","Three-flavour mixing promotes the single oscillation angle to the unitary Pontecorvo–Maki–Nakagawa–Sakata matrix, parametrised by three angles and a Dirac CP phase. This lesson decomposes the PMNS matrix into three rotations, records the measured angles and mass-squared splittings, lays out the normal and inverted mass orderings, contrasts the large leptonic mixing with the near-diagonal CKM matrix, and collects the absolute-mass bounds from beta decay and cosmology.\n",{"path":7207,"title":7208,"module":7200,"summary":7209},"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments","Dirac, Majorana, and Neutrino Experiments","A neutral fermion can carry a mass term forbidden to every charged particle, so the neutrino may be its own antiparticle. This lesson contrasts the Dirac and Majorana mass terms and their state content, derives the seesaw mechanism that ties a tiny light mass to a heavy right-handed partner, presents neutrinoless double-beta decay as the decisive lepton-number test, surveys the reactor, accelerator, solar, and atmospheric sources on a baseline–energy map, and explains why neutrino mass is physics beyond the original Standard Model.\n",{"path":7211,"title":7212,"module":7213,"summary":7214},"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity","Accelerators, Colliders, and Luminosity","Accelerators and Detectors","Fixed-target machines waste energy in the center-of-mass motion of the whole system, so the reachable $\\sqrt s$ grows only as the square root of the beam energy, while colliders put the full beam energy into the collision. Circular electron machines are limited by synchrotron radiation scaling as $E^4\u002Fm^4R$; proton machines are limited by bending fields. Luminosity, set by beam current and focusing, converts a cross section into an event rate through $R=\\mathcal L\\,\\sigma$, and integrated luminosity sets the total event count.\n",{"path":7216,"title":7217,"module":7213,"summary":7218},"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems","Particle Detectors and Subsystems","A detector reads a collision by the energy particles deposit as they cross matter. Charged particles ionize at the Bethe-Bloch rate, radiate in the field of nuclei above a critical energy, and emit Cherenkov light above a velocity threshold; electrons and photons build electromagnetic showers over a radiation length, and hadrons build wider showers over a nuclear interaction length. The onion of tracker, electromagnetic and hadronic calorimeters, and outer muon chambers turns these processes into momentum, energy, and identity, with neutrinos inferred from missing transverse momentum.\n",{"path":7220,"title":7221,"module":7213,"summary":7222},"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made","From Collisions to Discoveries","A discovery is a peak that survives statistics. Events are reconstructed into invariant masses, a signal accumulates as a bump over a smooth background, and its significance is judged by a p-value; the field's threshold is five sigma. The expected yield is a product — luminosity times cross section times branching ratio times acceptance and efficiency — that must be balanced by a trigger and data-reduction chain against an overwhelming rate. Worked reconstructions of $Z\\to\\ell\\ell$, the $J\u002F\\psi$, and the Higgs show the same peak-over-background logic at three scales.\n",{"path":7224,"title":7225,"module":7225,"summary":7226},"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model","Beyond the Standard Model","The Standard Model leaves the four interactions ununified and the neutrinos massless, both now known to be wrong. Grand unification predicts the couplings merge near ten-to-the-sixteen GeV and the proton decays; supersymmetry pairs each particle with a superpartner; and the confirmed oscillation of neutrinos proves they carry mass, the first crack in the model.\n",{"path":7228,"title":7229,"module":7225,"summary":7230},"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories","Grand Unified Theories and Proton Decay","The Standard Model gauge group is a product of three factors with three independent couplings. A grand unified theory embeds them in a single simple group — SU(5) is the minimal choice — so that one coupling runs into all three and the fractional quark charges follow from a tracelessness condition. The same embedding places quarks and leptons in shared multiplets, mediates baryon-number violation through superheavy gauge bosons, and predicts the proton decays with a lifetime that Super-Kamiokande has pushed past ten-to-the-thirty-four years.\n",{"path":7232,"title":7233,"module":7225,"summary":7234},"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry","Supersymmetry","Supersymmetry relates fermions and bosons, pairing every Standard Model particle with a superpartner whose spin differs by one half. The pairing makes the scalar and fermion loop corrections to the Higgs mass cancel, removing the quadratic sensitivity to high scales; it sharpens the meeting of the three gauge couplings; and, when R-parity is conserved, it leaves the lightest superpartner stable and neutral, a natural dark-matter candidate. The LHC has excluded gluinos and light squarks below roughly two TeV.\n",{"path":7236,"title":7237,"module":7225,"summary":7238},"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness","The Hierarchy Problem and Naturalness","The electroweak scale sits sixteen orders of magnitude below the Planck scale, and nothing in the Standard Model protects that gap. The Higgs mass squared picks up quadratic corrections proportional to the highest scale in the theory, so keeping it at the observed value requires the bare mass and its counterterm to cancel to some thirty significant figures. Naturalness treats that cancellation as a symptom of missing physics. Supersymmetry, compositeness, and extra dimensions each remove the quadratic sensitivity, but the LHC has found none of them at the predicted scale.\n",{"path":7240,"title":7241,"module":7225,"summary":7242},"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates","Dark Matter and Particle Candidates","Flat galactic rotation curves, gravitational lensing, the cosmic microwave background, and structure formation all require about five times more matter than the visible baryons, none of it interacting electromagnetically. A stable weakly interacting particle of roughly weak-scale mass freezes out of the early universe with close to the observed abundance — the WIMP miracle — and is the leading candidate, with axions and sterile neutrinos as alternatives. Direct, indirect, and collider searches have so far only tightened the limits.\n",{"path":7244,"title":7245,"module":7225,"summary":7246},"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions","Matter-Antimatter Asymmetry and Open Questions","The universe is made of matter, with about one extra baryon for every billion photons and no antimatter regions. Sakharov identified the three conditions any dynamical explanation must meet: baryon-number violation, C and CP violation, and a departure from thermal equilibrium. The Standard Model contains all three in principle, but its CP violation falls short by some ten orders of magnitude, so baryogenesis requires new physics — leptogenesis being the leading route. A closing survey collects the open questions and the experiments aimed at them.\n",{"path":7248,"title":7249,"module":306,"summary":306},"\u002Fparticle-physics","Particle Physics",{"path":7251,"title":7252,"module":7253,"summary":7254},"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars","The Sun and the Life of Stars","Orientation","The Sun is the one star close enough to study in detail: its luminosity fixes a surface temperature of 5780 K, and the proton-proton fusion cycle in its 1.5-million-kelvin core supplies its power. Measuring other stars needs the magnitude scale, parallax, and the distance ladder; plotting luminosity against temperature builds the Hertzsprung-Russell diagram, on which a star's mass sets its lifetime and its evolutionary track off the main sequence.\n",{"path":7256,"title":7257,"module":7253,"summary":7258},"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states","Cataclysmic Events and the Final States of Stars","A star's death is set by its mass. In close binaries, matter poured across the Roche lobe onto a white dwarf produces novae and, at the Chandrasekhar limit of 1.4 solar masses, a Type Ia supernova; a massive star fusing to an iron core collapses into a Type II supernova. The remnant is a white dwarf held by electron degeneracy, a neutron star held by neutron degeneracy, or, above the neutron-star limit, a black hole inside its Schwarzschild radius.\n",{"path":7260,"title":7261,"module":7253,"summary":7262},"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology","Galaxies, Cosmology, and the Evolving Universe","Galaxies come in elliptical, spiral, and irregular forms, and their redshifts obey Hubble's law, evidence that space itself is expanding. The critical density and the density parameter decide whether the universe is open, flat, or closed; baryons, dark matter, and dark energy each contribute. The cosmic microwave background and primordial helium anchor the Big Bang, whose thermal history runs from inflation through nucleosynthesis to the atoms of today.\n",{"path":7264,"title":7265,"module":7266,"summary":7267},"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus","Magnitudes, Fluxes, and the Distance Modulus","Observational Foundations","The brightness of a star reaches us as a radiant flux that falls off as the inverse square of distance. The magnitude scale encodes flux logarithmically through the Pogson ratio; the apparent and absolute magnitudes differ by the distance modulus, which converts a measured brightness into a distance. The bolometric correction folds a filtered magnitude into a total luminosity, and the difference of two magnitudes in different bands, the color index, measures surface temperature.\n",{"path":7269,"title":7270,"module":7266,"summary":7271},"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification","Stellar Spectra and Spectral Classification","A stellar spectrum is a continuum crossed by absorption lines whose strengths are set by the temperature of the atmosphere. The Boltzmann factor governs how atoms populate excited states, and the Saha equation governs how they ionize; their product explains why each line, such as the hydrogen Balmer series, peaks in strength at a characteristic temperature. This behavior orders stars into the OBAFGKM sequence, and the luminosity classes of the MK system add a second dimension for surface gravity.\n",{"path":7273,"title":7274,"module":7266,"summary":7275},"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum","Telescopes and Detectors Across the Spectrum","A telescope collects light in proportion to its collecting area and resolves detail down to the diffraction limit set by its aperture and the observing wavelength. The atmosphere blurs and blocks large parts of the spectrum, which drives the choice between ground and space and between refractors, reflectors, and radio dishes. CCDs record the light with high quantum efficiency, and interferometry synthesizes an aperture as large as the separation of two telescopes.\n",{"path":7277,"title":7278,"module":7266,"summary":7279},"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder","The Cosmic Distance Ladder","No single method measures distances from the nearest stars to the far reaches of the universe. Instead a ladder of overlapping techniques, each calibrated by the one below it, extends the scale rung by rung: trigonometric parallax, main-sequence fitting, pulsating variables, the tip of the red-giant branch, the Tully-Fisher relation, and Type Ia supernovae. Each rung inherits the uncertainty of every rung beneath it, so the whole chain sets the accuracy of the Hubble constant.\n",{"path":7281,"title":7282,"module":7283,"summary":7284},"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity","Blackbody Radiation and Specific Intensity","Radiation and Matter","Specific intensity is the fundamental measure of a radiation field: energy per unit area, time, frequency, and solid angle. It is conserved along a ray in empty space, and its angular moments give the mean intensity, flux, and radiation pressure. In thermal equilibrium the intensity equals the Planck function, whose limits and integrals reproduce the Rayleigh-Jeans law, the Wien law, Stefan-Boltzmann, and Wien's displacement law.\n",{"path":7286,"title":7287,"module":7283,"summary":7288},"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation","Radiative Transfer and the Transfer Equation","Along a ray, matter adds intensity through emission and removes it through absorption. Measuring path length in optical depth turns this into the transfer equation, whose formal solution superposes an attenuated background on the source function integrated along the line of sight. In local thermodynamic equilibrium the source function is the Planck function, and the Eddington-Barbier relation shows that the emergent intensity samples the source function at optical depth of order unity, explaining absorption lines and solar limb darkening.\n",{"path":7290,"title":7291,"module":7283,"summary":7292},"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening","Spectral-Line Formation and Broadening","A spectral line is a bound-bound transition whose strength is set by an oscillator strength and whose shape is set by three broadening mechanisms: the Lorentzian natural and collisional wings, the Gaussian thermal Doppler core, and their Voigt convolution. Equivalent width measures the total absorption, and the curve of growth relates it to the number of absorbers through a linear, saturated, and damping regime, turning line strengths into abundances.\n",{"path":7294,"title":7295,"module":7283,"summary":7296},"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean","Opacity Sources and the Rosseland Mean","Stellar opacity comes from four processes: bound-bound line absorption, bound-free photoionization, free-free absorption, and electron scattering. The bound-free and free-free terms follow a Kramers law, electron scattering sets a frequency-flat floor, and the negative hydrogen ion dominates cool photospheres. The Rosseland mean averages these harmonically, weighting transparent frequencies because they carry the flux, and its value fixes the radiative temperature gradient and decides where a star becomes convective.\n",{"path":7298,"title":7299,"module":7300,"summary":7301},"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem","Hydrostatic Equilibrium and the Virial Theorem","Stellar Structure","A star holds itself up by balancing the inward pull of gravity against an outward pressure gradient. This balance, hydrostatic equilibrium, fixes a lower bound on the central pressure and, combined with the gravitational potential energy, yields the virial theorem. The virial relation gives a star a negative heat capacity, so that losing energy makes it hotter, and sets the Kelvin-Helmholtz timescale over which contraction alone can power the Sun.\n",{"path":7303,"title":7304,"module":7300,"summary":7305},"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure","The Equations of Stellar Structure","A static star is described by four coupled first-order differential equations in the interior mass or radius: mass conservation, hydrostatic equilibrium, energy generation, and energy transport. Closed with an equation of state, opacity, and reaction rates, and subject to central and surface boundary conditions, they determine the structure uniquely from mass and composition, the Vogt-Russell theorem. Energy moves by radiation until the temperature gradient exceeds the Schwarzschild limit, where convection takes over.\n",{"path":7307,"title":7308,"module":7300,"summary":7309},"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes","The Equation of State and Polytropes","Stellar pressure comes from gas, radiation, and, at high density, degenerate electrons. When pressure depends on density as a power law, hydrostatic equilibrium reduces to the Lane-Emden equation, whose solutions describe polytropes of index n. The relativistic degenerate case, n equal to three, gives a mass independent of radius, the Chandrasekhar mass. Eddington's standard model treats a radiation-supported star as an n equal to three polytrope and yields the quartic relating radiation fraction to mass.\n",{"path":7311,"title":7312,"module":7300,"summary":7313},"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model","The Standard Solar Model","The standard solar model integrates the structure equations for one solar mass and calibrates the composition and convection parameter to reproduce the Sun's observed luminosity, radius, and age. Helioseismology tests the model's sound speed through the Sun's acoustic p-mode oscillations, and the model predicts a neutrino flux by production channel. The measured deficit, the solar-neutrino problem, is resolved by matter-enhanced flavor oscillation, confirmed when SNO measured the total flux across all flavors.\n",{"path":7315,"title":7316,"module":7317,"summary":7318},"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak","Thermonuclear Reaction Rates and the Gamow Peak","Nuclear Astrophysics","Stellar fusion proceeds only by quantum tunneling through the Coulomb barrier, because thermal energies are a thousand times smaller than the barrier height. The reaction rate is an integral over the Maxwell–Boltzmann distribution and the tunneling probability, whose product is sharply peaked at the Gamow energy. The astrophysical S-factor isolates the nuclear physics from the barrier penetration, and the steep temperature dependence follows from the width and position of the Gamow peak.\n",{"path":7320,"title":7321,"module":7317,"summary":7322},"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno","Hydrogen Burning: pp Chains and the CNO Cycle","Four protons fuse into one helium-4 nucleus, releasing 26.7 MeV, through two competing networks. The pp chain begins with a weak-interaction bottleneck and branches three ways; the CNO cycle uses carbon, nitrogen, and oxygen as catalysts and is limited by nitrogen-14 proton capture. Their steep and gentle temperature dependences cross near 1.8e7 K, which divides pp-powered lower-main-sequence stars from CNO-powered upper-main-sequence stars.\n",{"path":7324,"title":7325,"module":7317,"summary":7326},"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process","Helium Burning and the Triple-Alpha Process","Helium fuses to carbon in two steps through the unbound beryllium-8 nucleus and a resonant excited state of carbon-12, the Hoyle state, whose existence was predicted from the observed carbon abundance. The rate scales as roughly the fortieth power of temperature, and in a degenerate low-mass core this drives the runaway helium flash. A competing alpha capture on carbon-12 sets the carbon-to-oxygen ratio and the composition of the resulting white dwarf.\n",{"path":7328,"title":7329,"module":7317,"summary":7330},"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis","Advanced Burning, the Iron Peak, and the s\u002Fr Processes","Massive stars burn carbon, neon, oxygen, and silicon in ever-shorter stages, building an onion-shell interior and reaching nuclear statistical equilibrium at the iron peak, where the binding-energy-per-nucleon curve turns over and fusion can release no more energy. Elements beyond iron form by neutron capture: the slow s-process in AGB stars tracks the valley of stability, while the rapid r-process in supernovae and neutron-star mergers builds the heaviest nuclei far from it.\n",{"path":7332,"title":7333,"module":7334,"summary":7335},"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium","The Phases of the Interstellar Medium","The Interstellar Medium","The gas between the stars separates into distinct thermal phases, from cold molecular clouds at 10 K to a diffuse million-degree corona, held near a common pressure by a balance of photoelectric heating and radiative cooling. Neutral hydrogen is traced by the 21-cm hyperfine line, dust reddens and extinguishes starlight along a characteristic wavelength law, and the ultraviolet output of hot stars carves ionized Strömgren spheres out of the surrounding gas.\n",{"path":7337,"title":7338,"module":7334,"summary":7339},"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse","Molecular Clouds and Gravitational Collapse","Stars form in cold, dense molecular clouds when self-gravity overcomes thermal and magnetic support. The virial theorem fixes the Jeans mass and length at which a clump becomes unstable, the free-fall time sets how fast it collapses, and a fragmentation cascade — cut off at a minimum mass by the onset of opacity — turns one cloud into a whole cluster, imprinting the stellar initial mass function.\n",{"path":7341,"title":7342,"module":7334,"summary":7343},"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence","Protostars and Pre-Main-Sequence Evolution","A collapsing core becomes optically thick and forms a protostar that grows by accretion through a disk while driving bipolar outflows. The newborn star appears on the birthline and contracts down the fully convective Hayashi track, then crosses the radiative Henyey track to the zero-age main sequence, powered by gravitational contraction until hydrogen ignites. Below about 0.08 solar masses degeneracy halts contraction before ignition, dividing stars from brown dwarfs.\n",{"path":7345,"title":7346,"module":7347,"summary":7348},"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure","The Main Sequence and Its Structure","Stellar Evolution","A star settles onto the zero-age main sequence when core hydrogen ignition halts contraction. Homology scaling of the structure equations reproduces the mass–luminosity relation, and the burning mode splits the sequence into an upper branch with a convective core and a lower branch with a convective envelope. The main-sequence lifetime falls steeply with mass, and the turnoff of a coeval cluster serves as a clock.\n",{"path":7350,"title":7351,"module":7347,"summary":7352},"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution","Post-Main-Sequence Evolution of Low-Mass Stars","When a low-mass star exhausts core hydrogen, burning moves to a shell, the core contracts, and the envelope swells into a red giant. A degenerate helium core ignites in a flash, settles onto the horizontal branch, and after a second contraction the star climbs the asymptotic giant branch with two burning shells. Thermal pulses and dredge-up enrich the surface, and mass loss ejects a planetary nebula, leaving a carbon–oxygen white dwarf.\n",{"path":7354,"title":7355,"module":7347,"summary":7356},"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars","The Evolution of Massive Stars","Stars above about eight solar masses burn through hydrogen, helium, carbon, neon, oxygen, and silicon in stages that grow shorter as neutrino losses accelerate contraction. The interior becomes an onion of concentric burning shells around an inert iron core. Radiation pressure near the Eddington limit drives fierce winds that can strip the hydrogen envelope entirely, and silicon burning builds an iron core toward the threshold of collapse.\n",{"path":7358,"title":7359,"module":7347,"summary":7360},"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip","Stellar Pulsation and the Instability Strip","Radial pulsation is a standing sound wave whose period scales inversely with the square root of the mean density. The kappa mechanism, an opacity valve seated in the helium partial-ionization zone, turns a star into a heat engine that pumps the oscillation. Stars in the instability strip pulsate as Cepheids, RR Lyrae, and Mira variables, and the Cepheid period–luminosity relation calibrates the distance ladder.\n",{"path":7362,"title":5778,"module":7363,"summary":7364},"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit","Stellar Death and Compact Remnants","A white dwarf is held up by the degeneracy pressure of its electrons, a quantum-mechanical stiffness that survives to zero temperature. Filling the Fermi sea sets a pressure that scales as density to the five-thirds power when the electrons are slow and only four-thirds when they are relativistic. The softer relativistic law produces the inverted mass-radius relation and a maximum mass, the Chandrasekhar limit near 1.4 solar masses, above which no cold equilibrium exists. Cooling and crystallization then turn the white-dwarf population into a clock for the Galactic disk.\n",{"path":7366,"title":7367,"module":7363,"summary":7368},"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae","Core-Collapse Supernovae","When a massive star builds an iron core past the Chandrasekhar mass, degeneracy fails and the core collapses in less than a second. Photodisintegration and electron capture remove pressure support and neutronize the matter; the collapse halts abruptly at nuclear density, launching a shock that stalls and is revived by neutrino heating. The event is a Type II or stripped-envelope Ib\u002FIc supernova, and the neutrinos from SN 1987A confirmed the picture directly.\n",{"path":7370,"title":7371,"module":7363,"summary":7372},"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia","Thermonuclear Supernovae","A carbon-oxygen white dwarf driven toward the Chandrasekhar mass ignites its degenerate fuel and unbinds itself in a thermonuclear runaway, the Type Ia supernova. The light curve is powered by the radioactive decay of nickel-56 to cobalt-56 to iron-56, and the Phillips relation between peak brightness and decline rate makes these events standardizable candles. Their near-uniform luminosity turns them into the distance indicators that revealed cosmic acceleration.\n",{"path":7374,"title":7375,"module":7363,"summary":7376},"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars","Neutron Stars and Pulsars","A neutron star is held up by neutron degeneracy and the repulsive nuclear force, with a maximum mass, the Tolman-Oppenheimer-Volkoff limit, set by an uncertain dense-matter equation of state. Its rotating magnetic dipole sweeps a beam past Earth as a pulsar, and magnetic braking traces a track across the period-period- derivative diagram. Millisecond pulsars, magnetars, glitches, and the orbital decay of the Hulse-Taylor binary follow from the same structure.\n",{"path":7378,"title":7379,"module":7363,"summary":7380},"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr","Black Holes, Schwarzschild and Kerr","Above the neutron-star mass limit gravity wins completely and the remnant is a black hole. The Schwarzschild solution gives the event horizon, gravitational redshift, and time dilation; the innermost stable circular orbit sets the efficiency of accretion. Rotating Kerr black holes drag spacetime and carry an ergosphere. Stellar-mass black holes are found in X-ray binaries, and the Event Horizon Telescope has imaged the shadow of a supermassive one.\n",{"path":7382,"title":7383,"module":7384,"summary":7385},"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer","Binary Systems and Mass Transfer","Binaries and Gravitational Waves","Most stars are born in pairs, and a binary is the only setting where a stellar mass can be measured directly. Visual, spectroscopic, and eclipsing binaries each expose a different combination of the orbital elements, and together they calibrate the mass-luminosity relation. When one star swells to fill its Roche lobe, gas streams through the inner Lagrange point onto its companion. Conservative transfer widens or shrinks the orbit depending on the mass ratio, and the sign of that response explains the Algol paradox.\n",{"path":7387,"title":7388,"module":7384,"summary":7389},"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects","Accreting Compact Objects","Gas falling onto a compact object converts gravitational binding energy into radiation with an efficiency set by the depth of the potential well, up to tens of percent of the rest mass for a neutron star or black hole. Angular momentum forces the flow into a disk, and viscous dissipation gives a temperature profile that falls as radius to the minus three-quarters, producing a multicolor blackbody spectrum. Radiation pressure caps the steady luminosity at the Eddington limit. Unstable nuclear burning of the accreted fuel powers classical novae on white dwarfs and Type I X-ray bursts on neutron stars.\n",{"path":7391,"title":7392,"module":7384,"summary":7393},"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries","Gravitational Waves from Inspiraling Binaries","A time-varying mass quadrupole radiates gravitational waves, ripples in spacetime that stretch and squeeze a ring of free masses along two polarizations. The radiated power drains a binary's orbital energy, shrinking the orbit and sweeping the wave frequency upward in a chirp whose rate fixes the chirp mass. Laser interferometers with kilometre arms measure the resulting strain of order ten to the minus twenty-one. The first detection, GW150914, matched a template for two merging black holes near thirty solar masses each.\n",{"path":7395,"title":7396,"module":7384,"summary":7397},"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts","Multimessenger Astronomy and Gamma-Ray Bursts","Gamma-ray bursts split into two populations: long bursts from the collapse of massive stars and short bursts from merging compact objects. The compactness problem forces the emitting plasma to move at ultra-relativistic speed, beaming the radiation into a narrow jet. The neutron-star merger GW170817 tied a gravitational chirp to a short gamma-ray burst, a radioactive kilonova, and a broadband afterglow, confirming that mergers forge r-process elements. A merger with a measured redshift is a standard siren that reads the Hubble constant from gravitational data alone.\n",{"path":7399,"title":7400,"module":7401,"summary":7402},"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way","The Milky Way Galaxy","Galaxies and Dark Matter","The Galaxy resolves into a thin disk of gas and young stars, a central bar and bulge, and a diffuse old halo studded with globular clusters. Star counts and the reddening of distant light map these components, while the differential rotation of the disk — encoded in the Oort constants and the flat rotation curve — measures the enclosed mass and reveals more than the stars can account for. Spiral arms are density waves, not material structures, and the innermost stellar orbits around Sgr A* weigh a four-million-solar-mass black hole.\n",{"path":7404,"title":7405,"module":7401,"summary":7406},"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification","Galaxy Morphology and Classification","Galaxies sort along the Hubble tuning fork from smooth ellipticals through lenticulars to grand-design and barred spirals, with irregulars off the end. The light of a spheroid follows the de Vaucouleurs quarter-power law while a disk fades exponentially, and the general Sérsic profile interpolates between them. Virial scaling relations — Tully–Fisher for disks, Faber–Jackson and the fundamental plane for spheroids — tie luminosity to internal motions, and the Schechter function fixes the abundance of galaxies as a function of luminosity.\n",{"path":7408,"title":7409,"module":7401,"summary":7410},"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter","Galaxy Rotation Curves and Dark Matter","The rotation curves of disk galaxies stay flat far beyond the light, demanding an extended halo whose density falls as the inverse square of radius. Decomposing the curve into disk, bulge, and halo, and fitting isothermal or NFW profiles, quantifies the missing mass. Gravitational lensing weighs the same mass without dynamics, the mass-to-light ratio climbs from stars to clusters, and the Bullet Cluster separates the collisionless dark matter from the colliding gas — evidence that MOND strains to match.\n",{"path":7412,"title":7413,"module":7401,"summary":7414},"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes","Active Galactic Nuclei","A small fraction of galaxies pour out enormous luminosity from a region smaller than the solar system. Accretion onto a supermassive black hole, limited by the Eddington balance of radiation pressure and gravity, powers the Seyferts, quasars, radio galaxies, and blazars — one engine seen from different angles through an obscuring torus. Relativistic jets produce apparent superluminal motion, reverberation mapping and stellar dynamics weigh the central mass, and the M–sigma relation ties that mass to the host bulge.\n",{"path":7416,"title":7417,"module":7401,"summary":7418},"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure","Galaxy Clusters and Large-Scale Structure","Galaxies gather into groups and rich clusters bound by a common dark halo and filled with hot X-ray gas. Three independent probes — the virial theorem, the hydrostatic X-ray temperature, and gravitational lensing — agree on a mass that dwarfs the stars. On the largest scales galaxies trace a cosmic web of filaments, walls, and voids, quantified by the two-point correlation function, whose baryon acoustic oscillation bump provides a standard ruler for cosmology.\n",{"path":7420,"title":7421,"module":7422,"summary":7423},"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law","The Expanding Universe and Hubble's Law","Cosmic Expansion and Dynamics","The universe is homogeneous and isotropic on large scales, so its expansion is captured by a single function of time, the scale factor. Comoving coordinates stay fixed while proper distances grow in proportion to the scale factor, producing Hubble's law and a cosmological redshift that measures stretched space rather than a Doppler shift. A Newtonian energy argument reproduces the dynamics, and the same finite, expanding cosmos resolves Olbers' paradox.\n",{"path":7425,"title":7426,"module":7422,"summary":7427},"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift","The FRW Metric and Cosmological Redshift","The geometry of a homogeneous, isotropic universe is fixed by symmetry to the Robertson-Walker metric, with the entire freedom reduced to a scale factor and a single curvature constant selecting an open, flat, or closed space. From the metric the null geodesic of light gives comoving distance, the exact cosmological redshift, and the distinction between the proper distance we cannot measure and the redshift we can.\n",{"path":7429,"title":4496,"module":7422,"summary":7430},"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics","The scale factor obeys the Friedmann equation, the acceleration equation, and the fluid equation, only two of which are independent. An equation of state fixes how each component behaves under expansion, so radiation dilutes as the inverse fourth power of the scale factor, matter as the inverse cube, and vacuum energy not at all. The critical density defines the density parameters, and the deceleration parameter encodes whether gravity or dark energy is winning.\n",{"path":7432,"title":7433,"module":7422,"summary":7434},"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances","Cosmological Models and Distances","Integrating the Friedmann equation for particular mixtures gives the benchmark models, from the matter-only Einstein-de Sitter universe to the concordance Lambda-CDM, each with its own scale-factor history and age. Because the redshift is the only direct observable, several distance measures diverge at high redshift, and the angular-diameter distance even turns over so that the most distant objects look larger. The horizon and lookback time set what is causally and observationally reachable.\n",{"path":7436,"title":7437,"module":7422,"summary":7438},"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe","Dark Energy and the Accelerating Universe","In 1998 two teams found that distant Type Ia supernovae are fainter than a decelerating universe predicts, revealing that the expansion is accelerating and that a component with negative pressure dominates the energy budget. The simplest candidate is the cosmological constant, or vacuum energy, with an equation of state near minus one. It works observationally but leaves two deep puzzles: why the vacuum energy is a hundred and twenty orders of magnitude smaller than expected, and why it is comparable to the matter density just now.\n",{"path":7440,"title":7441,"module":7442,"summary":7443},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe","The Thermal History of the Universe","The Hot Big Bang","Running the expansion backward compresses and heats the universe, so its past is a sequence of thermal epochs set by temperature. Temperature scales as the inverse scale factor; species stay in equilibrium while their interaction rate exceeds the expansion rate and freeze out when it drops below. The effective degrees of freedom count the relativistic species and step down through mass thresholds, and neutrino decoupling just before electron-positron annihilation leaves a relic neutrino background slightly cooler than the photons.\n",{"path":7445,"title":7446,"module":7442,"summary":7447},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis","Big Bang Nucleosynthesis","In the first three minutes the weak interactions freeze out the neutron-to-proton ratio, and once deuterium survives photodissociation a fast reaction network converts nearly all free neutrons into helium-4. The primordial abundances of deuterium, helium-3, helium-4, and lithium-7 depend on a single free parameter, the baryon-to-photon ratio, so measuring them fixes the baryon density. The predictions match observation across nine decades of abundance, with a persistent discrepancy in lithium-7.\n",{"path":7449,"title":7450,"module":7442,"summary":7451},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background","Recombination and the Cosmic Microwave Background","As the universe cooled through a few thousand kelvin the free electrons bound to protons, and the Saha equation tracks the falling ionization fraction. Once the plasma neutralized, photons stopped scattering and streamed freely from a spherical surface of last scattering at redshift about 1100. Those photons are the cosmic microwave background, an almost perfect blackbody at 2.725 kelvin with a dipole from our motion through it.\n",{"path":7453,"title":7454,"module":7442,"summary":7455},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters","CMB Anisotropies and Cosmological Parameters","The cosmic microwave background carries temperature fluctuations at the ten-parts-per-million level, imprinted by sound waves in the photon-baryon plasma before recombination. Decomposed into spherical harmonics, the fluctuations form an angular power spectrum whose acoustic peaks encode the geometry and contents of the universe: the first peak fixes spatial flatness, the odd-even peak ratio the baryon density, and the third peak the dark-matter density. Polarization adds an independent channel, and the Planck measurements pin the concordance parameters.\n",{"path":7457,"title":7458,"module":7442,"summary":7459},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation","Cosmic Inflation","The hot Big Bang leaves three initial-condition puzzles unexplained: why causally disconnected patches share a temperature, why the geometry is so nearly flat, and why no magnetic monopoles are seen. A brief epoch of accelerated expansion driven by a slowly rolling scalar field solves all three by stretching a small causal patch across the observable universe. The same accelerated expansion freezes quantum fluctuations into a near-scale-invariant spectrum of density perturbations, seeding all later structure.\n",{"path":7461,"title":7462,"module":7442,"summary":7463},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations","Structure Formation and the Growth of Perturbations","The near-uniform early universe grew its galaxies and clusters by gravitational instability acting on the tiny inflationary perturbations. In an expanding background the growth is slowed to a power law rather than the exponential of a static medium; perturbations stall during radiation domination and grow with the scale factor once matter dominates. The transfer function turns the primordial spectrum into the processed matter power spectrum, and cold dark matter builds structure from the bottom up.\n",{"path":7465,"title":7466,"module":7442,"summary":7467},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions","Dark Matter, Dark Energy, and Open Questions","Five independent lines of evidence converge on a universe whose energy budget is dominated by dark energy and dark matter, with ordinary baryons a small remainder. The candidate particles for dark matter range from WIMPs to axions to sterile neutrinos, each with its own detection strategy. The concordance model fits the data with six parameters but leaves the nature of dark energy, the Hubble tension, small-scale structure, and the matter-antimatter asymmetry unexplained.\n",{"path":7469,"title":7470,"module":306,"summary":306},"\u002Fastrophysics-cosmology","Astrophysics & Cosmology",{"path":7472,"title":7473,"module":306,"summary":306},"\u002Fcolophon","Colophon",{"path":1821,"title":7475,"module":306,"summary":306},"Study Notes","\u003Csvg style=\"width:100%;max-width:225.371px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 169.028 145.819\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg transform=\"translate(-24.533 3.056)\">\u003Cpath d=\"M-35.116-61.999Q-35.804-61.999-36.295-62.504Q-36.786-63.009-37.023-63.759Q-37.259-64.508-37.259-65.173Q-37.259-65.832-37.023-66.574Q-36.786-67.316-36.295-67.824Q-35.804-68.332-35.116-68.332Q-34.589-68.332-34.176-68.029Q-33.763-67.726-33.502-67.243Q-33.241-66.759-33.109-66.217Q-32.977-65.675-32.977-65.173Q-32.977-64.665-33.109-64.123Q-33.241-63.581-33.505-63.092Q-33.768-62.604-34.178-62.301Q-34.589-61.999-35.116-61.999M-35.116-62.653Q-34.730-62.653-34.459-62.929Q-34.188-63.205-34.025-63.620Q-33.861-64.035-33.785-64.482Q-33.710-64.928-33.710-65.290Q-33.710-65.612-33.788-66.029Q-33.866-66.447-34.030-66.818Q-34.193-67.189-34.469-67.436Q-34.745-67.682-35.116-67.682Q-35.487-67.682-35.756-67.443Q-36.024-67.204-36.193-66.830Q-36.361-66.457-36.444-66.034Q-36.527-65.612-36.527-65.290Q-36.527-64.811-36.388-64.191Q-36.249-63.571-35.926-63.112Q-35.604-62.653-35.116-62.653M-30.458-62.111L-31.918-62.111Q-32.172-62.140-32.201-62.389L-32.201-62.482Q-32.172-62.731-31.918-62.760L-31.390-62.760L-30.189-64.333L-31.317-65.773L-31.859-65.773Q-32.108-65.802-32.137-66.051L-32.137-66.139Q-32.123-66.261-32.054-66.335Q-31.986-66.408-31.859-66.423L-30.399-66.423Q-30.165-66.393-30.121-66.139L-30.121-66.051Q-30.165-65.802-30.399-65.773L-30.590-65.773L-29.901-64.840L-29.217-65.773L-29.427-65.773Q-29.667-65.802-29.711-66.051L-29.711-66.139Q-29.691-66.257-29.615-66.332Q-29.540-66.408-29.427-66.423L-27.967-66.423Q-27.850-66.408-27.777-66.335Q-27.704-66.261-27.689-66.139L-27.689-66.051Q-27.718-65.802-27.967-65.773L-28.500-65.773L-29.598-64.333L-28.368-62.760L-27.831-62.760Q-27.709-62.746-27.635-62.677Q-27.562-62.609-27.548-62.482L-27.548-62.389Q-27.562-62.272-27.635-62.199Q-27.709-62.126-27.831-62.111L-29.291-62.111Q-29.520-62.140-29.569-62.389L-29.569-62.482Q-29.525-62.731-29.291-62.760L-29.071-62.760L-29.901-63.923L-30.687-62.760L-30.458-62.760Q-30.223-62.731-30.179-62.482L-30.179-62.389Q-30.223-62.140-30.458-62.111M-24.618-61.999Q-25.306-61.999-25.797-62.504Q-26.288-63.009-26.525-63.759Q-26.761-64.508-26.761-65.173Q-26.761-65.832-26.525-66.574Q-26.288-67.316-25.797-67.824Q-25.306-68.332-24.618-68.332Q-24.091-68.332-23.678-68.029Q-23.265-67.726-23.004-67.243Q-22.743-66.759-22.611-66.217Q-22.479-65.675-22.479-65.173Q-22.479-64.665-22.611-64.123Q-22.743-63.581-23.007-63.092Q-23.270-62.604-23.680-62.301Q-24.091-61.999-24.618-61.999M-24.618-62.653Q-24.232-62.653-23.961-62.929Q-23.690-63.205-23.527-63.620Q-23.363-64.035-23.287-64.482Q-23.212-64.928-23.212-65.290Q-23.212-65.612-23.290-66.029Q-23.368-66.447-23.531-66.818Q-23.695-67.189-23.971-67.436Q-24.247-67.682-24.618-67.682Q-24.989-67.682-25.258-67.443Q-25.526-67.204-25.695-66.830Q-25.863-66.457-25.946-66.034Q-26.029-65.612-26.029-65.290Q-26.029-64.811-25.890-64.191Q-25.751-63.571-25.428-63.112Q-25.106-62.653-24.618-62.653M-19.369-61.999Q-20.057-61.999-20.548-62.504Q-21.039-63.009-21.276-63.759Q-21.512-64.508-21.512-65.173Q-21.512-65.832-21.276-66.574Q-21.039-67.316-20.548-67.824Q-20.057-68.332-19.369-68.332Q-18.842-68.332-18.429-68.029Q-18.016-67.726-17.755-67.243Q-17.494-66.759-17.362-66.217Q-17.230-65.675-17.230-65.173Q-17.230-64.665-17.362-64.123Q-17.494-63.581-17.758-63.092Q-18.021-62.604-18.431-62.301Q-18.842-61.999-19.369-61.999M-19.369-62.653Q-18.983-62.653-18.712-62.929Q-18.441-63.205-18.278-63.620Q-18.114-64.035-18.038-64.482Q-17.963-64.928-17.963-65.290Q-17.963-65.612-18.041-66.029Q-18.119-66.447-18.282-66.818Q-18.446-67.189-18.722-67.436Q-18.998-67.682-19.369-67.682Q-19.740-67.682-20.009-67.443Q-20.277-67.204-20.446-66.830Q-20.614-66.457-20.697-66.034Q-20.780-65.612-20.780-65.290Q-20.780-64.811-20.641-64.191Q-20.502-63.571-20.179-63.112Q-19.857-62.653-19.369-62.653\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt10\" font-size=\"10\">\u003Cg transform=\"translate(14.914 2.361)\">\u003Cpath d=\"M-36.976-62.389L-36.976-62.482Q-36.947-62.731-36.698-62.760L-35.360-62.760L-35.360-65.773L-36.620-65.773Q-36.869-65.807-36.898-66.051L-36.898-66.139Q-36.884-66.257-36.808-66.332Q-36.732-66.408-36.620-66.423L-34.906-66.423Q-34.789-66.408-34.716-66.335Q-34.642-66.261-34.628-66.139L-34.628-62.760L-33.446-62.760Q-33.212-62.731-33.168-62.482L-33.168-62.389Q-33.212-62.140-33.446-62.111L-36.698-62.111Q-36.947-62.140-36.976-62.389M-35.668-67.712Q-35.668-67.926-35.516-68.078Q-35.365-68.229-35.150-68.229Q-34.930-68.229-34.779-68.078Q-34.628-67.926-34.628-67.712Q-34.628-67.502-34.784-67.345Q-34.940-67.189-35.150-67.189Q-35.355-67.189-35.511-67.345Q-35.668-67.502-35.668-67.712M-29.008-62.111L-31.908-62.111Q-32.152-62.140-32.191-62.389L-32.191-62.482Q-32.152-62.731-31.908-62.760L-30.980-62.760L-30.980-65.773L-31.908-65.773Q-32.152-65.802-32.191-66.051L-32.191-66.139Q-32.152-66.393-31.908-66.423L-30.531-66.423Q-30.409-66.408-30.336-66.335Q-30.262-66.261-30.248-66.139L-30.248-65.700Q-30.048-65.934-29.777-66.115Q-29.506-66.296-29.188-66.388Q-28.871-66.481-28.558-66.481Q-28.192-66.481-27.906-66.330Q-27.621-66.178-27.621-65.851Q-27.621-65.661-27.743-65.527Q-27.865-65.392-28.060-65.392Q-28.241-65.392-28.370-65.517Q-28.500-65.641-28.500-65.832L-28.568-65.832Q-29.047-65.832-29.432-65.573Q-29.818-65.314-30.033-64.887Q-30.248-64.460-30.248-63.991L-30.248-62.760L-29.008-62.760Q-28.759-62.726-28.729-62.482L-28.729-62.389Q-28.759-62.145-29.008-62.111M-27.299-62.389L-27.299-62.482Q-27.255-62.731-27.020-62.760L-26.732-62.760L-26.732-65.773L-27.020-65.773Q-27.255-65.802-27.299-66.051L-27.299-66.139Q-27.255-66.393-27.020-66.423L-26.410-66.423Q-26.283-66.408-26.207-66.322Q-26.132-66.237-26.132-66.120Q-25.731-66.481-25.218-66.481Q-24.979-66.481-24.774-66.340Q-24.569-66.198-24.462-65.959Q-24.032-66.481-23.412-66.481Q-22.509-66.481-22.509-65.031L-22.509-62.760L-22.220-62.760Q-21.986-62.731-21.942-62.482L-21.942-62.389Q-21.991-62.140-22.220-62.111L-23.290-62.111Q-23.539-62.145-23.568-62.389L-23.568-62.482Q-23.539-62.726-23.290-62.760L-23.109-62.760L-23.109-64.992Q-23.109-65.832-23.470-65.832Q-23.763-65.832-23.954-65.629Q-24.144-65.426-24.232-65.133Q-24.320-64.840-24.320-64.552L-24.320-62.760L-24.032-62.760Q-23.793-62.731-23.749-62.482L-23.749-62.389Q-23.798-62.140-24.032-62.111L-25.101-62.111Q-25.350-62.145-25.380-62.389L-25.380-62.482Q-25.350-62.726-25.101-62.760L-24.921-62.760L-24.921-64.992Q-24.921-65.832-25.282-65.832Q-25.575-65.832-25.765-65.629Q-25.956-65.426-26.044-65.133Q-26.132-64.840-26.132-64.552L-26.132-62.760L-25.839-62.760Q-25.604-62.731-25.560-62.482L-25.560-62.389Q-25.604-62.140-25.839-62.111L-27.020-62.111Q-27.250-62.140-27.299-62.389M-19.369-62.052Q-19.950-62.052-20.424-62.358Q-20.897-62.663-21.168-63.180Q-21.439-63.698-21.439-64.269Q-21.439-64.845-21.173-65.361Q-20.907-65.876-20.428-66.193Q-19.950-66.510-19.369-66.510Q-18.925-66.510-18.539-66.325Q-18.153-66.139-17.882-65.832Q-17.611-65.524-17.455-65.109Q-17.299-64.694-17.299-64.269Q-17.299-63.698-17.570-63.183Q-17.841-62.668-18.317-62.360Q-18.793-62.052-19.369-62.052M-19.369-62.702Q-18.768-62.702-18.400-63.217Q-18.031-63.732-18.031-64.352Q-18.031-64.733-18.202-65.080Q-18.373-65.426-18.675-65.644Q-18.978-65.861-19.369-65.861Q-19.755-65.861-20.060-65.646Q-20.365-65.431-20.538-65.082Q-20.712-64.733-20.712-64.352Q-20.712-63.732-20.341-63.217Q-19.969-62.702-19.369-62.702M-14.662-62.370L-15.790-65.773L-16.224-65.773Q-16.473-65.807-16.503-66.051L-16.503-66.139Q-16.488-66.257-16.412-66.332Q-16.337-66.408-16.224-66.423L-14.759-66.423Q-14.647-66.408-14.571-66.332Q-14.496-66.257-14.481-66.139L-14.481-66.051Q-14.510-65.807-14.759-65.773L-15.160-65.773L-14.120-62.663L-13.080-65.773L-13.480-65.773Q-13.734-65.807-13.763-66.051L-13.763-66.139Q-13.734-66.388-13.480-66.423L-12.020-66.423Q-11.908-66.408-11.832-66.332Q-11.757-66.257-11.742-66.139L-11.742-66.051Q-11.771-65.807-12.020-65.773L-12.450-65.773L-13.583-62.370Q-13.627-62.233-13.741-62.153Q-13.856-62.072-14.003-62.072L-14.242-62.072Q-14.388-62.072-14.503-62.153Q-14.618-62.233-14.662-62.370M-8.612-60.173L-8.612-60.260Q-8.583-60.509-8.334-60.539L-7.723-60.539L-7.723-62.619Q-8.002-62.350-8.346-62.201Q-8.690-62.052-9.071-62.052Q-9.496-62.052-9.877-62.238Q-10.258-62.423-10.529-62.729Q-10.800-63.034-10.956-63.444Q-11.112-63.854-11.112-64.269Q-11.112-64.860-10.826-65.365Q-10.541-65.871-10.045-66.176Q-9.550-66.481-8.954-66.481Q-8.612-66.481-8.292-66.344Q-7.972-66.208-7.723-65.959L-7.723-66.203Q-7.709-66.320-7.635-66.393Q-7.562-66.466-7.445-66.481L-7.274-66.481Q-7.152-66.466-7.079-66.393Q-7.006-66.320-6.991-66.203L-6.991-60.539L-6.381-60.539Q-6.132-60.509-6.102-60.260L-6.102-60.173Q-6.132-59.919-6.381-59.889L-8.334-59.889Q-8.583-59.919-8.612-60.173M-9.012-62.702Q-8.695-62.702-8.424-62.863Q-8.153-63.024-7.977-63.290Q-7.801-63.556-7.723-63.869L-7.723-64.611Q-7.777-64.938-7.933-65.212Q-8.090-65.485-8.336-65.658Q-8.583-65.832-8.905-65.832Q-9.315-65.832-9.652-65.614Q-9.989-65.397-10.187-65.033Q-10.384-64.670-10.384-64.259Q-10.384-63.874-10.211-63.515Q-10.038-63.156-9.720-62.929Q-9.403-62.702-9.012-62.702\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(14.914 2.361)\">\u003Cpath d=\"M1.312-61.559L1.312-62.072Q0.560-62.150 0.076-62.611Q-0.407-63.073-0.407-63.810Q-0.407-64.015-0.275-64.159Q-0.143-64.303 0.062-64.303Q0.247-64.303 0.384-64.162Q0.521-64.020 0.521-63.830Q0.521-63.620 0.360-63.483Q0.462-63.156 0.714-62.965Q0.965-62.775 1.312-62.721L1.312-64.982Q0.570-65.143 0.081-65.544Q-0.407-65.944-0.407-66.623Q-0.407-67.067-0.160-67.421Q0.086-67.775 0.477-67.987Q0.867-68.200 1.312-68.263L1.312-68.771Q1.341-69.020 1.590-69.049L1.683-69.049Q1.932-69.020 1.961-68.771L1.961-68.273Q2.230-68.273 2.564-68.144Q2.899-68.014 3.133-67.829Q3.382-67.629 3.526-67.304Q3.670-66.979 3.670-66.642Q3.670-66.506 3.609-66.396Q3.548-66.286 3.446-66.222Q3.343-66.159 3.211-66.159Q3.021-66.159 2.882-66.293Q2.742-66.427 2.742-66.623Q2.742-66.838 2.894-66.969Q2.694-67.502 1.961-67.609L1.961-65.592Q2.440-65.490 2.825-65.263Q3.211-65.036 3.441-64.674Q3.670-64.313 3.670-63.830Q3.670-63.151 3.165-62.660Q2.659-62.170 1.961-62.072L1.961-61.559Q1.932-61.310 1.683-61.281L1.590-61.281Q1.473-61.296 1.400-61.369Q1.326-61.442 1.312-61.559M1.961-64.840L1.961-62.731Q2.230-62.785 2.467-62.929Q2.703-63.073 2.847-63.300Q2.991-63.527 2.991-63.791Q2.991-64.196 2.686-64.479Q2.381-64.762 1.961-64.840M0.272-66.662Q0.272-66.286 0.577-66.056Q0.882-65.827 1.312-65.729L1.312-67.599Q0.911-67.531 0.592-67.282Q0.272-67.033 0.272-66.662M5.521-63.171Q5.697-62.892 6.092-62.773Q6.488-62.653 6.912-62.653Q7.249-62.653 7.581-62.804Q7.913-62.956 8.123-63.236Q8.333-63.517 8.333-63.869Q8.333-64.230 8.123-64.508Q7.913-64.787 7.584-64.933Q7.254-65.080 6.903-65.080L6.283-65.080Q6.038-65.109 6.009-65.353L6.009-65.461Q6.038-65.700 6.283-65.729L6.961-65.783Q7.244-65.783 7.493-65.946Q7.742-66.110 7.891-66.374Q8.040-66.637 8.040-66.921Q8.040-67.170 7.860-67.340Q7.679-67.511 7.418-67.597Q7.157-67.682 6.912-67.682Q6.136-67.682 5.843-67.409Q5.843-67.409 5.860-67.384Q5.877-67.360 5.882-67.350Q5.902-67.311 5.902-67.272Q5.921-67.233 5.921-67.140Q5.921-66.955 5.784-66.818Q5.648-66.681 5.462-66.681Q5.252-66.681 5.123-66.823Q4.993-66.965 4.993-67.160Q4.993-67.814 5.584-68.073Q6.175-68.332 6.922-68.332Q7.342-68.332 7.774-68.171Q8.206-68.009 8.490-67.687Q8.773-67.365 8.773-66.921Q8.773-66.476 8.553-66.088Q8.333-65.700 7.943-65.441Q8.426-65.231 8.743-64.806Q9.061-64.382 9.061-63.869Q9.061-63.327 8.753-62.897Q8.446-62.467 7.948-62.233Q7.450-61.999 6.922-61.999Q6.092-61.999 5.396-62.353Q4.700-62.707 4.700-63.459Q4.700-63.659 4.832-63.800Q4.964-63.942 5.169-63.942Q5.360-63.942 5.496-63.805Q5.633-63.669 5.633-63.483Q5.633-63.322 5.521-63.171M11.688-60.719L11.629-60.719Q11.507-60.719 11.405-60.827Q11.302-60.934 11.302-61.061Q11.302-61.271 11.512-61.340Q11.805-61.413 12.022-61.625Q12.240-61.838 12.308-62.131L12.249-62.121L12.220-62.111L12.142-62.111Q11.868-62.111 11.680-62.299Q11.492-62.487 11.492-62.760Q11.492-63.029 11.683-63.215Q11.873-63.400 12.142-63.400Q12.391-63.400 12.589-63.254Q12.786-63.107 12.889-62.878Q12.991-62.648 12.991-62.389Q12.991-61.794 12.633-61.347Q12.274-60.900 11.688-60.719M15.628-61.632Q15.628-61.711 15.658-61.769L18.460-68.849Q18.573-69.049 18.778-69.049Q18.924-69.049 19.027-68.947Q19.129-68.844 19.129-68.703Q19.129-68.620 19.100-68.561L16.297-61.481Q16.185-61.281 15.980-61.281Q15.843-61.281 15.736-61.388Q15.628-61.496 15.628-61.632M18.778-61.281Q18.348-61.281 18.128-61.708Q17.908-62.135 17.908-62.609Q17.908-63.088 18.126-63.515Q18.343-63.942 18.778-63.942Q19.212-63.942 19.429-63.515Q19.647-63.088 19.647-62.609Q19.647-62.135 19.427-61.708Q19.207-61.281 18.778-61.281M18.768-61.930Q18.861-61.930 18.924-62.060Q18.988-62.189 19.019-62.350Q19.051-62.511 19.051-62.609Q19.051-62.780 18.980-63.022Q18.909-63.263 18.787-63.293Q18.656-63.293 18.582-63.046Q18.509-62.799 18.509-62.609Q18.509-62.443 18.575-62.204Q18.641-61.965 18.768-61.930M15.980-66.379Q15.687-66.379 15.487-66.593Q15.286-66.808 15.199-67.116Q15.111-67.423 15.111-67.721Q15.111-68.009 15.199-68.315Q15.286-68.620 15.487-68.835Q15.687-69.049 15.980-69.049Q16.273-69.049 16.473-68.835Q16.673-68.620 16.761-68.315Q16.849-68.009 16.849-67.721Q16.849-67.423 16.761-67.116Q16.673-66.808 16.473-66.593Q16.273-66.379 15.980-66.379M15.970-67.033L15.999-67.033Q16.107-67.043 16.178-67.294Q16.248-67.546 16.248-67.721Q16.248-67.917 16.182-68.141Q16.116-68.366 15.990-68.400L15.980-68.400L15.970-68.400Q15.848-68.385 15.780-68.139Q15.711-67.892 15.711-67.721Q15.711-67.546 15.777-67.306Q15.843-67.067 15.970-67.033M23.490-62.111L20.589-62.111Q20.345-62.140 20.306-62.389L20.306-62.482Q20.345-62.731 20.589-62.760L21.517-62.760L21.517-65.773L20.589-65.773Q20.345-65.802 20.306-66.051L20.306-66.139Q20.345-66.393 20.589-66.423L21.966-66.423Q22.088-66.408 22.161-66.335Q22.235-66.261 22.249-66.139L22.249-65.700Q22.450-65.934 22.720-66.115Q22.991-66.296 23.309-66.388Q23.626-66.481 23.939-66.481Q24.305-66.481 24.591-66.330Q24.876-66.178 24.876-65.851Q24.876-65.661 24.754-65.527Q24.632-65.392 24.437-65.392Q24.256-65.392 24.127-65.517Q23.997-65.641 23.997-65.832L23.929-65.832Q23.450-65.832 23.065-65.573Q22.679-65.314 22.464-64.887Q22.249-64.460 22.249-63.991L22.249-62.760L23.490-62.760Q23.739-62.726 23.768-62.482L23.768-62.389Q23.739-62.145 23.490-62.111M27.557-62.052Q27.122-62.052 26.763-62.238Q26.405-62.423 26.143-62.741Q25.882-63.058 25.741-63.456Q25.599-63.854 25.599-64.269Q25.599-64.694 25.750-65.092Q25.902-65.490 26.187-65.807Q26.473-66.125 26.851-66.303Q27.230-66.481 27.659-66.481Q28.309-66.481 28.817-66.051L28.817-67.570L28.245-67.570Q27.996-67.599 27.967-67.853L27.967-67.941Q27.996-68.190 28.245-68.219L29.266-68.219Q29.510-68.190 29.549-67.941L29.549-62.760L30.116-62.760Q30.238-62.746 30.311-62.677Q30.384-62.609 30.399-62.482L30.399-62.389Q30.384-62.272 30.311-62.199Q30.238-62.126 30.116-62.111L29.095-62.111Q28.978-62.126 28.905-62.199Q28.831-62.272 28.817-62.389L28.817-62.590Q28.255-62.052 27.557-62.052M27.616-62.702Q28.070-62.702 28.392-63.058Q28.714-63.415 28.817-63.893L28.817-64.943Q28.709-65.319 28.407-65.575Q28.104-65.832 27.718-65.832Q27.318-65.832 26.998-65.607Q26.678-65.382 26.502-65.014Q26.326-64.645 26.326-64.259Q26.326-63.898 26.485-63.529Q26.644-63.161 26.937-62.931Q27.230-62.702 27.616-62.702M31.268-62.389L31.268-62.482Q31.297-62.731 31.546-62.760L32.884-62.760L32.884-65.773L31.624-65.773Q31.375-65.807 31.346-66.051L31.346-66.139Q31.361-66.257 31.436-66.332Q31.512-66.408 31.624-66.423L33.338-66.423Q33.455-66.408 33.529-66.335Q33.602-66.261 33.616-66.139L33.616-62.760L34.798-62.760Q35.033-62.731 35.076-62.482L35.076-62.389Q35.033-62.140 34.798-62.111L31.546-62.111Q31.297-62.140 31.268-62.389M32.576-67.712Q32.576-67.926 32.728-68.078Q32.879-68.229 33.094-68.229Q33.314-68.229 33.465-68.078Q33.616-67.926 33.616-67.712Q33.616-67.502 33.460-67.345Q33.304-67.189 33.094-67.189Q32.889-67.189 32.733-67.345Q32.576-67.502 32.576-67.712\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-24.533 22.972)\">\u003Cpath d=\"M-35.116-61.999Q-35.804-61.999-36.295-62.504Q-36.786-63.009-37.023-63.759Q-37.259-64.508-37.259-65.173Q-37.259-65.832-37.023-66.574Q-36.786-67.316-36.295-67.824Q-35.804-68.332-35.116-68.332Q-34.589-68.332-34.176-68.029Q-33.763-67.726-33.502-67.243Q-33.241-66.759-33.109-66.217Q-32.977-65.675-32.977-65.173Q-32.977-64.665-33.109-64.123Q-33.241-63.581-33.505-63.092Q-33.768-62.604-34.178-62.301Q-34.589-61.999-35.116-61.999M-35.116-62.653Q-34.730-62.653-34.459-62.929Q-34.188-63.205-34.025-63.620Q-33.861-64.035-33.785-64.482Q-33.710-64.928-33.710-65.290Q-33.710-65.612-33.788-66.029Q-33.866-66.447-34.030-66.818Q-34.193-67.189-34.469-67.436Q-34.745-67.682-35.116-67.682Q-35.487-67.682-35.756-67.443Q-36.024-67.204-36.193-66.830Q-36.361-66.457-36.444-66.034Q-36.527-65.612-36.527-65.290Q-36.527-64.811-36.388-64.191Q-36.249-63.571-35.926-63.112Q-35.604-62.653-35.116-62.653M-30.458-62.111L-31.918-62.111Q-32.172-62.140-32.201-62.389L-32.201-62.482Q-32.172-62.731-31.918-62.760L-31.390-62.760L-30.189-64.333L-31.317-65.773L-31.859-65.773Q-32.108-65.802-32.137-66.051L-32.137-66.139Q-32.123-66.261-32.054-66.335Q-31.986-66.408-31.859-66.423L-30.399-66.423Q-30.165-66.393-30.121-66.139L-30.121-66.051Q-30.165-65.802-30.399-65.773L-30.590-65.773L-29.901-64.840L-29.217-65.773L-29.427-65.773Q-29.667-65.802-29.711-66.051L-29.711-66.139Q-29.691-66.257-29.615-66.332Q-29.540-66.408-29.427-66.423L-27.967-66.423Q-27.850-66.408-27.777-66.335Q-27.704-66.261-27.689-66.139L-27.689-66.051Q-27.718-65.802-27.967-65.773L-28.500-65.773L-29.598-64.333L-28.368-62.760L-27.831-62.760Q-27.709-62.746-27.635-62.677Q-27.562-62.609-27.548-62.482L-27.548-62.389Q-27.562-62.272-27.635-62.199Q-27.709-62.126-27.831-62.111L-29.291-62.111Q-29.520-62.140-29.569-62.389L-29.569-62.482Q-29.525-62.731-29.291-62.760L-29.071-62.760L-29.901-63.923L-30.687-62.760L-30.458-62.760Q-30.223-62.731-30.179-62.482L-30.179-62.389Q-30.223-62.140-30.458-62.111M-24.618-61.999Q-25.306-61.999-25.797-62.504Q-26.288-63.009-26.525-63.759Q-26.761-64.508-26.761-65.173Q-26.761-65.832-26.525-66.574Q-26.288-67.316-25.797-67.824Q-25.306-68.332-24.618-68.332Q-24.091-68.332-23.678-68.029Q-23.265-67.726-23.004-67.243Q-22.743-66.759-22.611-66.217Q-22.479-65.675-22.479-65.173Q-22.479-64.665-22.611-64.123Q-22.743-63.581-23.007-63.092Q-23.270-62.604-23.680-62.301Q-24.091-61.999-24.618-61.999M-24.618-62.653Q-24.232-62.653-23.961-62.929Q-23.690-63.205-23.527-63.620Q-23.363-64.035-23.287-64.482Q-23.212-64.928-23.212-65.290Q-23.212-65.612-23.290-66.029Q-23.368-66.447-23.531-66.818Q-23.695-67.189-23.971-67.436Q-24.247-67.682-24.618-67.682Q-24.989-67.682-25.258-67.443Q-25.526-67.204-25.695-66.830Q-25.863-66.457-25.946-66.034Q-26.029-65.612-26.029-65.290Q-26.029-64.811-25.890-64.191Q-25.751-63.571-25.428-63.112Q-25.106-62.653-24.618-62.653M-21.459-63.439Q-21.459-64.006-20.941-64.335Q-20.424-64.665-19.742-64.787Q-19.061-64.909-18.461-64.909L-18.461-64.992Q-18.461-65.402-18.817-65.632Q-19.174-65.861-19.613-65.861Q-20.062-65.861-20.282-65.822Q-20.272-65.822-20.272-65.739Q-20.272-65.553-20.409-65.417Q-20.546-65.280-20.731-65.280Q-20.936-65.280-21.068-65.422Q-21.200-65.563-21.200-65.763Q-21.200-66.252-20.734-66.381Q-20.267-66.510-19.589-66.510Q-19.159-66.510-18.724-66.332Q-18.290-66.154-18.011-65.817Q-17.733-65.480-17.733-65.031L-17.733-62.853Q-17.733-62.760-17.030-62.760Q-16.781-62.731-16.752-62.482L-16.752-62.389Q-16.781-62.140-17.030-62.111L-17.201-62.111Q-17.621-62.111-17.906-62.172Q-18.192-62.233-18.363-62.453Q-18.929-62.052-19.862-62.052Q-20.258-62.052-20.629-62.223Q-21-62.394-21.229-62.709Q-21.459-63.024-21.459-63.439M-20.731-63.429Q-20.731-63.097-20.421-62.900Q-20.111-62.702-19.740-62.702Q-19.349-62.702-19.032-62.809Q-18.871-62.868-18.680-62.995Q-18.490-63.122-18.490-63.239Q-18.490-63.234-18.475-63.310Q-18.461-63.385-18.461-63.429L-18.461-64.279Q-18.690-64.279-19.071-64.240Q-19.452-64.201-19.823-64.111Q-20.194-64.020-20.463-63.847Q-20.731-63.673-20.731-63.429\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt10\" font-size=\"10\">\u003Cg transform=\"translate(14.914 22.278)\">\u003Cpath d=\"M-36.976-62.389L-36.976-62.482Q-36.947-62.731-36.698-62.760L-35.360-62.760L-35.360-65.773L-36.620-65.773Q-36.869-65.807-36.898-66.051L-36.898-66.139Q-36.884-66.257-36.808-66.332Q-36.732-66.408-36.620-66.423L-34.906-66.423Q-34.789-66.408-34.716-66.335Q-34.642-66.261-34.628-66.139L-34.628-62.760L-33.446-62.760Q-33.212-62.731-33.168-62.482L-33.168-62.389Q-33.212-62.140-33.446-62.111L-36.698-62.111Q-36.947-62.140-36.976-62.389M-35.668-67.712Q-35.668-67.926-35.516-68.078Q-35.365-68.229-35.150-68.229Q-34.930-68.229-34.779-68.078Q-34.628-67.926-34.628-67.712Q-34.628-67.502-34.784-67.345Q-34.940-67.189-35.150-67.189Q-35.355-67.189-35.511-67.345Q-35.668-67.502-35.668-67.712M-29.008-62.111L-31.908-62.111Q-32.152-62.140-32.191-62.389L-32.191-62.482Q-32.152-62.731-31.908-62.760L-30.980-62.760L-30.980-65.773L-31.908-65.773Q-32.152-65.802-32.191-66.051L-32.191-66.139Q-32.152-66.393-31.908-66.423L-30.531-66.423Q-30.409-66.408-30.336-66.335Q-30.262-66.261-30.248-66.139L-30.248-65.700Q-30.048-65.934-29.777-66.115Q-29.506-66.296-29.188-66.388Q-28.871-66.481-28.558-66.481Q-28.192-66.481-27.906-66.330Q-27.621-66.178-27.621-65.851Q-27.621-65.661-27.743-65.527Q-27.865-65.392-28.060-65.392Q-28.241-65.392-28.370-65.517Q-28.500-65.641-28.500-65.832L-28.568-65.832Q-29.047-65.832-29.432-65.573Q-29.818-65.314-30.033-64.887Q-30.248-64.460-30.248-63.991L-30.248-62.760L-29.008-62.760Q-28.759-62.726-28.729-62.482L-28.729-62.389Q-28.759-62.145-29.008-62.111M-27.299-62.389L-27.299-62.482Q-27.255-62.731-27.020-62.760L-26.732-62.760L-26.732-65.773L-27.020-65.773Q-27.255-65.802-27.299-66.051L-27.299-66.139Q-27.255-66.393-27.020-66.423L-26.410-66.423Q-26.283-66.408-26.207-66.322Q-26.132-66.237-26.132-66.120Q-25.731-66.481-25.218-66.481Q-24.979-66.481-24.774-66.340Q-24.569-66.198-24.462-65.959Q-24.032-66.481-23.412-66.481Q-22.509-66.481-22.509-65.031L-22.509-62.760L-22.220-62.760Q-21.986-62.731-21.942-62.482L-21.942-62.389Q-21.991-62.140-22.220-62.111L-23.290-62.111Q-23.539-62.145-23.568-62.389L-23.568-62.482Q-23.539-62.726-23.290-62.760L-23.109-62.760L-23.109-64.992Q-23.109-65.832-23.470-65.832Q-23.763-65.832-23.954-65.629Q-24.144-65.426-24.232-65.133Q-24.320-64.840-24.320-64.552L-24.320-62.760L-24.032-62.760Q-23.793-62.731-23.749-62.482L-23.749-62.389Q-23.798-62.140-24.032-62.111L-25.101-62.111Q-25.350-62.145-25.380-62.389L-25.380-62.482Q-25.350-62.726-25.101-62.760L-24.921-62.760L-24.921-64.992Q-24.921-65.832-25.282-65.832Q-25.575-65.832-25.765-65.629Q-25.956-65.426-26.044-65.133Q-26.132-64.840-26.132-64.552L-26.132-62.760L-25.839-62.760Q-25.604-62.731-25.560-62.482L-25.560-62.389Q-25.604-62.140-25.839-62.111L-27.020-62.111Q-27.250-62.140-27.299-62.389M-19.369-62.052Q-19.950-62.052-20.424-62.358Q-20.897-62.663-21.168-63.180Q-21.439-63.698-21.439-64.269Q-21.439-64.845-21.173-65.361Q-20.907-65.876-20.428-66.193Q-19.950-66.510-19.369-66.510Q-18.925-66.510-18.539-66.325Q-18.153-66.139-17.882-65.832Q-17.611-65.524-17.455-65.109Q-17.299-64.694-17.299-64.269Q-17.299-63.698-17.570-63.183Q-17.841-62.668-18.317-62.360Q-18.793-62.052-19.369-62.052M-19.369-62.702Q-18.768-62.702-18.400-63.217Q-18.031-63.732-18.031-64.352Q-18.031-64.733-18.202-65.080Q-18.373-65.426-18.675-65.644Q-18.978-65.861-19.369-65.861Q-19.755-65.861-20.060-65.646Q-20.365-65.431-20.538-65.082Q-20.712-64.733-20.712-64.352Q-20.712-63.732-20.341-63.217Q-19.969-62.702-19.369-62.702M-14.662-62.370L-15.790-65.773L-16.224-65.773Q-16.473-65.807-16.503-66.051L-16.503-66.139Q-16.488-66.257-16.412-66.332Q-16.337-66.408-16.224-66.423L-14.759-66.423Q-14.647-66.408-14.571-66.332Q-14.496-66.257-14.481-66.139L-14.481-66.051Q-14.510-65.807-14.759-65.773L-15.160-65.773L-14.120-62.663L-13.080-65.773L-13.480-65.773Q-13.734-65.807-13.763-66.051L-13.763-66.139Q-13.734-66.388-13.480-66.423L-12.020-66.423Q-11.908-66.408-11.832-66.332Q-11.757-66.257-11.742-66.139L-11.742-66.051Q-11.771-65.807-12.020-65.773L-12.450-65.773L-13.583-62.370Q-13.627-62.233-13.741-62.153Q-13.856-62.072-14.003-62.072L-14.242-62.072Q-14.388-62.072-14.503-62.153Q-14.618-62.233-14.662-62.370M-8.612-60.173L-8.612-60.260Q-8.583-60.509-8.334-60.539L-7.723-60.539L-7.723-62.619Q-8.002-62.350-8.346-62.201Q-8.690-62.052-9.071-62.052Q-9.496-62.052-9.877-62.238Q-10.258-62.423-10.529-62.729Q-10.800-63.034-10.956-63.444Q-11.112-63.854-11.112-64.269Q-11.112-64.860-10.826-65.365Q-10.541-65.871-10.045-66.176Q-9.550-66.481-8.954-66.481Q-8.612-66.481-8.292-66.344Q-7.972-66.208-7.723-65.959L-7.723-66.203Q-7.709-66.320-7.635-66.393Q-7.562-66.466-7.445-66.481L-7.274-66.481Q-7.152-66.466-7.079-66.393Q-7.006-66.320-6.991-66.203L-6.991-60.539L-6.381-60.539Q-6.132-60.509-6.102-60.260L-6.102-60.173Q-6.132-59.919-6.381-59.889L-8.334-59.889Q-8.583-59.919-8.612-60.173M-9.012-62.702Q-8.695-62.702-8.424-62.863Q-8.153-63.024-7.977-63.290Q-7.801-63.556-7.723-63.869L-7.723-64.611Q-7.777-64.938-7.933-65.212Q-8.090-65.485-8.336-65.658Q-8.583-65.832-8.905-65.832Q-9.315-65.832-9.652-65.614Q-9.989-65.397-10.187-65.033Q-10.384-64.670-10.384-64.259Q-10.384-63.874-10.211-63.515Q-10.038-63.156-9.720-62.929Q-9.403-62.702-9.012-62.702\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(14.914 22.278)\">\u003Cpath d=\"M1.312-61.559L1.312-62.072Q0.560-62.150 0.076-62.611Q-0.407-63.073-0.407-63.810Q-0.407-64.015-0.275-64.159Q-0.143-64.303 0.062-64.303Q0.247-64.303 0.384-64.162Q0.521-64.020 0.521-63.830Q0.521-63.620 0.360-63.483Q0.462-63.156 0.714-62.965Q0.965-62.775 1.312-62.721L1.312-64.982Q0.570-65.143 0.081-65.544Q-0.407-65.944-0.407-66.623Q-0.407-67.067-0.160-67.421Q0.086-67.775 0.477-67.987Q0.867-68.200 1.312-68.263L1.312-68.771Q1.341-69.020 1.590-69.049L1.683-69.049Q1.932-69.020 1.961-68.771L1.961-68.273Q2.230-68.273 2.564-68.144Q2.899-68.014 3.133-67.829Q3.382-67.629 3.526-67.304Q3.670-66.979 3.670-66.642Q3.670-66.506 3.609-66.396Q3.548-66.286 3.446-66.222Q3.343-66.159 3.211-66.159Q3.021-66.159 2.882-66.293Q2.742-66.427 2.742-66.623Q2.742-66.838 2.894-66.969Q2.694-67.502 1.961-67.609L1.961-65.592Q2.440-65.490 2.825-65.263Q3.211-65.036 3.441-64.674Q3.670-64.313 3.670-63.830Q3.670-63.151 3.165-62.660Q2.659-62.170 1.961-62.072L1.961-61.559Q1.932-61.310 1.683-61.281L1.590-61.281Q1.473-61.296 1.400-61.369Q1.326-61.442 1.312-61.559M1.961-64.840L1.961-62.731Q2.230-62.785 2.467-62.929Q2.703-63.073 2.847-63.300Q2.991-63.527 2.991-63.791Q2.991-64.196 2.686-64.479Q2.381-64.762 1.961-64.840M0.272-66.662Q0.272-66.286 0.577-66.056Q0.882-65.827 1.312-65.729L1.312-67.599Q0.911-67.531 0.592-67.282Q0.272-67.033 0.272-66.662M6.883-61.999Q6.195-61.999 5.704-62.504Q5.213-63.009 4.976-63.759Q4.740-64.508 4.740-65.173Q4.740-65.832 4.976-66.574Q5.213-67.316 5.704-67.824Q6.195-68.332 6.883-68.332Q7.410-68.332 7.823-68.029Q8.236-67.726 8.497-67.243Q8.758-66.759 8.890-66.217Q9.022-65.675 9.022-65.173Q9.022-64.665 8.890-64.123Q8.758-63.581 8.494-63.092Q8.231-62.604 7.821-62.301Q7.410-61.999 6.883-61.999M6.883-62.653Q7.269-62.653 7.540-62.929Q7.811-63.205 7.974-63.620Q8.138-64.035 8.214-64.482Q8.289-64.928 8.289-65.290Q8.289-65.612 8.211-66.029Q8.133-66.447 7.970-66.818Q7.806-67.189 7.530-67.436Q7.254-67.682 6.883-67.682Q6.512-67.682 6.243-67.443Q5.975-67.204 5.806-66.830Q5.638-66.457 5.555-66.034Q5.472-65.612 5.472-65.290Q5.472-64.811 5.611-64.191Q5.750-63.571 6.073-63.112Q6.395-62.653 6.883-62.653M11.688-60.719L11.629-60.719Q11.507-60.719 11.405-60.827Q11.302-60.934 11.302-61.061Q11.302-61.271 11.512-61.340Q11.805-61.413 12.022-61.625Q12.240-61.838 12.308-62.131L12.249-62.121L12.220-62.111L12.142-62.111Q11.868-62.111 11.680-62.299Q11.492-62.487 11.492-62.760Q11.492-63.029 11.683-63.215Q11.873-63.400 12.142-63.400Q12.391-63.400 12.589-63.254Q12.786-63.107 12.889-62.878Q12.991-62.648 12.991-62.389Q12.991-61.794 12.633-61.347Q12.274-60.900 11.688-60.719M15.628-61.632Q15.628-61.711 15.658-61.769L18.460-68.849Q18.573-69.049 18.778-69.049Q18.924-69.049 19.027-68.947Q19.129-68.844 19.129-68.703Q19.129-68.620 19.100-68.561L16.297-61.481Q16.185-61.281 15.980-61.281Q15.843-61.281 15.736-61.388Q15.628-61.496 15.628-61.632M18.778-61.281Q18.348-61.281 18.128-61.708Q17.908-62.135 17.908-62.609Q17.908-63.088 18.126-63.515Q18.343-63.942 18.778-63.942Q19.212-63.942 19.429-63.515Q19.647-63.088 19.647-62.609Q19.647-62.135 19.427-61.708Q19.207-61.281 18.778-61.281M18.768-61.930Q18.861-61.930 18.924-62.060Q18.988-62.189 19.019-62.350Q19.051-62.511 19.051-62.609Q19.051-62.780 18.980-63.022Q18.909-63.263 18.787-63.293Q18.656-63.293 18.582-63.046Q18.509-62.799 18.509-62.609Q18.509-62.443 18.575-62.204Q18.641-61.965 18.768-61.930M15.980-66.379Q15.687-66.379 15.487-66.593Q15.286-66.808 15.199-67.116Q15.111-67.423 15.111-67.721Q15.111-68.009 15.199-68.315Q15.286-68.620 15.487-68.835Q15.687-69.049 15.980-69.049Q16.273-69.049 16.473-68.835Q16.673-68.620 16.761-68.315Q16.849-68.009 16.849-67.721Q16.849-67.423 16.761-67.116Q16.673-66.808 16.473-66.593Q16.273-66.379 15.980-66.379M15.970-67.033L15.999-67.033Q16.107-67.043 16.178-67.294Q16.248-67.546 16.248-67.721Q16.248-67.917 16.182-68.141Q16.116-68.366 15.990-68.400L15.980-68.400L15.970-68.400Q15.848-68.385 15.780-68.139Q15.711-67.892 15.711-67.721Q15.711-67.546 15.777-67.306Q15.843-67.067 15.970-67.033M23.490-62.111L20.589-62.111Q20.345-62.140 20.306-62.389L20.306-62.482Q20.345-62.731 20.589-62.760L21.517-62.760L21.517-65.773L20.589-65.773Q20.345-65.802 20.306-66.051L20.306-66.139Q20.345-66.393 20.589-66.423L21.966-66.423Q22.088-66.408 22.161-66.335Q22.235-66.261 22.249-66.139L22.249-65.700Q22.450-65.934 22.720-66.115Q22.991-66.296 23.309-66.388Q23.626-66.481 23.939-66.481Q24.305-66.481 24.591-66.330Q24.876-66.178 24.876-65.851Q24.876-65.661 24.754-65.527Q24.632-65.392 24.437-65.392Q24.256-65.392 24.127-65.517Q23.997-65.641 23.997-65.832L23.929-65.832Q23.450-65.832 23.065-65.573Q22.679-65.314 22.464-64.887Q22.249-64.460 22.249-63.991L22.249-62.760L23.490-62.760Q23.739-62.726 23.768-62.482L23.768-62.389Q23.739-62.145 23.490-62.111M25.789-63.439Q25.789-64.006 26.307-64.335Q26.825-64.665 27.506-64.787Q28.187-64.909 28.787-64.909L28.787-64.992Q28.787-65.402 28.431-65.632Q28.075-65.861 27.635-65.861Q27.186-65.861 26.966-65.822Q26.976-65.822 26.976-65.739Q26.976-65.553 26.839-65.417Q26.702-65.280 26.517-65.280Q26.312-65.280 26.180-65.422Q26.048-65.563 26.048-65.763Q26.048-66.252 26.514-66.381Q26.981-66.510 27.659-66.510Q28.089-66.510 28.524-66.332Q28.958-66.154 29.237-65.817Q29.515-65.480 29.515-65.031L29.515-62.853Q29.515-62.760 30.218-62.760Q30.467-62.731 30.496-62.482L30.496-62.389Q30.467-62.140 30.218-62.111L30.047-62.111Q29.627-62.111 29.342-62.172Q29.056-62.233 28.885-62.453Q28.319-62.052 27.386-62.052Q26.991-62.052 26.619-62.223Q26.248-62.394 26.019-62.709Q25.789-63.024 25.789-63.439M26.517-63.429Q26.517-63.097 26.827-62.900Q27.137-62.702 27.508-62.702Q27.899-62.702 28.216-62.809Q28.377-62.868 28.568-62.995Q28.758-63.122 28.758-63.239Q28.758-63.234 28.773-63.310Q28.787-63.385 28.787-63.429L28.787-64.279Q28.558-64.279 28.177-64.240Q27.796-64.201 27.425-64.111Q27.054-64.020 26.785-63.847Q26.517-63.673 26.517-63.429M32.537-62.111L31.077-62.111Q30.824-62.140 30.794-62.389L30.794-62.482Q30.824-62.731 31.077-62.760L31.605-62.760L32.806-64.333L31.678-65.773L31.136-65.773Q30.887-65.802 30.858-66.051L30.858-66.139Q30.872-66.261 30.941-66.335Q31.009-66.408 31.136-66.423L32.596-66.423Q32.830-66.393 32.874-66.139L32.874-66.051Q32.830-65.802 32.596-65.773L32.406-65.773L33.094-64.840L33.778-65.773L33.568-65.773Q33.328-65.802 33.284-66.051L33.284-66.139Q33.304-66.257 33.380-66.332Q33.455-66.408 33.568-66.423L35.028-66.423Q35.145-66.408 35.218-66.335Q35.291-66.261 35.306-66.139L35.306-66.051Q35.277-65.802 35.028-65.773L34.495-65.773L33.397-64.333L34.627-62.760L35.164-62.760Q35.286-62.746 35.360-62.677Q35.433-62.609 35.448-62.482L35.448-62.389Q35.433-62.272 35.360-62.199Q35.286-62.126 35.164-62.111L33.704-62.111Q33.475-62.140 33.426-62.389L33.426-62.482Q33.470-62.731 33.704-62.760L33.924-62.760L33.094-63.923L32.308-62.760L32.537-62.760Q32.772-62.731 32.816-62.482L32.816-62.389Q32.772-62.140 32.537-62.111\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-24.533 42.89)\">\u003Cpath d=\"M-35.116-61.999Q-35.804-61.999-36.295-62.504Q-36.786-63.009-37.023-63.759Q-37.259-64.508-37.259-65.173Q-37.259-65.832-37.023-66.574Q-36.786-67.316-36.295-67.824Q-35.804-68.332-35.116-68.332Q-34.589-68.332-34.176-68.029Q-33.763-67.726-33.502-67.243Q-33.241-66.759-33.109-66.217Q-32.977-65.675-32.977-65.173Q-32.977-64.665-33.109-64.123Q-33.241-63.581-33.505-63.092Q-33.768-62.604-34.178-62.301Q-34.589-61.999-35.116-61.999M-35.116-62.653Q-34.730-62.653-34.459-62.929Q-34.188-63.205-34.025-63.620Q-33.861-64.035-33.785-64.482Q-33.710-64.928-33.710-65.290Q-33.710-65.612-33.788-66.029Q-33.866-66.447-34.030-66.818Q-34.193-67.189-34.469-67.436Q-34.745-67.682-35.116-67.682Q-35.487-67.682-35.756-67.443Q-36.024-67.204-36.193-66.830Q-36.361-66.457-36.444-66.034Q-36.527-65.612-36.527-65.290Q-36.527-64.811-36.388-64.191Q-36.249-63.571-35.926-63.112Q-35.604-62.653-35.116-62.653M-30.458-62.111L-31.918-62.111Q-32.172-62.140-32.201-62.389L-32.201-62.482Q-32.172-62.731-31.918-62.760L-31.390-62.760L-30.189-64.333L-31.317-65.773L-31.859-65.773Q-32.108-65.802-32.137-66.051L-32.137-66.139Q-32.123-66.261-32.054-66.335Q-31.986-66.408-31.859-66.423L-30.399-66.423Q-30.165-66.393-30.121-66.139L-30.121-66.051Q-30.165-65.802-30.399-65.773L-30.590-65.773L-29.901-64.840L-29.217-65.773L-29.427-65.773Q-29.667-65.802-29.711-66.051L-29.711-66.139Q-29.691-66.257-29.615-66.332Q-29.540-66.408-29.427-66.423L-27.967-66.423Q-27.850-66.408-27.777-66.335Q-27.704-66.261-27.689-66.139L-27.689-66.051Q-27.718-65.802-27.967-65.773L-28.500-65.773L-29.598-64.333L-28.368-62.760L-27.831-62.760Q-27.709-62.746-27.635-62.677Q-27.562-62.609-27.548-62.482L-27.548-62.389Q-27.562-62.272-27.635-62.199Q-27.709-62.126-27.831-62.111L-29.291-62.111Q-29.520-62.140-29.569-62.389L-29.569-62.482Q-29.525-62.731-29.291-62.760L-29.071-62.760L-29.901-63.923L-30.687-62.760L-30.458-62.760Q-30.223-62.731-30.179-62.482L-30.179-62.389Q-30.223-62.140-30.458-62.111M-26.151-62.389L-26.151-62.482Q-26.122-62.731-25.868-62.760L-24.838-62.760L-24.838-66.882Q-25.331-66.462-25.892-66.462Q-26.009-66.462-26.102-66.537Q-26.195-66.613-26.210-66.740L-26.210-66.833Q-26.175-67.082-25.931-67.111Q-25.516-67.111-25.199-67.421Q-24.882-67.731-24.720-68.151Q-24.642-68.302-24.462-68.332L-24.388-68.332Q-24.271-68.317-24.198-68.244Q-24.125-68.171-24.110-68.053L-24.110-62.760L-23.080-62.760Q-22.831-62.731-22.801-62.482L-22.801-62.389Q-22.831-62.140-23.080-62.111L-25.868-62.111Q-26.122-62.140-26.151-62.389M-18.802-63.791L-21.420-63.791Q-21.674-63.820-21.703-64.069L-21.703-64.352Q-21.703-64.450-21.659-64.499L-19.320-68.151Q-19.217-68.302-19.051-68.302L-18.500-68.302Q-18.373-68.302-18.287-68.212Q-18.202-68.122-18.202-68L-18.202-64.440L-17.323-64.440Q-17.201-64.425-17.128-64.357Q-17.054-64.289-17.040-64.162L-17.040-64.069Q-17.054-63.952-17.128-63.879Q-17.201-63.805-17.323-63.791L-18.202-63.791L-18.202-62.760L-17.460-62.760Q-17.211-62.731-17.181-62.482L-17.181-62.389Q-17.211-62.140-17.460-62.111L-19.540-62.111Q-19.784-62.140-19.823-62.389L-19.823-62.482Q-19.784-62.731-19.540-62.760L-18.802-62.760L-18.802-63.791M-18.802-67.799L-20.951-64.440L-18.802-64.440\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt10\" font-size=\"10\">\u003Cg transform=\"translate(14.914 42.195)\">\u003Cpath d=\"M-36.976-62.389L-36.976-62.482Q-36.947-62.731-36.698-62.760L-35.360-62.760L-35.360-65.773L-36.620-65.773Q-36.869-65.807-36.898-66.051L-36.898-66.139Q-36.884-66.257-36.808-66.332Q-36.732-66.408-36.620-66.423L-34.906-66.423Q-34.789-66.408-34.716-66.335Q-34.642-66.261-34.628-66.139L-34.628-62.760L-33.446-62.760Q-33.212-62.731-33.168-62.482L-33.168-62.389Q-33.212-62.140-33.446-62.111L-36.698-62.111Q-36.947-62.140-36.976-62.389M-35.668-67.712Q-35.668-67.926-35.516-68.078Q-35.365-68.229-35.150-68.229Q-34.930-68.229-34.779-68.078Q-34.628-67.926-34.628-67.712Q-34.628-67.502-34.784-67.345Q-34.940-67.189-35.150-67.189Q-35.355-67.189-35.511-67.345Q-35.668-67.502-35.668-67.712M-29.008-62.111L-31.908-62.111Q-32.152-62.140-32.191-62.389L-32.191-62.482Q-32.152-62.731-31.908-62.760L-30.980-62.760L-30.980-65.773L-31.908-65.773Q-32.152-65.802-32.191-66.051L-32.191-66.139Q-32.152-66.393-31.908-66.423L-30.531-66.423Q-30.409-66.408-30.336-66.335Q-30.262-66.261-30.248-66.139L-30.248-65.700Q-30.048-65.934-29.777-66.115Q-29.506-66.296-29.188-66.388Q-28.871-66.481-28.558-66.481Q-28.192-66.481-27.906-66.330Q-27.621-66.178-27.621-65.851Q-27.621-65.661-27.743-65.527Q-27.865-65.392-28.060-65.392Q-28.241-65.392-28.370-65.517Q-28.500-65.641-28.500-65.832L-28.568-65.832Q-29.047-65.832-29.432-65.573Q-29.818-65.314-30.033-64.887Q-30.248-64.460-30.248-63.991L-30.248-62.760L-29.008-62.760Q-28.759-62.726-28.729-62.482L-28.729-62.389Q-28.759-62.145-29.008-62.111M-27.299-62.389L-27.299-62.482Q-27.255-62.731-27.020-62.760L-26.732-62.760L-26.732-65.773L-27.020-65.773Q-27.255-65.802-27.299-66.051L-27.299-66.139Q-27.255-66.393-27.020-66.423L-26.410-66.423Q-26.283-66.408-26.207-66.322Q-26.132-66.237-26.132-66.120Q-25.731-66.481-25.218-66.481Q-24.979-66.481-24.774-66.340Q-24.569-66.198-24.462-65.959Q-24.032-66.481-23.412-66.481Q-22.509-66.481-22.509-65.031L-22.509-62.760L-22.220-62.760Q-21.986-62.731-21.942-62.482L-21.942-62.389Q-21.991-62.140-22.220-62.111L-23.290-62.111Q-23.539-62.145-23.568-62.389L-23.568-62.482Q-23.539-62.726-23.290-62.760L-23.109-62.760L-23.109-64.992Q-23.109-65.832-23.470-65.832Q-23.763-65.832-23.954-65.629Q-24.144-65.426-24.232-65.133Q-24.320-64.840-24.320-64.552L-24.320-62.760L-24.032-62.760Q-23.793-62.731-23.749-62.482L-23.749-62.389Q-23.798-62.140-24.032-62.111L-25.101-62.111Q-25.350-62.145-25.380-62.389L-25.380-62.482Q-25.350-62.726-25.101-62.760L-24.921-62.760L-24.921-64.992Q-24.921-65.832-25.282-65.832Q-25.575-65.832-25.765-65.629Q-25.956-65.426-26.044-65.133Q-26.132-64.840-26.132-64.552L-26.132-62.760L-25.839-62.760Q-25.604-62.731-25.560-62.482L-25.560-62.389Q-25.604-62.140-25.839-62.111L-27.020-62.111Q-27.250-62.140-27.299-62.389M-19.369-62.052Q-19.950-62.052-20.424-62.358Q-20.897-62.663-21.168-63.180Q-21.439-63.698-21.439-64.269Q-21.439-64.845-21.173-65.361Q-20.907-65.876-20.428-66.193Q-19.950-66.510-19.369-66.510Q-18.925-66.510-18.539-66.325Q-18.153-66.139-17.882-65.832Q-17.611-65.524-17.455-65.109Q-17.299-64.694-17.299-64.269Q-17.299-63.698-17.570-63.183Q-17.841-62.668-18.317-62.360Q-18.793-62.052-19.369-62.052M-19.369-62.702Q-18.768-62.702-18.400-63.217Q-18.031-63.732-18.031-64.352Q-18.031-64.733-18.202-65.080Q-18.373-65.426-18.675-65.644Q-18.978-65.861-19.369-65.861Q-19.755-65.861-20.060-65.646Q-20.365-65.431-20.538-65.082Q-20.712-64.733-20.712-64.352Q-20.712-63.732-20.341-63.217Q-19.969-62.702-19.369-62.702M-14.662-62.370L-15.790-65.773L-16.224-65.773Q-16.473-65.807-16.503-66.051L-16.503-66.139Q-16.488-66.257-16.412-66.332Q-16.337-66.408-16.224-66.423L-14.759-66.423Q-14.647-66.408-14.571-66.332Q-14.496-66.257-14.481-66.139L-14.481-66.051Q-14.510-65.807-14.759-65.773L-15.160-65.773L-14.120-62.663L-13.080-65.773L-13.480-65.773Q-13.734-65.807-13.763-66.051L-13.763-66.139Q-13.734-66.388-13.480-66.423L-12.020-66.423Q-11.908-66.408-11.832-66.332Q-11.757-66.257-11.742-66.139L-11.742-66.051Q-11.771-65.807-12.020-65.773L-12.450-65.773L-13.583-62.370Q-13.627-62.233-13.741-62.153Q-13.856-62.072-14.003-62.072L-14.242-62.072Q-14.388-62.072-14.503-62.153Q-14.618-62.233-14.662-62.370M-8.612-60.173L-8.612-60.260Q-8.583-60.509-8.334-60.539L-7.723-60.539L-7.723-62.619Q-8.002-62.350-8.346-62.201Q-8.690-62.052-9.071-62.052Q-9.496-62.052-9.877-62.238Q-10.258-62.423-10.529-62.729Q-10.800-63.034-10.956-63.444Q-11.112-63.854-11.112-64.269Q-11.112-64.860-10.826-65.365Q-10.541-65.871-10.045-66.176Q-9.550-66.481-8.954-66.481Q-8.612-66.481-8.292-66.344Q-7.972-66.208-7.723-65.959L-7.723-66.203Q-7.709-66.320-7.635-66.393Q-7.562-66.466-7.445-66.481L-7.274-66.481Q-7.152-66.466-7.079-66.393Q-7.006-66.320-6.991-66.203L-6.991-60.539L-6.381-60.539Q-6.132-60.509-6.102-60.260L-6.102-60.173Q-6.132-59.919-6.381-59.889L-8.334-59.889Q-8.583-59.919-8.612-60.173M-9.012-62.702Q-8.695-62.702-8.424-62.863Q-8.153-63.024-7.977-63.290Q-7.801-63.556-7.723-63.869L-7.723-64.611Q-7.777-64.938-7.933-65.212Q-8.090-65.485-8.336-65.658Q-8.583-65.832-8.905-65.832Q-9.315-65.832-9.652-65.614Q-9.989-65.397-10.187-65.033Q-10.384-64.670-10.384-64.259Q-10.384-63.874-10.211-63.515Q-10.038-63.156-9.720-62.929Q-9.403-62.702-9.012-62.702\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(14.914 42.195)\">\u003Cpath d=\"M1.312-61.559L1.312-62.072Q0.560-62.150 0.076-62.611Q-0.407-63.073-0.407-63.810Q-0.407-64.015-0.275-64.159Q-0.143-64.303 0.062-64.303Q0.247-64.303 0.384-64.162Q0.521-64.020 0.521-63.830Q0.521-63.620 0.360-63.483Q0.462-63.156 0.714-62.965Q0.965-62.775 1.312-62.721L1.312-64.982Q0.570-65.143 0.081-65.544Q-0.407-65.944-0.407-66.623Q-0.407-67.067-0.160-67.421Q0.086-67.775 0.477-67.987Q0.867-68.200 1.312-68.263L1.312-68.771Q1.341-69.020 1.590-69.049L1.683-69.049Q1.932-69.020 1.961-68.771L1.961-68.273Q2.230-68.273 2.564-68.144Q2.899-68.014 3.133-67.829Q3.382-67.629 3.526-67.304Q3.670-66.979 3.670-66.642Q3.670-66.506 3.609-66.396Q3.548-66.286 3.446-66.222Q3.343-66.159 3.211-66.159Q3.021-66.159 2.882-66.293Q2.742-66.427 2.742-66.623Q2.742-66.838 2.894-66.969Q2.694-67.502 1.961-67.609L1.961-65.592Q2.440-65.490 2.825-65.263Q3.211-65.036 3.441-64.674Q3.670-64.313 3.670-63.830Q3.670-63.151 3.165-62.660Q2.659-62.170 1.961-62.072L1.961-61.559Q1.932-61.310 1.683-61.281L1.590-61.281Q1.473-61.296 1.400-61.369Q1.326-61.442 1.312-61.559M1.961-64.840L1.961-62.731Q2.230-62.785 2.467-62.929Q2.703-63.073 2.847-63.300Q2.991-63.527 2.991-63.791Q2.991-64.196 2.686-64.479Q2.381-64.762 1.961-64.840M0.272-66.662Q0.272-66.286 0.577-66.056Q0.882-65.827 1.312-65.729L1.312-67.599Q0.911-67.531 0.592-67.282Q0.272-67.033 0.272-66.662M5.350-62.389L5.350-62.482Q5.379-62.731 5.633-62.760L6.663-62.760L6.663-66.882Q6.170-66.462 5.609-66.462Q5.491-66.462 5.399-66.537Q5.306-66.613 5.291-66.740L5.291-66.833Q5.325-67.082 5.570-67.111Q5.985-67.111 6.302-67.421Q6.619-67.731 6.781-68.151Q6.859-68.302 7.039-68.332L7.113-68.332Q7.230-68.317 7.303-68.244Q7.376-68.171 7.391-68.053L7.391-62.760L8.421-62.760Q8.670-62.731 8.700-62.482L8.700-62.389Q8.670-62.140 8.421-62.111L5.633-62.111Q5.379-62.140 5.350-62.389M11.688-60.719L11.629-60.719Q11.507-60.719 11.405-60.827Q11.302-60.934 11.302-61.061Q11.302-61.271 11.512-61.340Q11.805-61.413 12.022-61.625Q12.240-61.838 12.308-62.131L12.249-62.121L12.220-62.111L12.142-62.111Q11.868-62.111 11.680-62.299Q11.492-62.487 11.492-62.760Q11.492-63.029 11.683-63.215Q11.873-63.400 12.142-63.400Q12.391-63.400 12.589-63.254Q12.786-63.107 12.889-62.878Q12.991-62.648 12.991-62.389Q12.991-61.794 12.633-61.347Q12.274-60.900 11.688-60.719M15.628-61.632Q15.628-61.711 15.658-61.769L18.460-68.849Q18.573-69.049 18.778-69.049Q18.924-69.049 19.027-68.947Q19.129-68.844 19.129-68.703Q19.129-68.620 19.100-68.561L16.297-61.481Q16.185-61.281 15.980-61.281Q15.843-61.281 15.736-61.388Q15.628-61.496 15.628-61.632M18.778-61.281Q18.348-61.281 18.128-61.708Q17.908-62.135 17.908-62.609Q17.908-63.088 18.126-63.515Q18.343-63.942 18.778-63.942Q19.212-63.942 19.429-63.515Q19.647-63.088 19.647-62.609Q19.647-62.135 19.427-61.708Q19.207-61.281 18.778-61.281M18.768-61.930Q18.861-61.930 18.924-62.060Q18.988-62.189 19.019-62.350Q19.051-62.511 19.051-62.609Q19.051-62.780 18.980-63.022Q18.909-63.263 18.787-63.293Q18.656-63.293 18.582-63.046Q18.509-62.799 18.509-62.609Q18.509-62.443 18.575-62.204Q18.641-61.965 18.768-61.930M15.980-66.379Q15.687-66.379 15.487-66.593Q15.286-66.808 15.199-67.116Q15.111-67.423 15.111-67.721Q15.111-68.009 15.199-68.315Q15.286-68.620 15.487-68.835Q15.687-69.049 15.980-69.049Q16.273-69.049 16.473-68.835Q16.673-68.620 16.761-68.315Q16.849-68.009 16.849-67.721Q16.849-67.423 16.761-67.116Q16.673-66.808 16.473-66.593Q16.273-66.379 15.980-66.379M15.970-67.033L15.999-67.033Q16.107-67.043 16.178-67.294Q16.248-67.546 16.248-67.721Q16.248-67.917 16.182-68.141Q16.116-68.366 15.990-68.400L15.980-68.400L15.970-68.400Q15.848-68.385 15.780-68.139Q15.711-67.892 15.711-67.721Q15.711-67.546 15.777-67.306Q15.843-67.067 15.970-67.033M23.490-62.111L20.589-62.111Q20.345-62.140 20.306-62.389L20.306-62.482Q20.345-62.731 20.589-62.760L21.517-62.760L21.517-65.773L20.589-65.773Q20.345-65.802 20.306-66.051L20.306-66.139Q20.345-66.393 20.589-66.423L21.966-66.423Q22.088-66.408 22.161-66.335Q22.235-66.261 22.249-66.139L22.249-65.700Q22.450-65.934 22.720-66.115Q22.991-66.296 23.309-66.388Q23.626-66.481 23.939-66.481Q24.305-66.481 24.591-66.330Q24.876-66.178 24.876-65.851Q24.876-65.661 24.754-65.527Q24.632-65.392 24.437-65.392Q24.256-65.392 24.127-65.517Q23.997-65.641 23.997-65.832L23.929-65.832Q23.450-65.832 23.065-65.573Q22.679-65.314 22.464-64.887Q22.249-64.460 22.249-63.991L22.249-62.760L23.490-62.760Q23.739-62.726 23.768-62.482L23.768-62.389Q23.739-62.145 23.490-62.111M25.697-63.869Q25.697-64.240 25.897-64.557Q26.097-64.875 26.414-65.090Q26.732-65.304 27.098-65.412Q26.795-65.495 26.500-65.675Q26.204-65.856 26.021-66.125Q25.838-66.393 25.838-66.711Q25.838-67.091 26.016-67.392Q26.195-67.692 26.507-67.907Q26.820-68.122 27.166-68.227Q27.513-68.332 27.879-68.332Q28.245-68.332 28.597-68.224Q28.949-68.117 29.251-67.909Q29.554-67.702 29.735-67.397Q29.915-67.091 29.915-66.711Q29.915-66.237 29.539-65.895Q29.163-65.553 28.656-65.412Q29.036-65.299 29.346-65.087Q29.657-64.875 29.857-64.557Q30.057-64.240 30.057-63.869Q30.057-63.449 29.876-63.110Q29.696-62.770 29.373-62.514Q29.051-62.257 28.668-62.128Q28.284-61.999 27.879-61.999Q27.337-61.999 26.834-62.233Q26.331-62.467 26.014-62.897Q25.697-63.327 25.697-63.869M26.429-63.869Q26.429-63.507 26.641-63.229Q26.854-62.951 27.188-62.802Q27.523-62.653 27.879-62.653Q28.231-62.653 28.565-62.802Q28.900-62.951 29.115-63.229Q29.329-63.507 29.329-63.869Q29.329-64.137 29.205-64.369Q29.080-64.601 28.873-64.755Q28.665-64.909 28.399-64.994Q28.133-65.080 27.879-65.080Q27.523-65.080 27.188-64.931Q26.854-64.782 26.641-64.508Q26.429-64.235 26.429-63.869M26.566-66.711Q26.566-66.257 26.983-65.993Q27.401-65.729 27.879-65.729Q28.353-65.729 28.770-65.990Q29.188-66.252 29.188-66.711Q29.188-67.160 28.775-67.421Q28.363-67.682 27.879-67.682Q27.572-67.682 27.271-67.570Q26.971-67.458 26.768-67.238Q26.566-67.018 26.566-66.711\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-24.533 62.806)\">\u003Cpath d=\"M-35.116-61.999Q-35.804-61.999-36.295-62.504Q-36.786-63.009-37.023-63.759Q-37.259-64.508-37.259-65.173Q-37.259-65.832-37.023-66.574Q-36.786-67.316-36.295-67.824Q-35.804-68.332-35.116-68.332Q-34.589-68.332-34.176-68.029Q-33.763-67.726-33.502-67.243Q-33.241-66.759-33.109-66.217Q-32.977-65.675-32.977-65.173Q-32.977-64.665-33.109-64.123Q-33.241-63.581-33.505-63.092Q-33.768-62.604-34.178-62.301Q-34.589-61.999-35.116-61.999M-35.116-62.653Q-34.730-62.653-34.459-62.929Q-34.188-63.205-34.025-63.620Q-33.861-64.035-33.785-64.482Q-33.710-64.928-33.710-65.290Q-33.710-65.612-33.788-66.029Q-33.866-66.447-34.030-66.818Q-34.193-67.189-34.469-67.436Q-34.745-67.682-35.116-67.682Q-35.487-67.682-35.756-67.443Q-36.024-67.204-36.193-66.830Q-36.361-66.457-36.444-66.034Q-36.527-65.612-36.527-65.290Q-36.527-64.811-36.388-64.191Q-36.249-63.571-35.926-63.112Q-35.604-62.653-35.116-62.653M-30.458-62.111L-31.918-62.111Q-32.172-62.140-32.201-62.389L-32.201-62.482Q-32.172-62.731-31.918-62.760L-31.390-62.760L-30.189-64.333L-31.317-65.773L-31.859-65.773Q-32.108-65.802-32.137-66.051L-32.137-66.139Q-32.123-66.261-32.054-66.335Q-31.986-66.408-31.859-66.423L-30.399-66.423Q-30.165-66.393-30.121-66.139L-30.121-66.051Q-30.165-65.802-30.399-65.773L-30.590-65.773L-29.901-64.840L-29.217-65.773L-29.427-65.773Q-29.667-65.802-29.711-66.051L-29.711-66.139Q-29.691-66.257-29.615-66.332Q-29.540-66.408-29.427-66.423L-27.967-66.423Q-27.850-66.408-27.777-66.335Q-27.704-66.261-27.689-66.139L-27.689-66.051Q-27.718-65.802-27.967-65.773L-28.500-65.773L-29.598-64.333L-28.368-62.760L-27.831-62.760Q-27.709-62.746-27.635-62.677Q-27.562-62.609-27.548-62.482L-27.548-62.389Q-27.562-62.272-27.635-62.199Q-27.709-62.126-27.831-62.111L-29.291-62.111Q-29.520-62.140-29.569-62.389L-29.569-62.482Q-29.525-62.731-29.291-62.760L-29.071-62.760L-29.901-63.923L-30.687-62.760L-30.458-62.760Q-30.223-62.731-30.179-62.482L-30.179-62.389Q-30.223-62.140-30.458-62.111M-26.151-62.389L-26.151-62.482Q-26.122-62.731-25.868-62.760L-24.838-62.760L-24.838-66.882Q-25.331-66.462-25.892-66.462Q-26.009-66.462-26.102-66.537Q-26.195-66.613-26.210-66.740L-26.210-66.833Q-26.175-67.082-25.931-67.111Q-25.516-67.111-25.199-67.421Q-24.882-67.731-24.720-68.151Q-24.642-68.302-24.462-68.332L-24.388-68.332Q-24.271-68.317-24.198-68.244Q-24.125-68.171-24.110-68.053L-24.110-62.760L-23.080-62.760Q-22.831-62.731-22.801-62.482L-22.801-62.389Q-22.831-62.140-23.080-62.111L-25.868-62.111Q-26.122-62.140-26.151-62.389M-17.631-64.001L-20.702-64.001Q-20.594-63.429-20.126-63.066Q-19.657-62.702-19.061-62.702Q-18.749-62.702-18.468-62.846Q-18.187-62.990-18.080-63.249Q-18.002-63.478-17.801-63.503L-17.631-63.503Q-17.504-63.488-17.428-63.403Q-17.352-63.317-17.352-63.200Q-17.352-63.171-17.355-63.153Q-17.357-63.136-17.362-63.112Q-17.552-62.585-18.048-62.319Q-18.544-62.052-19.139-62.052Q-19.745-62.052-20.284-62.348Q-20.824-62.643-21.141-63.151Q-21.459-63.659-21.459-64.279Q-21.459-64.728-21.293-65.129Q-21.127-65.529-20.831-65.844Q-20.536-66.159-20.138-66.335Q-19.740-66.510-19.291-66.510Q-18.666-66.510-18.226-66.225Q-17.787-65.939-17.570-65.444Q-17.352-64.948-17.352-64.323Q-17.352-64.191-17.430-64.103Q-17.509-64.015-17.631-64.001M-20.692-64.640L-18.099-64.640Q-18.138-64.992-18.280-65.268Q-18.422-65.544-18.675-65.702Q-18.929-65.861-19.291-65.861Q-19.623-65.861-19.923-65.695Q-20.223-65.529-20.426-65.246Q-20.629-64.963-20.692-64.640\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt10\" font-size=\"10\">\u003Cg transform=\"translate(14.914 62.112)\">\u003Cpath d=\"M-37.176-62.389L-37.176-62.482Q-37.147-62.731-36.898-62.760L-35.477-62.760L-35.477-67.570L-36.898-67.570Q-37.147-67.599-37.176-67.853L-37.176-67.941Q-37.147-68.190-36.898-68.219L-35.028-68.219Q-34.779-68.190-34.750-67.941L-34.750-62.760L-33.329-62.760Q-33.085-62.731-33.046-62.482L-33.046-62.389Q-33.085-62.140-33.329-62.111L-36.898-62.111Q-37.147-62.140-37.176-62.389M-29.867-62.052Q-30.448-62.052-30.922-62.358Q-31.395-62.663-31.666-63.180Q-31.937-63.698-31.937-64.269Q-31.937-64.845-31.671-65.361Q-31.405-65.876-30.926-66.193Q-30.448-66.510-29.867-66.510Q-29.423-66.510-29.037-66.325Q-28.651-66.139-28.380-65.832Q-28.109-65.524-27.953-65.109Q-27.797-64.694-27.797-64.269Q-27.797-63.698-28.068-63.183Q-28.339-62.668-28.815-62.360Q-29.291-62.052-29.867-62.052M-29.867-62.702Q-29.266-62.702-28.898-63.217Q-28.529-63.732-28.529-64.352Q-28.529-64.733-28.700-65.080Q-28.871-65.426-29.174-65.644Q-29.476-65.861-29.867-65.861Q-30.253-65.861-30.558-65.646Q-30.863-65.431-31.036-65.082Q-31.210-64.733-31.210-64.352Q-31.210-63.732-30.839-63.217Q-30.467-62.702-29.867-62.702M-24.618-62.052Q-25.199-62.052-25.673-62.358Q-26.146-62.663-26.417-63.180Q-26.688-63.698-26.688-64.269Q-26.688-64.845-26.422-65.361Q-26.156-65.876-25.677-66.193Q-25.199-66.510-24.618-66.510Q-24.174-66.510-23.788-66.325Q-23.402-66.139-23.131-65.832Q-22.860-65.524-22.704-65.109Q-22.548-64.694-22.548-64.269Q-22.548-63.698-22.819-63.183Q-23.090-62.668-23.566-62.360Q-24.042-62.052-24.618-62.052M-24.618-62.702Q-24.017-62.702-23.649-63.217Q-23.280-63.732-23.280-64.352Q-23.280-64.733-23.451-65.080Q-23.622-65.426-23.925-65.644Q-24.227-65.861-24.618-65.861Q-25.004-65.861-25.309-65.646Q-25.614-65.431-25.787-65.082Q-25.961-64.733-25.961-64.352Q-25.961-63.732-25.590-63.217Q-25.218-62.702-24.618-62.702M-21.893-60.173L-21.893-60.260Q-21.854-60.509-21.610-60.539L-21.039-60.539L-21.039-65.773L-21.610-65.773Q-21.854-65.802-21.893-66.051L-21.893-66.139Q-21.854-66.393-21.610-66.423L-20.590-66.423Q-20.472-66.408-20.399-66.335Q-20.326-66.261-20.311-66.139L-20.311-66.012Q-19.759-66.481-19.042-66.481Q-18.480-66.481-18.031-66.164Q-17.582-65.846-17.335-65.336Q-17.089-64.826-17.089-64.269Q-17.089-63.698-17.360-63.183Q-17.631-62.668-18.107-62.360Q-18.583-62.052-19.159-62.052Q-19.799-62.052-20.311-62.541L-20.311-60.539L-19.740-60.539Q-19.491-60.509-19.462-60.260L-19.462-60.173Q-19.491-59.919-19.740-59.889L-21.610-59.889Q-21.854-59.919-21.893-60.173M-19.213-62.702Q-18.812-62.702-18.492-62.926Q-18.173-63.151-17.997-63.517Q-17.821-63.883-17.821-64.269Q-17.821-64.635-17.980-65.002Q-18.138-65.368-18.431-65.600Q-18.724-65.832-19.110-65.832Q-19.374-65.832-19.625-65.717Q-19.877-65.602-20.057-65.392Q-20.238-65.182-20.311-64.919L-20.311-63.859Q-20.209-63.390-19.930-63.046Q-19.652-62.702-19.213-62.702M-14.759-62.760Q-14.759-63.029-14.569-63.215Q-14.379-63.400-14.110-63.400Q-13.851-63.400-13.661-63.215Q-13.470-63.029-13.470-62.760Q-13.470-62.492-13.661-62.301Q-13.851-62.111-14.110-62.111Q-14.379-62.111-14.569-62.301Q-14.759-62.492-14.759-62.760M-14.759-65.783Q-14.759-66.042-14.569-66.232Q-14.379-66.423-14.110-66.423Q-13.851-66.423-13.661-66.232Q-13.470-66.042-13.470-65.783Q-13.470-65.519-13.661-65.324Q-13.851-65.129-14.110-65.129Q-14.379-65.129-14.569-65.324Q-14.759-65.519-14.759-65.783\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(14.914 62.112)\">\u003Cpath d=\"M-0.456-63.439Q-0.456-64.006 0.062-64.335Q0.579-64.665 1.261-64.787Q1.942-64.909 2.542-64.909L2.542-64.992Q2.542-65.402 2.186-65.632Q1.829-65.861 1.390-65.861Q0.941-65.861 0.721-65.822Q0.731-65.822 0.731-65.739Q0.731-65.553 0.594-65.417Q0.457-65.280 0.272-65.280Q0.067-65.280-0.065-65.422Q-0.197-65.563-0.197-65.763Q-0.197-66.252 0.269-66.381Q0.736-66.510 1.414-66.510Q1.844-66.510 2.279-66.332Q2.713-66.154 2.991-65.817Q3.270-65.480 3.270-65.031L3.270-62.853Q3.270-62.760 3.973-62.760Q4.222-62.731 4.251-62.482L4.251-62.389Q4.222-62.140 3.973-62.111L3.802-62.111Q3.382-62.111 3.096-62.172Q2.811-62.233 2.640-62.453Q2.074-62.052 1.141-62.052Q0.745-62.052 0.374-62.223Q0.003-62.394-0.226-62.709Q-0.456-63.024-0.456-63.439M0.272-63.429Q0.272-63.097 0.582-62.900Q0.892-62.702 1.263-62.702Q1.654-62.702 1.971-62.809Q2.132-62.868 2.323-62.995Q2.513-63.122 2.513-63.239Q2.513-63.234 2.528-63.310Q2.542-63.385 2.542-63.429L2.542-64.279Q2.313-64.279 1.932-64.240Q1.551-64.201 1.180-64.111Q0.809-64.020 0.540-63.847Q0.272-63.673 0.272-63.429M6.561-62.052Q6.126-62.052 5.767-62.238Q5.408-62.423 5.147-62.741Q4.886-63.058 4.744-63.456Q4.603-63.854 4.603-64.269Q4.603-64.694 4.754-65.092Q4.906-65.490 5.191-65.807Q5.477-66.125 5.855-66.303Q6.234-66.481 6.663-66.481Q7.313-66.481 7.821-66.051L7.821-67.570L7.249-67.570Q7-67.599 6.971-67.853L6.971-67.941Q7-68.190 7.249-68.219L8.270-68.219Q8.514-68.190 8.553-67.941L8.553-62.760L9.119-62.760Q9.241-62.746 9.315-62.677Q9.388-62.609 9.403-62.482L9.403-62.389Q9.388-62.272 9.315-62.199Q9.241-62.126 9.119-62.111L8.099-62.111Q7.982-62.126 7.908-62.199Q7.835-62.272 7.821-62.389L7.821-62.590Q7.259-62.052 6.561-62.052M6.619-62.702Q7.074-62.702 7.396-63.058Q7.718-63.415 7.821-63.893L7.821-64.943Q7.713-65.319 7.410-65.575Q7.108-65.832 6.722-65.832Q6.322-65.832 6.002-65.607Q5.682-65.382 5.506-65.014Q5.330-64.645 5.330-64.259Q5.330-63.898 5.489-63.529Q5.648-63.161 5.941-62.931Q6.234-62.702 6.619-62.702M11.810-62.052Q11.375-62.052 11.016-62.238Q10.658-62.423 10.396-62.741Q10.135-63.058 9.993-63.456Q9.852-63.854 9.852-64.269Q9.852-64.694 10.003-65.092Q10.155-65.490 10.440-65.807Q10.726-66.125 11.104-66.303Q11.483-66.481 11.912-66.481Q12.562-66.481 13.070-66.051L13.070-67.570L12.498-67.570Q12.249-67.599 12.220-67.853L12.220-67.941Q12.249-68.190 12.498-68.219L13.519-68.219Q13.763-68.190 13.802-67.941L13.802-62.760L14.368-62.760Q14.491-62.746 14.564-62.677Q14.637-62.609 14.652-62.482L14.652-62.389Q14.637-62.272 14.564-62.199Q14.491-62.126 14.368-62.111L13.348-62.111Q13.231-62.126 13.158-62.199Q13.084-62.272 13.070-62.389L13.070-62.590Q12.508-62.052 11.810-62.052M11.868-62.702Q12.323-62.702 12.645-63.058Q12.967-63.415 13.070-63.893L13.070-64.943Q12.962-65.319 12.659-65.575Q12.357-65.832 11.971-65.832Q11.571-65.832 11.251-65.607Q10.931-65.382 10.755-65.014Q10.579-64.645 10.579-64.259Q10.579-63.898 10.738-63.529Q10.897-63.161 11.190-62.931Q11.483-62.702 11.868-62.702M17.640-60.173L17.640-60.260Q17.669-60.509 17.918-60.539L18.529-60.539L18.529-62.619Q18.250-62.350 17.906-62.201Q17.562-62.052 17.181-62.052Q16.756-62.052 16.375-62.238Q15.994-62.423 15.723-62.729Q15.452-63.034 15.296-63.444Q15.140-63.854 15.140-64.269Q15.140-64.860 15.426-65.365Q15.711-65.871 16.207-66.176Q16.702-66.481 17.298-66.481Q17.640-66.481 17.960-66.344Q18.280-66.208 18.529-65.959L18.529-66.203Q18.543-66.320 18.616-66.393Q18.690-66.466 18.807-66.481L18.978-66.481Q19.100-66.466 19.173-66.393Q19.246-66.320 19.261-66.203L19.261-60.539L19.871-60.539Q20.120-60.509 20.150-60.260L20.150-60.173Q20.120-59.919 19.871-59.889L17.918-59.889Q17.669-59.919 17.640-60.173M17.240-62.702Q17.557-62.702 17.828-62.863Q18.099-63.024 18.275-63.290Q18.450-63.556 18.529-63.869L18.529-64.611Q18.475-64.938 18.319-65.212Q18.162-65.485 17.916-65.658Q17.669-65.832 17.347-65.832Q16.937-65.832 16.600-65.614Q16.263-65.397 16.065-65.033Q15.867-64.670 15.867-64.259Q15.867-63.874 16.041-63.515Q16.214-63.156 16.532-62.929Q16.849-62.702 17.240-62.702\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(14.914 62.112)\">\u003Cpath d=\"M26.131-61.632Q26.131-61.711 26.160-61.769L28.963-68.849Q29.075-69.049 29.281-69.049Q29.427-69.049 29.530-68.947Q29.632-68.844 29.632-68.703Q29.632-68.620 29.603-68.561L26.800-61.481Q26.688-61.281 26.483-61.281Q26.346-61.281 26.239-61.388Q26.131-61.496 26.131-61.632M29.281-61.281Q28.851-61.281 28.631-61.708Q28.411-62.135 28.411-62.609Q28.411-63.088 28.629-63.515Q28.846-63.942 29.281-63.942Q29.715-63.942 29.932-63.515Q30.150-63.088 30.150-62.609Q30.150-62.135 29.930-61.708Q29.710-61.281 29.281-61.281M29.271-61.930Q29.364-61.930 29.427-62.060Q29.491-62.189 29.522-62.350Q29.554-62.511 29.554-62.609Q29.554-62.780 29.483-63.022Q29.412-63.263 29.290-63.293Q29.158-63.293 29.085-63.046Q29.012-62.799 29.012-62.609Q29.012-62.443 29.078-62.204Q29.144-61.965 29.271-61.930M26.483-66.379Q26.190-66.379 25.990-66.593Q25.789-66.808 25.701-67.116Q25.614-67.423 25.614-67.721Q25.614-68.009 25.701-68.315Q25.789-68.620 25.990-68.835Q26.190-69.049 26.483-69.049Q26.776-69.049 26.976-68.835Q27.176-68.620 27.264-68.315Q27.352-68.009 27.352-67.721Q27.352-67.423 27.264-67.116Q27.176-66.808 26.976-66.593Q26.776-66.379 26.483-66.379M26.473-67.033L26.502-67.033Q26.610-67.043 26.680-67.294Q26.751-67.546 26.751-67.721Q26.751-67.917 26.685-68.141Q26.619-68.366 26.492-68.400L26.483-68.400L26.473-68.400Q26.351-68.385 26.283-68.139Q26.214-67.892 26.214-67.721Q26.214-67.546 26.280-67.306Q26.346-67.067 26.473-67.033M33.992-62.111L31.092-62.111Q30.848-62.140 30.809-62.389L30.809-62.482Q30.848-62.731 31.092-62.760L32.020-62.760L32.020-65.773L31.092-65.773Q30.848-65.802 30.809-66.051L30.809-66.139Q30.848-66.393 31.092-66.423L32.469-66.423Q32.591-66.408 32.664-66.335Q32.738-66.261 32.752-66.139L32.752-65.700Q32.952-65.934 33.223-66.115Q33.494-66.296 33.812-66.388Q34.129-66.481 34.442-66.481Q34.808-66.481 35.094-66.330Q35.379-66.178 35.379-65.851Q35.379-65.661 35.257-65.527Q35.135-65.392 34.940-65.392Q34.759-65.392 34.630-65.517Q34.500-65.641 34.500-65.832L34.432-65.832Q33.953-65.832 33.568-65.573Q33.182-65.314 32.967-64.887Q32.752-64.460 32.752-63.991L32.752-62.760L33.992-62.760Q34.241-62.726 34.271-62.482L34.271-62.389Q34.241-62.145 33.992-62.111M38.060-62.052Q37.625-62.052 37.266-62.238Q36.908-62.423 36.646-62.741Q36.385-63.058 36.243-63.456Q36.102-63.854 36.102-64.269Q36.102-64.694 36.253-65.092Q36.405-65.490 36.690-65.807Q36.976-66.125 37.354-66.303Q37.733-66.481 38.162-66.481Q38.812-66.481 39.320-66.051L39.320-67.570L38.748-67.570Q38.499-67.599 38.470-67.853L38.470-67.941Q38.499-68.190 38.748-68.219L39.769-68.219Q40.013-68.190 40.052-67.941L40.052-62.760L40.618-62.760Q40.741-62.746 40.814-62.677Q40.887-62.609 40.902-62.482L40.902-62.389Q40.887-62.272 40.814-62.199Q40.741-62.126 40.618-62.111L39.598-62.111Q39.481-62.126 39.408-62.199Q39.334-62.272 39.320-62.389L39.320-62.590Q38.758-62.052 38.060-62.052M38.118-62.702Q38.573-62.702 38.895-63.058Q39.217-63.415 39.320-63.893L39.320-64.943Q39.212-65.319 38.909-65.575Q38.607-65.832 38.221-65.832Q37.821-65.832 37.501-65.607Q37.181-65.382 37.005-65.014Q36.829-64.645 36.829-64.259Q36.829-63.898 36.988-63.529Q37.147-63.161 37.440-62.931Q37.733-62.702 38.118-62.702M41.771-62.389L41.771-62.482Q41.800-62.731 42.049-62.760L43.387-62.760L43.387-65.773L42.127-65.773Q41.878-65.807 41.849-66.051L41.849-66.139Q41.864-66.257 41.939-66.332Q42.015-66.408 42.127-66.423L43.841-66.423Q43.958-66.408 44.032-66.335Q44.105-66.261 44.119-66.139L44.119-62.760L45.301-62.760Q45.535-62.731 45.579-62.482L45.579-62.389Q45.535-62.140 45.301-62.111L42.049-62.111Q41.800-62.140 41.771-62.389M43.079-67.712Q43.079-67.926 43.231-68.078Q43.382-68.229 43.597-68.229Q43.817-68.229 43.968-68.078Q44.119-67.926 44.119-67.712Q44.119-67.502 43.963-67.345Q43.807-67.189 43.597-67.189Q43.392-67.189 43.236-67.345Q43.079-67.502 43.079-67.712M48.436-60.719L48.377-60.719Q48.255-60.719 48.153-60.827Q48.050-60.934 48.050-61.061Q48.050-61.271 48.260-61.340Q48.553-61.413 48.770-61.625Q48.988-61.838 49.056-62.131L48.997-62.121L48.968-62.111L48.890-62.111Q48.616-62.111 48.429-62.299Q48.241-62.487 48.241-62.760Q48.241-63.029 48.431-63.215Q48.621-63.400 48.890-63.400Q49.139-63.400 49.337-63.254Q49.534-63.107 49.637-62.878Q49.740-62.648 49.740-62.389Q49.740-61.794 49.381-61.347Q49.022-60.900 48.436-60.719M52.376-61.632Q52.376-61.711 52.406-61.769L55.208-68.849Q55.321-69.049 55.526-69.049Q55.672-69.049 55.775-68.947Q55.877-68.844 55.877-68.703Q55.877-68.620 55.848-68.561L53.045-61.481Q52.933-61.281 52.728-61.281Q52.591-61.281 52.484-61.388Q52.376-61.496 52.376-61.632M55.526-61.281Q55.096-61.281 54.876-61.708Q54.657-62.135 54.657-62.609Q54.657-63.088 54.874-63.515Q55.091-63.942 55.526-63.942Q55.960-63.942 56.178-63.515Q56.395-63.088 56.395-62.609Q56.395-62.135 56.175-61.708Q55.955-61.281 55.526-61.281M55.516-61.930Q55.609-61.930 55.672-62.060Q55.736-62.189 55.767-62.350Q55.799-62.511 55.799-62.609Q55.799-62.780 55.728-63.022Q55.658-63.263 55.535-63.293Q55.404-63.293 55.330-63.046Q55.257-62.799 55.257-62.609Q55.257-62.443 55.323-62.204Q55.389-61.965 55.516-61.930M52.728-66.379Q52.435-66.379 52.235-66.593Q52.034-66.808 51.947-67.116Q51.859-67.423 51.859-67.721Q51.859-68.009 51.947-68.315Q52.034-68.620 52.235-68.835Q52.435-69.049 52.728-69.049Q53.021-69.049 53.221-68.835Q53.421-68.620 53.509-68.315Q53.597-68.009 53.597-67.721Q53.597-67.423 53.509-67.116Q53.421-66.808 53.221-66.593Q53.021-66.379 52.728-66.379M52.718-67.033L52.747-67.033Q52.855-67.043 52.926-67.294Q52.996-67.546 52.996-67.721Q52.996-67.917 52.930-68.141Q52.865-68.366 52.738-68.400L52.728-68.400L52.718-68.400Q52.596-68.385 52.528-68.139Q52.459-67.892 52.459-67.721Q52.459-67.546 52.525-67.306Q52.591-67.067 52.718-67.033M60.238-62.111L57.337-62.111Q57.093-62.140 57.054-62.389L57.054-62.482Q57.093-62.731 57.337-62.760L58.265-62.760L58.265-65.773L57.337-65.773Q57.093-65.802 57.054-66.051L57.054-66.139Q57.093-66.393 57.337-66.423L58.714-66.423Q58.836-66.408 58.909-66.335Q58.983-66.261 58.997-66.139L58.997-65.700Q59.198-65.934 59.469-66.115Q59.740-66.296 60.057-66.388Q60.374-66.481 60.687-66.481Q61.053-66.481 61.339-66.330Q61.624-66.178 61.624-65.851Q61.624-65.661 61.502-65.527Q61.380-65.392 61.185-65.392Q61.004-65.392 60.875-65.517Q60.745-65.641 60.745-65.832L60.677-65.832Q60.199-65.832 59.813-65.573Q59.427-65.314 59.212-64.887Q58.997-64.460 58.997-63.991L58.997-62.760L60.238-62.760Q60.487-62.726 60.516-62.482L60.516-62.389Q60.487-62.145 60.238-62.111M62.537-63.439Q62.537-64.006 63.055-64.335Q63.573-64.665 64.254-64.787Q64.935-64.909 65.535-64.909L65.535-64.992Q65.535-65.402 65.179-65.632Q64.823-65.861 64.383-65.861Q63.934-65.861 63.714-65.822Q63.724-65.822 63.724-65.739Q63.724-65.553 63.587-65.417Q63.450-65.280 63.265-65.280Q63.060-65.280 62.928-65.422Q62.796-65.563 62.796-65.763Q62.796-66.252 63.262-66.381Q63.729-66.510 64.408-66.510Q64.837-66.510 65.272-66.332Q65.706-66.154 65.985-65.817Q66.263-65.480 66.263-65.031L66.263-62.853Q66.263-62.760 66.966-62.760Q67.215-62.731 67.244-62.482L67.244-62.389Q67.215-62.140 66.966-62.111L66.795-62.111Q66.375-62.111 66.090-62.172Q65.804-62.233 65.633-62.453Q65.067-62.052 64.134-62.052Q63.739-62.052 63.367-62.223Q62.996-62.394 62.767-62.709Q62.537-63.024 62.537-63.439M63.265-63.429Q63.265-63.097 63.575-62.900Q63.885-62.702 64.256-62.702Q64.647-62.702 64.964-62.809Q65.125-62.868 65.316-62.995Q65.506-63.122 65.506-63.239Q65.506-63.234 65.521-63.310Q65.535-63.385 65.535-63.429L65.535-64.279Q65.306-64.279 64.925-64.240Q64.544-64.201 64.173-64.111Q63.802-64.020 63.533-63.847Q63.265-63.673 63.265-63.429M69.285-62.111L67.825-62.111Q67.572-62.140 67.542-62.389L67.542-62.482Q67.572-62.731 67.825-62.760L68.353-62.760L69.554-64.333L68.426-65.773L67.884-65.773Q67.635-65.802 67.606-66.051L67.606-66.139Q67.620-66.261 67.689-66.335Q67.757-66.408 67.884-66.423L69.344-66.423Q69.578-66.393 69.622-66.139L69.622-66.051Q69.578-65.802 69.344-65.773L69.154-65.773L69.842-64.840L70.526-65.773L70.316-65.773Q70.076-65.802 70.033-66.051L70.033-66.139Q70.052-66.257 70.128-66.332Q70.203-66.408 70.316-66.423L71.776-66.423Q71.893-66.408 71.966-66.335Q72.039-66.261 72.054-66.139L72.054-66.051Q72.025-65.802 71.776-65.773L71.243-65.773L70.145-64.333L71.375-62.760L71.912-62.760Q72.034-62.746 72.108-62.677Q72.181-62.609 72.196-62.482L72.196-62.389Q72.181-62.272 72.108-62.199Q72.034-62.126 71.912-62.111L70.452-62.111Q70.223-62.140 70.174-62.389L70.174-62.482Q70.218-62.731 70.452-62.760L70.672-62.760L69.842-63.923L69.056-62.760L69.285-62.760Q69.520-62.731 69.564-62.482L69.564-62.389Q69.520-62.140 69.285-62.111\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-24.533 82.723)\">\u003Cpath d=\"M-35.116-61.999Q-35.804-61.999-36.295-62.504Q-36.786-63.009-37.023-63.759Q-37.259-64.508-37.259-65.173Q-37.259-65.832-37.023-66.574Q-36.786-67.316-36.295-67.824Q-35.804-68.332-35.116-68.332Q-34.589-68.332-34.176-68.029Q-33.763-67.726-33.502-67.243Q-33.241-66.759-33.109-66.217Q-32.977-65.675-32.977-65.173Q-32.977-64.665-33.109-64.123Q-33.241-63.581-33.505-63.092Q-33.768-62.604-34.178-62.301Q-34.589-61.999-35.116-61.999M-35.116-62.653Q-34.730-62.653-34.459-62.929Q-34.188-63.205-34.025-63.620Q-33.861-64.035-33.785-64.482Q-33.710-64.928-33.710-65.290Q-33.710-65.612-33.788-66.029Q-33.866-66.447-34.030-66.818Q-34.193-67.189-34.469-67.436Q-34.745-67.682-35.116-67.682Q-35.487-67.682-35.756-67.443Q-36.024-67.204-36.193-66.830Q-36.361-66.457-36.444-66.034Q-36.527-65.612-36.527-65.290Q-36.527-64.811-36.388-64.191Q-36.249-63.571-35.926-63.112Q-35.604-62.653-35.116-62.653M-30.458-62.111L-31.918-62.111Q-32.172-62.140-32.201-62.389L-32.201-62.482Q-32.172-62.731-31.918-62.760L-31.390-62.760L-30.189-64.333L-31.317-65.773L-31.859-65.773Q-32.108-65.802-32.137-66.051L-32.137-66.139Q-32.123-66.261-32.054-66.335Q-31.986-66.408-31.859-66.423L-30.399-66.423Q-30.165-66.393-30.121-66.139L-30.121-66.051Q-30.165-65.802-30.399-65.773L-30.590-65.773L-29.901-64.840L-29.217-65.773L-29.427-65.773Q-29.667-65.802-29.711-66.051L-29.711-66.139Q-29.691-66.257-29.615-66.332Q-29.540-66.408-29.427-66.423L-27.967-66.423Q-27.850-66.408-27.777-66.335Q-27.704-66.261-27.689-66.139L-27.689-66.051Q-27.718-65.802-27.967-65.773L-28.500-65.773L-29.598-64.333L-28.368-62.760L-27.831-62.760Q-27.709-62.746-27.635-62.677Q-27.562-62.609-27.548-62.482L-27.548-62.389Q-27.562-62.272-27.635-62.199Q-27.709-62.126-27.831-62.111L-29.291-62.111Q-29.520-62.140-29.569-62.389L-29.569-62.482Q-29.525-62.731-29.291-62.760L-29.071-62.760L-29.901-63.923L-30.687-62.760L-30.458-62.760Q-30.223-62.731-30.179-62.482L-30.179-62.389Q-30.223-62.140-30.458-62.111M-26.722-62.389L-26.722-62.482Q-26.722-62.599-26.581-62.721L-24.969-64.059Q-24.896-64.118-24.486-64.462Q-24.076-64.806-23.822-65.087Q-23.568-65.368-23.409-65.693Q-23.251-66.017-23.251-66.369Q-23.251-66.789-23.475-67.087Q-23.700-67.384-24.069-67.533Q-24.437-67.682-24.838-67.682Q-25.189-67.682-25.499-67.497Q-25.809-67.311-25.931-66.979Q-25.790-66.847-25.790-66.652Q-25.790-66.466-25.926-66.325Q-26.063-66.183-26.249-66.183Q-26.459-66.183-26.591-66.327Q-26.722-66.471-26.722-66.672Q-26.722-67.160-26.437-67.541Q-26.151-67.922-25.702-68.127Q-25.253-68.332-24.769-68.332Q-24.325-68.332-23.920-68.202Q-23.514-68.073-23.195-67.814Q-22.875-67.555-22.696-67.189Q-22.518-66.823-22.518-66.369Q-22.518-65.802-22.804-65.319Q-23.090-64.836-23.436-64.516Q-23.783-64.196-24.481-63.630L-25.531-62.760L-23.251-62.760L-23.251-62.951Q-23.221-63.200-22.972-63.229L-22.801-63.229Q-22.679-63.215-22.606-63.146Q-22.533-63.078-22.518-62.951L-22.518-62.389Q-22.533-62.272-22.606-62.199Q-22.679-62.126-22.801-62.111L-26.439-62.111Q-26.683-62.140-26.722-62.389M-19.369-61.999Q-20.057-61.999-20.548-62.504Q-21.039-63.009-21.276-63.759Q-21.512-64.508-21.512-65.173Q-21.512-65.832-21.276-66.574Q-21.039-67.316-20.548-67.824Q-20.057-68.332-19.369-68.332Q-18.842-68.332-18.429-68.029Q-18.016-67.726-17.755-67.243Q-17.494-66.759-17.362-66.217Q-17.230-65.675-17.230-65.173Q-17.230-64.665-17.362-64.123Q-17.494-63.581-17.758-63.092Q-18.021-62.604-18.431-62.301Q-18.842-61.999-19.369-61.999M-19.369-62.653Q-18.983-62.653-18.712-62.929Q-18.441-63.205-18.278-63.620Q-18.114-64.035-18.038-64.482Q-17.963-64.928-17.963-65.290Q-17.963-65.612-18.041-66.029Q-18.119-66.447-18.282-66.818Q-18.446-67.189-18.722-67.436Q-18.998-67.682-19.369-67.682Q-19.740-67.682-20.009-67.443Q-20.277-67.204-20.446-66.830Q-20.614-66.457-20.697-66.034Q-20.780-65.612-20.780-65.290Q-20.780-64.811-20.641-64.191Q-20.502-63.571-20.179-63.112Q-19.857-62.653-19.369-62.653\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt10\" font-size=\"10\">\u003Cg transform=\"translate(14.914 82.029)\">\u003Cpath d=\"M-37.020-62.321L-37.020-63.551Q-36.981-63.791-36.747-63.820L-36.556-63.820Q-36.356-63.791-36.298-63.610Q-36.044-62.702-35.077-62.702Q-34.589-62.702-34.193-62.841Q-33.798-62.980-33.798-63.371Q-33.798-63.654-34.088-63.810Q-34.379-63.966-34.730-64.020L-35.609-64.172Q-36.190-64.264-36.605-64.538Q-37.020-64.811-37.020-65.319Q-37.020-65.783-36.717-66.047Q-36.415-66.310-35.968-66.410Q-35.521-66.510-35.077-66.510Q-34.457-66.510-34.066-66.310Q-34.017-66.398-33.961-66.447Q-33.905-66.496-33.798-66.510L-33.719-66.510Q-33.485-66.481-33.446-66.242L-33.446-65.280Q-33.485-65.041-33.719-65.011L-33.910-65.011Q-34.149-65.041-34.178-65.280Q-34.178-65.861-35.096-65.861Q-35.355-65.861-35.641-65.822Q-35.926-65.783-36.146-65.658Q-36.366-65.534-36.366-65.309Q-36.366-64.923-35.497-64.801L-34.608-64.650Q-34.252-64.596-33.915-64.440Q-33.578-64.284-33.363-64.010Q-33.148-63.737-33.148-63.371Q-33.148-62.663-33.727-62.358Q-34.305-62.052-35.077-62.052Q-35.834-62.052-36.327-62.409Q-36.356-62.355-36.403-62.262Q-36.449-62.170-36.508-62.118Q-36.566-62.067-36.659-62.052L-36.747-62.052Q-36.981-62.082-37.020-62.321M-31.537-63.190L-31.537-65.773L-32.108-65.773Q-32.352-65.802-32.391-66.051L-32.391-66.139Q-32.352-66.393-32.108-66.423L-31.088-66.423Q-30.970-66.408-30.897-66.335Q-30.824-66.261-30.809-66.139L-30.809-63.229Q-30.809-62.892-30.597-62.797Q-30.384-62.702-30.009-62.702Q-29.745-62.702-29.493-62.809Q-29.242-62.917-29.086-63.122Q-28.929-63.327-28.929-63.590L-28.929-65.773L-29.501-65.773Q-29.750-65.802-29.779-66.051L-29.779-66.139Q-29.764-66.261-29.691-66.335Q-29.618-66.408-29.501-66.423L-28.480-66.423Q-28.236-66.393-28.197-66.139L-28.197-62.760L-27.631-62.760Q-27.509-62.746-27.435-62.677Q-27.362-62.609-27.347-62.482L-27.347-62.389Q-27.362-62.272-27.435-62.199Q-27.509-62.126-27.631-62.111L-28.651-62.111Q-28.763-62.126-28.846-62.214Q-28.929-62.301-28.929-62.409Q-29.174-62.233-29.471-62.143Q-29.769-62.052-30.077-62.052Q-30.721-62.052-31.129-62.314Q-31.537-62.575-31.537-63.190M-26.288-62.389L-26.288-67.570L-26.859-67.570Q-27.103-67.599-27.142-67.853L-27.142-67.941Q-27.103-68.190-26.859-68.219L-25.839-68.219Q-25.590-68.190-25.560-67.941L-25.560-66.012Q-25.009-66.481-24.291-66.481Q-23.729-66.481-23.280-66.164Q-22.831-65.846-22.584-65.336Q-22.338-64.826-22.338-64.269Q-22.338-63.698-22.609-63.183Q-22.880-62.668-23.356-62.360Q-23.832-62.052-24.408-62.052Q-25.048-62.052-25.560-62.541L-25.560-62.389Q-25.575-62.272-25.648-62.199Q-25.721-62.126-25.839-62.111L-26.009-62.111Q-26.259-62.140-26.288-62.389M-24.462-62.702Q-24.061-62.702-23.741-62.926Q-23.422-63.151-23.246-63.517Q-23.070-63.883-23.070-64.269Q-23.070-64.635-23.229-65.002Q-23.387-65.368-23.680-65.600Q-23.973-65.832-24.359-65.832Q-24.623-65.832-24.874-65.717Q-25.126-65.602-25.306-65.392Q-25.487-65.182-25.560-64.919L-25.560-63.859Q-25.458-63.390-25.179-63.046Q-24.901-62.702-24.462-62.702M-19.110-60.173L-19.110-60.260Q-19.081-60.509-18.832-60.539L-18.221-60.539L-18.221-62.619Q-18.500-62.350-18.844-62.201Q-19.188-62.052-19.569-62.052Q-19.994-62.052-20.375-62.238Q-20.756-62.423-21.027-62.729Q-21.298-63.034-21.454-63.444Q-21.610-63.854-21.610-64.269Q-21.610-64.860-21.324-65.365Q-21.039-65.871-20.543-66.176Q-20.048-66.481-19.452-66.481Q-19.110-66.481-18.790-66.344Q-18.470-66.208-18.221-65.959L-18.221-66.203Q-18.207-66.320-18.134-66.393Q-18.060-66.466-17.943-66.481L-17.772-66.481Q-17.650-66.466-17.577-66.393Q-17.504-66.320-17.489-66.203L-17.489-60.539L-16.879-60.539Q-16.630-60.509-16.600-60.260L-16.600-60.173Q-16.630-59.919-16.879-59.889L-18.832-59.889Q-19.081-59.919-19.110-60.173M-19.510-62.702Q-19.193-62.702-18.922-62.863Q-18.651-63.024-18.475-63.290Q-18.300-63.556-18.221-63.869L-18.221-64.611Q-18.275-64.938-18.431-65.212Q-18.588-65.485-18.834-65.658Q-19.081-65.832-19.403-65.832Q-19.813-65.832-20.150-65.614Q-20.487-65.397-20.685-65.033Q-20.883-64.670-20.883-64.259Q-20.883-63.874-20.709-63.515Q-20.536-63.156-20.218-62.929Q-19.901-62.702-19.510-62.702\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(14.914 82.029)\">\u003Cpath d=\"M-10.619-61.632Q-10.619-61.711-10.590-61.769L-7.787-68.849Q-7.675-69.049-7.469-69.049Q-7.323-69.049-7.220-68.947Q-7.118-68.844-7.118-68.703Q-7.118-68.620-7.147-68.561L-9.950-61.481Q-10.062-61.281-10.267-61.281Q-10.404-61.281-10.511-61.388Q-10.619-61.496-10.619-61.632M-7.469-61.281Q-7.899-61.281-8.119-61.708Q-8.339-62.135-8.339-62.609Q-8.339-63.088-8.121-63.515Q-7.904-63.942-7.469-63.942Q-7.035-63.942-6.818-63.515Q-6.600-63.088-6.600-62.609Q-6.600-62.135-6.820-61.708Q-7.040-61.281-7.469-61.281M-7.479-61.930Q-7.386-61.930-7.323-62.060Q-7.259-62.189-7.228-62.350Q-7.196-62.511-7.196-62.609Q-7.196-62.780-7.267-63.022Q-7.338-63.263-7.460-63.293Q-7.592-63.293-7.665-63.046Q-7.738-62.799-7.738-62.609Q-7.738-62.443-7.672-62.204Q-7.606-61.965-7.479-61.930M-10.267-66.379Q-10.560-66.379-10.760-66.593Q-10.961-66.808-11.049-67.116Q-11.136-67.423-11.136-67.721Q-11.136-68.009-11.049-68.315Q-10.961-68.620-10.760-68.835Q-10.560-69.049-10.267-69.049Q-9.974-69.049-9.774-68.835Q-9.574-68.620-9.486-68.315Q-9.398-68.009-9.398-67.721Q-9.398-67.423-9.486-67.116Q-9.574-66.808-9.774-66.593Q-9.974-66.379-10.267-66.379M-10.277-67.033L-10.248-67.033Q-10.140-67.043-10.070-67.294Q-9.999-67.546-9.999-67.721Q-9.999-67.917-10.065-68.141Q-10.131-68.366-10.258-68.400L-10.267-68.400L-10.277-68.400Q-10.399-68.385-10.467-68.139Q-10.536-67.892-10.536-67.721Q-10.536-67.546-10.470-67.306Q-10.404-67.067-10.277-67.033M-2.758-62.111L-5.658-62.111Q-5.902-62.140-5.941-62.389L-5.941-62.482Q-5.902-62.731-5.658-62.760L-4.730-62.760L-4.730-65.773L-5.658-65.773Q-5.902-65.802-5.941-66.051L-5.941-66.139Q-5.902-66.393-5.658-66.423L-4.281-66.423Q-4.159-66.408-4.086-66.335Q-4.012-66.261-3.998-66.139L-3.998-65.700Q-3.798-65.934-3.527-66.115Q-3.256-66.296-2.938-66.388Q-2.621-66.481-2.308-66.481Q-1.942-66.481-1.656-66.330Q-1.371-66.178-1.371-65.851Q-1.371-65.661-1.493-65.527Q-1.615-65.392-1.810-65.392Q-1.991-65.392-2.120-65.517Q-2.250-65.641-2.250-65.832L-2.318-65.832Q-2.797-65.832-3.182-65.573Q-3.568-65.314-3.783-64.887Q-3.998-64.460-3.998-63.991L-3.998-62.760L-2.758-62.760Q-2.509-62.726-2.479-62.482L-2.479-62.389Q-2.509-62.145-2.758-62.111M-0.550-63.869Q-0.550-64.240-0.350-64.557Q-0.150-64.875 0.167-65.090Q0.485-65.304 0.851-65.412Q0.548-65.495 0.253-65.675Q-0.043-65.856-0.226-66.125Q-0.409-66.393-0.409-66.711Q-0.409-67.091-0.231-67.392Q-0.052-67.692 0.260-67.907Q0.573-68.122 0.919-68.227Q1.266-68.332 1.632-68.332Q1.998-68.332 2.350-68.224Q2.701-68.117 3.004-67.909Q3.307-67.702 3.488-67.397Q3.668-67.091 3.668-66.711Q3.668-66.237 3.292-65.895Q2.916-65.553 2.408-65.412Q2.789-65.299 3.099-65.087Q3.409-64.875 3.610-64.557Q3.810-64.240 3.810-63.869Q3.810-63.449 3.629-63.110Q3.449-62.770 3.126-62.514Q2.804-62.257 2.421-62.128Q2.037-61.999 1.632-61.999Q1.090-61.999 0.587-62.233Q0.084-62.467-0.233-62.897Q-0.550-63.327-0.550-63.869M0.182-63.869Q0.182-63.507 0.394-63.229Q0.607-62.951 0.941-62.802Q1.276-62.653 1.632-62.653Q1.984-62.653 2.318-62.802Q2.653-62.951 2.867-63.229Q3.082-63.507 3.082-63.869Q3.082-64.137 2.958-64.369Q2.833-64.601 2.626-64.755Q2.418-64.909 2.152-64.994Q1.886-65.080 1.632-65.080Q1.276-65.080 0.941-64.931Q0.607-64.782 0.394-64.508Q0.182-64.235 0.182-63.869M0.319-66.711Q0.319-66.257 0.736-65.993Q1.154-65.729 1.632-65.729Q2.106-65.729 2.523-65.990Q2.941-66.252 2.941-66.711Q2.941-67.160 2.528-67.421Q2.116-67.682 1.632-67.682Q1.325-67.682 1.024-67.570Q0.724-67.458 0.521-67.238Q0.319-67.018 0.319-66.711M6.437-60.719L6.378-60.719Q6.256-60.719 6.154-60.827Q6.051-60.934 6.051-61.061Q6.051-61.271 6.261-61.340Q6.554-61.413 6.771-61.625Q6.989-61.838 7.057-62.131L6.998-62.121L6.969-62.111L6.891-62.111Q6.617-62.111 6.429-62.299Q6.241-62.487 6.241-62.760Q6.241-63.029 6.432-63.215Q6.622-63.400 6.891-63.400Q7.140-63.400 7.338-63.254Q7.535-63.107 7.638-62.878Q7.741-62.648 7.741-62.389Q7.741-61.794 7.382-61.347Q7.023-60.900 6.437-60.719M10.377-61.632Q10.377-61.711 10.407-61.769L13.209-68.849Q13.322-69.049 13.527-69.049Q13.673-69.049 13.776-68.947Q13.878-68.844 13.878-68.703Q13.878-68.620 13.849-68.561L11.046-61.481Q10.934-61.281 10.729-61.281Q10.592-61.281 10.485-61.388Q10.377-61.496 10.377-61.632M13.527-61.281Q13.097-61.281 12.877-61.708Q12.658-62.135 12.658-62.609Q12.658-63.088 12.875-63.515Q13.092-63.942 13.527-63.942Q13.961-63.942 14.179-63.515Q14.396-63.088 14.396-62.609Q14.396-62.135 14.176-61.708Q13.956-61.281 13.527-61.281M13.517-61.930Q13.610-61.930 13.673-62.060Q13.737-62.189 13.768-62.350Q13.800-62.511 13.800-62.609Q13.800-62.780 13.729-63.022Q13.658-63.263 13.536-63.293Q13.405-63.293 13.331-63.046Q13.258-62.799 13.258-62.609Q13.258-62.443 13.324-62.204Q13.390-61.965 13.517-61.930M10.729-66.379Q10.436-66.379 10.236-66.593Q10.035-66.808 9.948-67.116Q9.860-67.423 9.860-67.721Q9.860-68.009 9.948-68.315Q10.035-68.620 10.236-68.835Q10.436-69.049 10.729-69.049Q11.022-69.049 11.222-68.835Q11.422-68.620 11.510-68.315Q11.598-68.009 11.598-67.721Q11.598-67.423 11.510-67.116Q11.422-66.808 11.222-66.593Q11.022-66.379 10.729-66.379M10.719-67.033L10.748-67.033Q10.856-67.043 10.927-67.294Q10.997-67.546 10.997-67.721Q10.997-67.917 10.931-68.141Q10.866-68.366 10.739-68.400L10.729-68.400L10.719-68.400Q10.597-68.385 10.529-68.139Q10.460-67.892 10.460-67.721Q10.460-67.546 10.526-67.306Q10.592-67.067 10.719-67.033M18.239-62.111L15.338-62.111Q15.094-62.140 15.055-62.389L15.055-62.482Q15.094-62.731 15.338-62.760L16.266-62.760L16.266-65.773L15.338-65.773Q15.094-65.802 15.055-66.051L15.055-66.139Q15.094-66.393 15.338-66.423L16.715-66.423Q16.837-66.408 16.910-66.335Q16.984-66.261 16.998-66.139L16.998-65.700Q17.199-65.934 17.470-66.115Q17.741-66.296 18.058-66.388Q18.375-66.481 18.688-66.481Q19.054-66.481 19.340-66.330Q19.625-66.178 19.625-65.851Q19.625-65.661 19.503-65.527Q19.381-65.392 19.186-65.392Q19.005-65.392 18.876-65.517Q18.746-65.641 18.746-65.832L18.678-65.832Q18.200-65.832 17.814-65.573Q17.428-65.314 17.213-64.887Q16.998-64.460 16.998-63.991L16.998-62.760L18.239-62.760Q18.488-62.726 18.517-62.482L18.517-62.389Q18.488-62.145 18.239-62.111M22.306-62.052Q21.871-62.052 21.512-62.238Q21.154-62.423 20.892-62.741Q20.631-63.058 20.490-63.456Q20.348-63.854 20.348-64.269Q20.348-64.694 20.499-65.092Q20.651-65.490 20.936-65.807Q21.222-66.125 21.600-66.303Q21.979-66.481 22.408-66.481Q23.058-66.481 23.566-66.051L23.566-67.570L22.994-67.570Q22.745-67.599 22.716-67.853L22.716-67.941Q22.745-68.190 22.994-68.219L24.015-68.219Q24.259-68.190 24.298-67.941L24.298-62.760L24.865-62.760Q24.987-62.746 25.060-62.677Q25.133-62.609 25.148-62.482L25.148-62.389Q25.133-62.272 25.060-62.199Q24.987-62.126 24.865-62.111L23.844-62.111Q23.727-62.126 23.654-62.199Q23.580-62.272 23.566-62.389L23.566-62.590Q23.004-62.052 22.306-62.052M22.365-62.702Q22.819-62.702 23.141-63.058Q23.463-63.415 23.566-63.893L23.566-64.943Q23.458-65.319 23.156-65.575Q22.853-65.832 22.467-65.832Q22.067-65.832 21.747-65.607Q21.427-65.382 21.251-65.014Q21.075-64.645 21.075-64.259Q21.075-63.898 21.234-63.529Q21.393-63.161 21.686-62.931Q21.979-62.702 22.365-62.702M26.017-62.389L26.017-62.482Q26.046-62.731 26.295-62.760L27.633-62.760L27.633-65.773L26.373-65.773Q26.124-65.807 26.095-66.051L26.095-66.139Q26.110-66.257 26.185-66.332Q26.261-66.408 26.373-66.423L28.087-66.423Q28.204-66.408 28.278-66.335Q28.351-66.261 28.366-66.139L28.366-62.760L29.547-62.760Q29.782-62.731 29.825-62.482L29.825-62.389Q29.782-62.140 29.547-62.111L26.295-62.111Q26.046-62.140 26.017-62.389M27.325-67.712Q27.325-67.926 27.477-68.078Q27.628-68.229 27.843-68.229Q28.063-68.229 28.214-68.078Q28.366-67.926 28.366-67.712Q28.366-67.502 28.209-67.345Q28.053-67.189 27.843-67.189Q27.638-67.189 27.482-67.345Q27.325-67.502 27.325-67.712\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-24.533 102.64)\">\u003Cpath d=\"M-35.116-61.999Q-35.804-61.999-36.295-62.504Q-36.786-63.009-37.023-63.759Q-37.259-64.508-37.259-65.173Q-37.259-65.832-37.023-66.574Q-36.786-67.316-36.295-67.824Q-35.804-68.332-35.116-68.332Q-34.589-68.332-34.176-68.029Q-33.763-67.726-33.502-67.243Q-33.241-66.759-33.109-66.217Q-32.977-65.675-32.977-65.173Q-32.977-64.665-33.109-64.123Q-33.241-63.581-33.505-63.092Q-33.768-62.604-34.178-62.301Q-34.589-61.999-35.116-61.999M-35.116-62.653Q-34.730-62.653-34.459-62.929Q-34.188-63.205-34.025-63.620Q-33.861-64.035-33.785-64.482Q-33.710-64.928-33.710-65.290Q-33.710-65.612-33.788-66.029Q-33.866-66.447-34.030-66.818Q-34.193-67.189-34.469-67.436Q-34.745-67.682-35.116-67.682Q-35.487-67.682-35.756-67.443Q-36.024-67.204-36.193-66.830Q-36.361-66.457-36.444-66.034Q-36.527-65.612-36.527-65.290Q-36.527-64.811-36.388-64.191Q-36.249-63.571-35.926-63.112Q-35.604-62.653-35.116-62.653M-30.458-62.111L-31.918-62.111Q-32.172-62.140-32.201-62.389L-32.201-62.482Q-32.172-62.731-31.918-62.760L-31.390-62.760L-30.189-64.333L-31.317-65.773L-31.859-65.773Q-32.108-65.802-32.137-66.051L-32.137-66.139Q-32.123-66.261-32.054-66.335Q-31.986-66.408-31.859-66.423L-30.399-66.423Q-30.165-66.393-30.121-66.139L-30.121-66.051Q-30.165-65.802-30.399-65.773L-30.590-65.773L-29.901-64.840L-29.217-65.773L-29.427-65.773Q-29.667-65.802-29.711-66.051L-29.711-66.139Q-29.691-66.257-29.615-66.332Q-29.540-66.408-29.427-66.423L-27.967-66.423Q-27.850-66.408-27.777-66.335Q-27.704-66.261-27.689-66.139L-27.689-66.051Q-27.718-65.802-27.967-65.773L-28.500-65.773L-29.598-64.333L-28.368-62.760L-27.831-62.760Q-27.709-62.746-27.635-62.677Q-27.562-62.609-27.548-62.482L-27.548-62.389Q-27.562-62.272-27.635-62.199Q-27.709-62.126-27.831-62.111L-29.291-62.111Q-29.520-62.140-29.569-62.389L-29.569-62.482Q-29.525-62.731-29.291-62.760L-29.071-62.760L-29.901-63.923L-30.687-62.760L-30.458-62.760Q-30.223-62.731-30.179-62.482L-30.179-62.389Q-30.223-62.140-30.458-62.111M-26.722-62.389L-26.722-62.482Q-26.722-62.599-26.581-62.721L-24.969-64.059Q-24.896-64.118-24.486-64.462Q-24.076-64.806-23.822-65.087Q-23.568-65.368-23.409-65.693Q-23.251-66.017-23.251-66.369Q-23.251-66.789-23.475-67.087Q-23.700-67.384-24.069-67.533Q-24.437-67.682-24.838-67.682Q-25.189-67.682-25.499-67.497Q-25.809-67.311-25.931-66.979Q-25.790-66.847-25.790-66.652Q-25.790-66.466-25.926-66.325Q-26.063-66.183-26.249-66.183Q-26.459-66.183-26.591-66.327Q-26.722-66.471-26.722-66.672Q-26.722-67.160-26.437-67.541Q-26.151-67.922-25.702-68.127Q-25.253-68.332-24.769-68.332Q-24.325-68.332-23.920-68.202Q-23.514-68.073-23.195-67.814Q-22.875-67.555-22.696-67.189Q-22.518-66.823-22.518-66.369Q-22.518-65.802-22.804-65.319Q-23.090-64.836-23.436-64.516Q-23.783-64.196-24.481-63.630L-25.531-62.760L-23.251-62.760L-23.251-62.951Q-23.221-63.200-22.972-63.229L-22.801-63.229Q-22.679-63.215-22.606-63.146Q-22.533-63.078-22.518-62.951L-22.518-62.389Q-22.533-62.272-22.606-62.199Q-22.679-62.126-22.801-62.111L-26.439-62.111Q-26.683-62.140-26.722-62.389M-21.473-62.389L-21.473-62.482Q-21.473-62.599-21.332-62.721L-19.720-64.059Q-19.647-64.118-19.237-64.462Q-18.827-64.806-18.573-65.087Q-18.319-65.368-18.160-65.693Q-18.002-66.017-18.002-66.369Q-18.002-66.789-18.226-67.087Q-18.451-67.384-18.820-67.533Q-19.188-67.682-19.589-67.682Q-19.940-67.682-20.250-67.497Q-20.560-67.311-20.682-66.979Q-20.541-66.847-20.541-66.652Q-20.541-66.466-20.677-66.325Q-20.814-66.183-21-66.183Q-21.210-66.183-21.342-66.327Q-21.473-66.471-21.473-66.672Q-21.473-67.160-21.188-67.541Q-20.902-67.922-20.453-68.127Q-20.004-68.332-19.520-68.332Q-19.076-68.332-18.671-68.202Q-18.265-68.073-17.946-67.814Q-17.626-67.555-17.447-67.189Q-17.269-66.823-17.269-66.369Q-17.269-65.802-17.555-65.319Q-17.841-64.836-18.187-64.516Q-18.534-64.196-19.232-63.630L-20.282-62.760L-18.002-62.760L-18.002-62.951Q-17.972-63.200-17.723-63.229L-17.552-63.229Q-17.430-63.215-17.357-63.146Q-17.284-63.078-17.269-62.951L-17.269-62.389Q-17.284-62.272-17.357-62.199Q-17.430-62.126-17.552-62.111L-21.190-62.111Q-21.434-62.140-21.473-62.389\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt10\" font-size=\"10\">\u003Cg transform=\"translate(14.914 101.529)\">\u003Cpath d=\"M-37.259-60.602Q-37.259-60.807-37.128-60.949Q-36.996-61.090-36.786-61.090Q-36.600-61.090-36.464-60.954Q-36.327-60.817-36.327-60.622Q-36.327-60.592-36.329-60.570Q-36.332-60.548-36.337-60.519Q-36.127-60.480-35.697-60.480Q-35.258-60.480-35.013-60.851Q-34.769-61.222-34.769-61.691L-34.769-65.773L-36.190-65.773Q-36.439-65.802-36.468-66.051L-36.468-66.139Q-36.454-66.261-36.381-66.335Q-36.307-66.408-36.190-66.423L-34.320-66.423Q-34.198-66.408-34.125-66.335Q-34.051-66.261-34.037-66.139L-34.037-61.652Q-34.037-61.305-34.156-60.981Q-34.276-60.656-34.510-60.390Q-34.745-60.124-35.052-59.977Q-35.360-59.831-35.717-59.831Q-36.132-59.831-36.446-59.870Q-36.761-59.909-37.010-60.077Q-37.259-60.246-37.259-60.602M-35.077-67.712Q-35.077-67.926-34.925-68.078Q-34.774-68.229-34.559-68.229Q-34.340-68.229-34.188-68.078Q-34.037-67.926-34.037-67.712Q-34.037-67.502-34.193-67.345Q-34.349-67.189-34.559-67.189Q-34.764-67.189-34.921-67.345Q-35.077-67.502-35.077-67.712M-32.391-62.389L-32.391-62.482Q-32.352-62.731-32.108-62.760L-31.537-62.760L-31.537-65.773L-32.108-65.773Q-32.352-65.802-32.391-66.051L-32.391-66.139Q-32.352-66.393-32.108-66.423L-31.088-66.423Q-30.970-66.408-30.897-66.335Q-30.824-66.261-30.809-66.139L-30.809-65.973Q-30.550-66.217-30.209-66.349Q-29.867-66.481-29.501-66.481Q-28.842-66.481-28.519-66.093Q-28.197-65.705-28.197-65.031L-28.197-62.760L-27.631-62.760Q-27.509-62.746-27.435-62.677Q-27.362-62.609-27.347-62.482L-27.347-62.389Q-27.362-62.272-27.435-62.199Q-27.509-62.126-27.631-62.111L-29.408-62.111Q-29.652-62.140-29.691-62.389L-29.691-62.482Q-29.652-62.731-29.408-62.760L-28.929-62.760L-28.929-64.992Q-28.929-65.412-29.054-65.622Q-29.178-65.832-29.569-65.832Q-29.901-65.832-30.192-65.656Q-30.482-65.480-30.646-65.187Q-30.809-64.894-30.809-64.552L-30.809-62.760L-30.238-62.760Q-29.989-62.731-29.960-62.482L-29.960-62.389Q-29.989-62.140-30.238-62.111L-32.108-62.111Q-32.352-62.140-32.391-62.389M-22.880-64.001L-25.951-64.001Q-25.843-63.429-25.375-63.066Q-24.906-62.702-24.310-62.702Q-23.998-62.702-23.717-62.846Q-23.436-62.990-23.329-63.249Q-23.251-63.478-23.050-63.503L-22.880-63.503Q-22.753-63.488-22.677-63.403Q-22.601-63.317-22.601-63.200Q-22.601-63.171-22.604-63.153Q-22.606-63.136-22.611-63.112Q-22.801-62.585-23.297-62.319Q-23.793-62.052-24.388-62.052Q-24.994-62.052-25.533-62.348Q-26.073-62.643-26.390-63.151Q-26.708-63.659-26.708-64.279Q-26.708-64.728-26.542-65.129Q-26.376-65.529-26.080-65.844Q-25.785-66.159-25.387-66.335Q-24.989-66.510-24.540-66.510Q-23.915-66.510-23.475-66.225Q-23.036-65.939-22.819-65.444Q-22.601-64.948-22.601-64.323Q-22.601-64.191-22.679-64.103Q-22.758-64.015-22.880-64.001M-25.941-64.640L-23.348-64.640Q-23.387-64.992-23.529-65.268Q-23.671-65.544-23.925-65.702Q-24.178-65.861-24.540-65.861Q-24.872-65.861-25.172-65.695Q-25.472-65.529-25.675-65.246Q-25.878-64.963-25.941-64.640\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(14.914 101.529)\">\u003Cpath d=\"M-14.116-61.999Q-14.804-61.999-15.295-62.504Q-15.786-63.009-16.023-63.759Q-16.259-64.508-16.259-65.173Q-16.259-65.832-16.023-66.574Q-15.786-67.316-15.295-67.824Q-14.804-68.332-14.116-68.332Q-13.589-68.332-13.176-68.029Q-12.763-67.726-12.502-67.243Q-12.241-66.759-12.109-66.217Q-11.977-65.675-11.977-65.173Q-11.977-64.665-12.109-64.123Q-12.241-63.581-12.505-63.092Q-12.768-62.604-13.178-62.301Q-13.589-61.999-14.116-61.999M-14.116-62.653Q-13.730-62.653-13.459-62.929Q-13.188-63.205-13.025-63.620Q-12.861-64.035-12.785-64.482Q-12.710-64.928-12.710-65.290Q-12.710-65.612-12.788-66.029Q-12.866-66.447-13.030-66.818Q-13.193-67.189-13.469-67.436Q-13.745-67.682-14.116-67.682Q-14.487-67.682-14.756-67.443Q-15.024-67.204-15.193-66.830Q-15.361-66.457-15.444-66.034Q-15.527-65.612-15.527-65.290Q-15.527-64.811-15.388-64.191Q-15.249-63.571-14.926-63.112Q-14.604-62.653-14.116-62.653M-9.458-62.111L-10.918-62.111Q-11.172-62.140-11.201-62.389L-11.201-62.482Q-11.172-62.731-10.918-62.760L-10.390-62.760L-9.189-64.333L-10.317-65.773L-10.859-65.773Q-11.108-65.802-11.137-66.051L-11.137-66.139Q-11.123-66.261-11.054-66.335Q-10.986-66.408-10.859-66.423L-9.399-66.423Q-9.165-66.393-9.121-66.139L-9.121-66.051Q-9.165-65.802-9.399-65.773L-9.590-65.773L-8.901-64.840L-8.217-65.773L-8.427-65.773Q-8.667-65.802-8.711-66.051L-8.711-66.139Q-8.691-66.257-8.615-66.332Q-8.540-66.408-8.427-66.423L-6.967-66.423Q-6.850-66.408-6.777-66.335Q-6.704-66.261-6.689-66.139L-6.689-66.051Q-6.718-65.802-6.967-65.773L-7.500-65.773L-8.598-64.333L-7.368-62.760L-6.831-62.760Q-6.709-62.746-6.635-62.677Q-6.562-62.609-6.548-62.482L-6.548-62.389Q-6.562-62.272-6.635-62.199Q-6.709-62.126-6.831-62.111L-8.291-62.111Q-8.520-62.140-8.569-62.389L-8.569-62.482Q-8.525-62.731-8.291-62.760L-8.071-62.760L-8.901-63.923L-9.687-62.760L-9.458-62.760Q-9.223-62.731-9.179-62.482L-9.179-62.389Q-9.223-62.140-9.458-62.111M-5.151-62.389L-5.151-62.482Q-5.122-62.731-4.868-62.760L-3.838-62.760L-3.838-66.882Q-4.331-66.462-4.892-66.462Q-5.009-66.462-5.102-66.537Q-5.195-66.613-5.210-66.740L-5.210-66.833Q-5.175-67.082-4.931-67.111Q-4.516-67.111-4.199-67.421Q-3.882-67.731-3.720-68.151Q-3.642-68.302-3.462-68.332L-3.388-68.332Q-3.271-68.317-3.198-68.244Q-3.125-68.171-3.110-68.053L-3.110-62.760L-2.080-62.760Q-1.831-62.731-1.801-62.482L-1.801-62.389Q-1.831-62.140-2.080-62.111L-4.868-62.111Q-5.122-62.140-5.151-62.389M3.369-64.001L0.298-64.001Q0.406-63.429 0.874-63.066Q1.343-62.702 1.939-62.702Q2.251-62.702 2.532-62.846Q2.813-62.990 2.920-63.249Q2.998-63.478 3.199-63.503L3.369-63.503Q3.496-63.488 3.572-63.403Q3.648-63.317 3.648-63.200Q3.648-63.171 3.645-63.153Q3.643-63.136 3.638-63.112Q3.448-62.585 2.952-62.319Q2.456-62.052 1.861-62.052Q1.255-62.052 0.716-62.348Q0.176-62.643-0.141-63.151Q-0.459-63.659-0.459-64.279Q-0.459-64.728-0.293-65.129Q-0.127-65.529 0.169-65.844Q0.464-66.159 0.862-66.335Q1.260-66.510 1.709-66.510Q2.334-66.510 2.774-66.225Q3.213-65.939 3.430-65.444Q3.648-64.948 3.648-64.323Q3.648-64.191 3.570-64.103Q3.491-64.015 3.369-64.001M0.308-64.640L2.901-64.640Q2.862-64.992 2.720-65.268Q2.578-65.544 2.325-65.702Q2.071-65.861 1.709-65.861Q1.377-65.861 1.077-65.695Q0.777-65.529 0.574-65.246Q0.371-64.963 0.308-64.640\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-24.533 122.557)\">\u003Cpath d=\"M-35.116-61.999Q-35.804-61.999-36.295-62.504Q-36.786-63.009-37.023-63.759Q-37.259-64.508-37.259-65.173Q-37.259-65.832-37.023-66.574Q-36.786-67.316-36.295-67.824Q-35.804-68.332-35.116-68.332Q-34.589-68.332-34.176-68.029Q-33.763-67.726-33.502-67.243Q-33.241-66.759-33.109-66.217Q-32.977-65.675-32.977-65.173Q-32.977-64.665-33.109-64.123Q-33.241-63.581-33.505-63.092Q-33.768-62.604-34.178-62.301Q-34.589-61.999-35.116-61.999M-35.116-62.653Q-34.730-62.653-34.459-62.929Q-34.188-63.205-34.025-63.620Q-33.861-64.035-33.785-64.482Q-33.710-64.928-33.710-65.290Q-33.710-65.612-33.788-66.029Q-33.866-66.447-34.030-66.818Q-34.193-67.189-34.469-67.436Q-34.745-67.682-35.116-67.682Q-35.487-67.682-35.756-67.443Q-36.024-67.204-36.193-66.830Q-36.361-66.457-36.444-66.034Q-36.527-65.612-36.527-65.290Q-36.527-64.811-36.388-64.191Q-36.249-63.571-35.926-63.112Q-35.604-62.653-35.116-62.653M-30.458-62.111L-31.918-62.111Q-32.172-62.140-32.201-62.389L-32.201-62.482Q-32.172-62.731-31.918-62.760L-31.390-62.760L-30.189-64.333L-31.317-65.773L-31.859-65.773Q-32.108-65.802-32.137-66.051L-32.137-66.139Q-32.123-66.261-32.054-66.335Q-31.986-66.408-31.859-66.423L-30.399-66.423Q-30.165-66.393-30.121-66.139L-30.121-66.051Q-30.165-65.802-30.399-65.773L-30.590-65.773L-29.901-64.840L-29.217-65.773L-29.427-65.773Q-29.667-65.802-29.711-66.051L-29.711-66.139Q-29.691-66.257-29.615-66.332Q-29.540-66.408-29.427-66.423L-27.967-66.423Q-27.850-66.408-27.777-66.335Q-27.704-66.261-27.689-66.139L-27.689-66.051Q-27.718-65.802-27.967-65.773L-28.500-65.773L-29.598-64.333L-28.368-62.760L-27.831-62.760Q-27.709-62.746-27.635-62.677Q-27.562-62.609-27.548-62.482L-27.548-62.389Q-27.562-62.272-27.635-62.199Q-27.709-62.126-27.831-62.111L-29.291-62.111Q-29.520-62.140-29.569-62.389L-29.569-62.482Q-29.525-62.731-29.291-62.760L-29.071-62.760L-29.901-63.923L-30.687-62.760L-30.458-62.760Q-30.223-62.731-30.179-62.482L-30.179-62.389Q-30.223-62.140-30.458-62.111M-26.722-62.389L-26.722-62.482Q-26.722-62.599-26.581-62.721L-24.969-64.059Q-24.896-64.118-24.486-64.462Q-24.076-64.806-23.822-65.087Q-23.568-65.368-23.409-65.693Q-23.251-66.017-23.251-66.369Q-23.251-66.789-23.475-67.087Q-23.700-67.384-24.069-67.533Q-24.437-67.682-24.838-67.682Q-25.189-67.682-25.499-67.497Q-25.809-67.311-25.931-66.979Q-25.790-66.847-25.790-66.652Q-25.790-66.466-25.926-66.325Q-26.063-66.183-26.249-66.183Q-26.459-66.183-26.591-66.327Q-26.722-66.471-26.722-66.672Q-26.722-67.160-26.437-67.541Q-26.151-67.922-25.702-68.127Q-25.253-68.332-24.769-68.332Q-24.325-68.332-23.920-68.202Q-23.514-68.073-23.195-67.814Q-22.875-67.555-22.696-67.189Q-22.518-66.823-22.518-66.369Q-22.518-65.802-22.804-65.319Q-23.090-64.836-23.436-64.516Q-23.783-64.196-24.481-63.630L-25.531-62.760L-23.251-62.760L-23.251-62.951Q-23.221-63.200-22.972-63.229L-22.801-63.229Q-22.679-63.215-22.606-63.146Q-22.533-63.078-22.518-62.951L-22.518-62.389Q-22.533-62.272-22.606-62.199Q-22.679-62.126-22.801-62.111L-26.439-62.111Q-26.683-62.140-26.722-62.389M-21.039-62.389L-21.039-67.570L-21.610-67.570Q-21.854-67.599-21.893-67.853L-21.893-67.941Q-21.854-68.190-21.610-68.219L-20.590-68.219Q-20.341-68.190-20.311-67.941L-20.311-66.012Q-19.759-66.481-19.042-66.481Q-18.480-66.481-18.031-66.164Q-17.582-65.846-17.335-65.336Q-17.089-64.826-17.089-64.269Q-17.089-63.698-17.360-63.183Q-17.631-62.668-18.107-62.360Q-18.583-62.052-19.159-62.052Q-19.799-62.052-20.311-62.541L-20.311-62.389Q-20.326-62.272-20.399-62.199Q-20.472-62.126-20.590-62.111L-20.760-62.111Q-21.009-62.140-21.039-62.389M-19.213-62.702Q-18.812-62.702-18.492-62.926Q-18.173-63.151-17.997-63.517Q-17.821-63.883-17.821-64.269Q-17.821-64.635-17.980-65.002Q-18.138-65.368-18.431-65.600Q-18.724-65.832-19.110-65.832Q-19.374-65.832-19.625-65.717Q-19.877-65.602-20.057-65.392Q-20.238-65.182-20.311-64.919L-20.311-63.859Q-20.209-63.390-19.930-63.046Q-19.652-62.702-19.213-62.702\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(14.914 122.557)\">\u003Cpath d=\"M-37.640-62.389L-37.640-62.482Q-37.601-62.731-37.357-62.760L-36.786-62.760L-36.786-67.570L-37.357-67.570Q-37.601-67.599-37.640-67.853L-37.640-67.941Q-37.601-68.190-37.357-68.219L-36.337-68.219Q-36.088-68.190-36.058-67.941L-36.058-65.973Q-35.800-66.217-35.458-66.349Q-35.116-66.481-34.750-66.481Q-34.091-66.481-33.768-66.093Q-33.446-65.705-33.446-65.031L-33.446-62.760L-32.880-62.760Q-32.758-62.746-32.684-62.677Q-32.611-62.609-32.596-62.482L-32.596-62.389Q-32.611-62.272-32.684-62.199Q-32.758-62.126-32.880-62.111L-34.657-62.111Q-34.901-62.140-34.940-62.389L-34.940-62.482Q-34.901-62.731-34.657-62.760L-34.178-62.760L-34.178-64.992Q-34.178-65.412-34.303-65.622Q-34.427-65.832-34.818-65.832Q-35.150-65.832-35.441-65.656Q-35.731-65.480-35.895-65.187Q-36.058-64.894-36.058-64.552L-36.058-62.760L-35.487-62.760Q-35.238-62.731-35.209-62.482L-35.209-62.389Q-35.238-62.140-35.487-62.111L-37.357-62.111Q-37.601-62.140-37.640-62.389M-31.957-63.439Q-31.957-64.006-31.439-64.335Q-30.922-64.665-30.240-64.787Q-29.559-64.909-28.959-64.909L-28.959-64.992Q-28.959-65.402-29.315-65.632Q-29.672-65.861-30.111-65.861Q-30.560-65.861-30.780-65.822Q-30.770-65.822-30.770-65.739Q-30.770-65.553-30.907-65.417Q-31.044-65.280-31.229-65.280Q-31.434-65.280-31.566-65.422Q-31.698-65.563-31.698-65.763Q-31.698-66.252-31.232-66.381Q-30.765-66.510-30.087-66.510Q-29.657-66.510-29.222-66.332Q-28.788-66.154-28.509-65.817Q-28.231-65.480-28.231-65.031L-28.231-62.853Q-28.231-62.760-27.528-62.760Q-27.279-62.731-27.250-62.482L-27.250-62.389Q-27.279-62.140-27.528-62.111L-27.699-62.111Q-28.119-62.111-28.405-62.172Q-28.690-62.233-28.861-62.453Q-29.427-62.052-30.360-62.052Q-30.756-62.052-31.127-62.223Q-31.498-62.394-31.727-62.709Q-31.957-63.024-31.957-63.439M-31.229-63.429Q-31.229-63.097-30.919-62.900Q-30.609-62.702-30.238-62.702Q-29.847-62.702-29.530-62.809Q-29.369-62.868-29.178-62.995Q-28.988-63.122-28.988-63.239Q-28.988-63.234-28.973-63.310Q-28.959-63.385-28.959-63.429L-28.959-64.279Q-29.188-64.279-29.569-64.240Q-29.950-64.201-30.321-64.111Q-30.692-64.020-30.961-63.847Q-31.229-63.673-31.229-63.429M-26.678-62.389L-26.678-62.482Q-26.649-62.731-26.400-62.760L-24.979-62.760L-24.979-67.570L-26.400-67.570Q-26.649-67.599-26.678-67.853L-26.678-67.941Q-26.649-68.190-26.400-68.219L-24.530-68.219Q-24.281-68.190-24.252-67.941L-24.252-62.760L-22.831-62.760Q-22.587-62.731-22.548-62.482L-22.548-62.389Q-22.587-62.140-22.831-62.111L-26.400-62.111Q-26.649-62.140-26.678-62.389M-20.482-63.390L-20.482-65.773L-21.459-65.773Q-21.713-65.802-21.742-66.051L-21.742-66.139Q-21.713-66.393-21.459-66.423L-20.482-66.423L-20.482-67.370Q-20.453-67.614-20.199-67.653L-20.033-67.653Q-19.779-67.614-19.750-67.370L-19.750-66.423L-18.011-66.423Q-17.889-66.408-17.819-66.335Q-17.748-66.261-17.733-66.139L-17.733-66.051Q-17.762-65.802-18.011-65.773L-19.750-65.773L-19.750-63.429Q-19.750-62.702-18.993-62.702Q-18.685-62.702-18.458-62.912Q-18.231-63.122-18.231-63.429L-18.231-63.483Q-18.217-63.600-18.143-63.673Q-18.070-63.747-17.953-63.761L-17.782-63.761Q-17.538-63.732-17.499-63.483L-17.499-63.390Q-17.499-62.990-17.726-62.685Q-17.953-62.380-18.309-62.216Q-18.666-62.052-19.061-62.052Q-19.476-62.052-19.794-62.211Q-20.111-62.370-20.297-62.675Q-20.482-62.980-20.482-63.390\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-64.768-72.07V67.349\"\u002F>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The byte layout of sum.ys from address 0. The three irmovq each take 10 bytes, so the loop body starts at 0x1e; addq and subq are 2 bytes each, jne is 9, and halt is 1. The jne destination is the loop label, 0x1e.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:540.302px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 405.227 90.424\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-68.737-54.056h395.494\"\u002F>\u003Cg transform=\"translate(-2.157 -23.31)\">\u003Cpath d=\"M-59.873-42.807Q-59.873-43.207-59.717-43.511Q-59.562-43.815-59.285-44.021Q-59.008-44.226-58.668-44.325Q-58.328-44.424-57.938-44.424Q-57.368-44.424-56.961-44.291Q-56.554-44.157-56.554-43.710Q-56.554-43.504-56.698-43.357Q-56.841-43.210-57.050-43.210Q-57.265-43.210-57.410-43.356Q-57.555-43.501-57.555-43.710Q-57.555-43.887-57.463-44.010Q-57.658-44.038-57.931-44.038Q-58.219-44.038-58.401-43.942Q-58.584-43.846-58.687-43.677Q-58.789-43.508-58.830-43.293Q-58.871-43.077-58.871-42.807Q-58.871-42.223-58.589-41.908Q-58.307-41.594-57.730-41.594Q-57.456-41.594-57.234-41.720Q-57.012-41.847-56.916-42.093Q-56.879-42.158-56.814-42.175L-56.568-42.175Q-56.455-42.151-56.455-42.048Q-56.455-42.042-56.462-42.007Q-56.626-41.584-57.024-41.397Q-57.422-41.211-57.938-41.211Q-58.454-41.211-58.895-41.387Q-59.336-41.563-59.605-41.925Q-59.873-42.288-59.873-42.807M-55.966-40.565Q-55.966-40.770-55.829-40.903Q-55.693-41.037-55.494-41.037Q-55.371-41.037-55.262-40.975Q-55.153-40.914-55.089-40.803Q-55.026-40.691-55.026-40.565Q-55.026-40.353-55.187-40.203L-55.146-40.203Q-54.869-40.203-54.631-40.355Q-54.394-40.507-54.271-40.750L-54.018-41.252L-55.440-43.939L-55.915-43.939L-55.915-44.359L-54.144-44.359L-54.144-43.939L-54.452-43.939L-53.536-42.195L-52.654-43.918Q-52.661-43.939-52.962-43.939L-52.962-44.359L-51.646-44.359L-51.646-43.939Q-52.094-43.939-52.128-43.918L-53.744-40.750Q-53.950-40.346-54.327-40.098Q-54.705-39.851-55.146-39.851Q-55.457-39.851-55.711-40.052Q-55.966-40.254-55.966-40.565M-51.065-42.807Q-51.065-43.207-50.909-43.511Q-50.754-43.815-50.477-44.021Q-50.200-44.226-49.860-44.325Q-49.520-44.424-49.130-44.424Q-48.559-44.424-48.153-44.291Q-47.746-44.157-47.746-43.710Q-47.746-43.504-47.889-43.357Q-48.033-43.210-48.242-43.210Q-48.457-43.210-48.602-43.356Q-48.747-43.501-48.747-43.710Q-48.747-43.887-48.655-44.010Q-48.850-44.038-49.123-44.038Q-49.410-44.038-49.593-43.942Q-49.776-43.846-49.879-43.677Q-49.981-43.508-50.022-43.293Q-50.063-43.077-50.063-42.807Q-50.063-42.223-49.781-41.908Q-49.499-41.594-48.922-41.594Q-48.648-41.594-48.426-41.720Q-48.204-41.847-48.108-42.093Q-48.071-42.158-48.006-42.175L-47.760-42.175Q-47.647-42.151-47.647-42.048Q-47.647-42.042-47.654-42.007Q-47.818-41.584-48.216-41.397Q-48.614-41.211-49.130-41.211Q-49.646-41.211-50.087-41.387Q-50.528-41.563-50.796-41.925Q-51.065-42.288-51.065-42.807\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(29.14 -21.784)\">\u003Cpath d=\"M-57.221-41.252L-59.801-41.252L-59.801-41.672L-59.053-41.672L-59.053-45.634L-59.801-45.634L-59.801-46.054L-56.694-46.054Q-56.188-46.054-55.708-45.919Q-55.228-45.784-54.903-45.466Q-54.578-45.148-54.578-44.646Q-54.578-44.147-54.907-43.836Q-55.235-43.525-55.722-43.397Q-56.209-43.269-56.694-43.269L-57.969-43.269L-57.969-41.672L-57.221-41.672L-57.221-41.252M-58.017-45.634L-58.017-43.651L-56.981-43.651Q-56.636-43.651-56.400-43.696Q-56.164-43.740-55.973-43.891Q-55.819-44.010-55.783-44.190Q-55.747-44.369-55.747-44.646Q-55.747-44.919-55.785-45.101Q-55.823-45.282-55.973-45.401Q-56.154-45.552-56.387-45.593Q-56.619-45.634-56.981-45.634L-58.017-45.634M-53.529-43.651Q-53.529-44.475-53.086-45.041Q-52.644-45.606-51.930-45.873Q-51.215-46.140-50.409-46.140Q-49.988-46.140-49.597-46.018Q-49.205-45.897-48.891-45.661L-48.365-46.109Q-48.351-46.116-48.342-46.119Q-48.334-46.123-48.318-46.129Q-48.303-46.136-48.293-46.140L-48.183-46.140Q-48.091-46.116-48.071-46.027L-48.071-44.297Q-48.091-44.205-48.183-44.185L-48.484-44.185Q-48.573-44.205-48.597-44.297Q-48.631-44.588-48.773-44.853Q-48.915-45.118-49.139-45.313Q-49.363-45.507-49.638-45.613Q-49.913-45.719-50.221-45.719Q-50.918-45.719-51.400-45.497Q-51.882-45.275-52.121-44.814Q-52.360-44.352-52.360-43.651Q-52.360-42.947-52.116-42.486Q-51.871-42.024-51.396-41.806Q-50.921-41.587-50.207-41.587Q-49.804-41.587-49.416-41.744Q-49.028-41.901-48.783-42.206Q-48.539-42.510-48.539-42.923Q-48.518-43.016-48.426-43.036L-48.183-43.036Q-48.071-43.005-48.071-42.896Q-48.071-42.465-48.281-42.141Q-48.491-41.816-48.843-41.596Q-49.195-41.375-49.604-41.271Q-50.012-41.167-50.409-41.167Q-51.215-41.167-51.931-41.433Q-52.647-41.700-53.088-42.264Q-53.529-42.828-53.529-43.651\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(68.974 -21.754)\">\u003Cpath d=\"M-57.983-41.252L-59.746-41.252L-59.746-41.672L-59.278-41.672L-59.278-43.730Q-59.278-43.860-59.399-43.892Q-59.521-43.925-59.726-43.925L-59.726-44.345L-58.410-44.403L-58.410-41.672L-57.983-41.672L-57.983-41.252M-59.521-45.535Q-59.521-45.774-59.347-45.945Q-59.172-46.116-58.933-46.116Q-58.772-46.116-58.641-46.035Q-58.509-45.955-58.430-45.820Q-58.352-45.685-58.352-45.535Q-58.352-45.292-58.524-45.119Q-58.697-44.947-58.933-44.947Q-59.169-44.947-59.345-45.119Q-59.521-45.292-59.521-45.535M-55.371-41.252L-57.227-41.252L-57.227-41.672L-56.759-41.672L-56.759-43.730Q-56.759-43.860-56.891-43.892Q-57.022-43.925-57.227-43.925L-57.227-44.345L-55.932-44.403L-55.932-43.710Q-55.799-43.921-55.582-44.084Q-55.365-44.246-55.112-44.325Q-54.859-44.403-54.602-44.403Q-54.004-44.403-53.685-44.176Q-53.365-43.949-53.365-43.375L-53.365-41.672L-52.893-41.672L-52.893-41.252L-54.749-41.252L-54.749-41.672L-54.281-41.672L-54.281-43.344Q-54.281-43.569-54.303-43.710Q-54.326-43.850-54.421-43.950Q-54.517-44.051-54.715-44.051Q-55.159-44.051-55.501-43.762Q-55.843-43.474-55.843-43.036L-55.843-41.672L-55.371-41.672L-55.371-41.252M-52.309-41.320L-52.309-42.219Q-52.288-42.308-52.196-42.329L-51.950-42.329Q-51.875-42.308-51.847-42.247Q-51.639-41.560-50.846-41.560Q-49.978-41.560-49.978-42.014Q-49.978-42.209-50.174-42.315Q-50.371-42.421-50.607-42.455L-51.188-42.547Q-51.451-42.585-51.712-42.698Q-51.974-42.811-52.141-43Q-52.309-43.190-52.309-43.470Q-52.309-44.014-51.880-44.219Q-51.451-44.424-50.846-44.424Q-50.368-44.424-50.097-44.311L-49.865-44.417L-49.838-44.424L-49.725-44.424Q-49.633-44.403-49.612-44.311L-49.612-43.610Q-49.633-43.525-49.725-43.498L-49.971-43.498Q-50.060-43.522-50.080-43.610Q-50.080-44.109-50.867-44.109Q-51.721-44.109-51.721-43.730Q-51.721-43.463-51.133-43.381L-50.545-43.289Q-50.255-43.245-49.990-43.115Q-49.725-42.985-49.557-42.766Q-49.390-42.547-49.390-42.260Q-49.390-41.864-49.598-41.630Q-49.807-41.396-50.137-41.303Q-50.467-41.211-50.846-41.211Q-51.369-41.211-51.721-41.406L-52.029-41.231Q-52.059-41.214-52.083-41.211L-52.196-41.211Q-52.288-41.231-52.309-41.320M-48.238-42.042L-48.238-43.939L-48.857-43.939L-48.857-44.291Q-48.597-44.291-48.390-44.420Q-48.183-44.550-48.055-44.752Q-47.927-44.954-47.859-45.201Q-47.790-45.449-47.790-45.695L-47.322-45.695L-47.322-44.359L-46.194-44.359L-46.194-43.939L-47.322-43.939L-47.322-42.072Q-47.322-41.594-46.922-41.594Q-46.738-41.594-46.628-41.739Q-46.519-41.884-46.519-42.072L-46.519-42.462L-46.047-42.462L-46.047-42.042Q-46.047-41.795-46.192-41.607Q-46.338-41.419-46.570-41.315Q-46.803-41.211-47.042-41.211Q-47.541-41.211-47.889-41.397Q-48.238-41.584-48.238-42.042M-43.221-41.252L-45.145-41.252L-45.145-41.672L-44.677-41.672L-44.677-43.730Q-44.677-43.860-44.808-43.892Q-44.940-43.925-45.145-43.925L-45.145-44.345L-43.901-44.403L-43.901-43.682Q-43.802-43.898-43.660-44.056Q-43.518-44.215-43.330-44.309Q-43.142-44.403-42.913-44.403Q-42.704-44.403-42.510-44.333Q-42.315-44.263-42.183-44.120Q-42.052-43.976-42.052-43.764Q-42.052-43.627-42.117-43.516Q-42.181-43.405-42.298-43.340Q-42.414-43.275-42.544-43.275Q-42.749-43.275-42.891-43.414Q-43.033-43.552-43.033-43.764Q-43.033-43.932-42.947-44.051Q-43.368-44.051-43.588-43.621Q-43.808-43.190-43.808-42.722L-43.808-41.672L-43.221-41.672L-43.221-41.252M-40.876-42.042L-40.876-43.730Q-40.876-43.860-41.007-43.892Q-41.139-43.925-41.344-43.925L-41.344-44.345L-39.960-44.403L-39.960-42.072Q-39.960-41.727-39.881-41.659Q-39.727-41.560-39.314-41.560Q-38.948-41.560-38.673-41.775Q-38.398-41.990-38.398-42.335L-38.398-43.730Q-38.398-43.860-38.529-43.892Q-38.661-43.925-38.866-43.925L-38.866-44.345L-37.482-44.403L-37.482-41.867Q-37.482-41.741-37.348-41.707Q-37.215-41.672-37.010-41.672L-37.010-41.252L-38.347-41.211L-38.347-41.686Q-38.534-41.454-38.822-41.332Q-39.109-41.211-39.413-41.211Q-39.813-41.211-40.119-41.261Q-40.425-41.310-40.650-41.493Q-40.876-41.676-40.876-42.042M-36.426-42.807Q-36.426-43.207-36.270-43.511Q-36.115-43.815-35.838-44.021Q-35.561-44.226-35.221-44.325Q-34.881-44.424-34.491-44.424Q-33.920-44.424-33.514-44.291Q-33.107-44.157-33.107-43.710Q-33.107-43.504-33.250-43.357Q-33.394-43.210-33.602-43.210Q-33.818-43.210-33.963-43.356Q-34.108-43.501-34.108-43.710Q-34.108-43.887-34.016-44.010Q-34.211-44.038-34.484-44.038Q-34.771-44.038-34.954-43.942Q-35.137-43.846-35.240-43.677Q-35.342-43.508-35.383-43.293Q-35.424-43.077-35.424-42.807Q-35.424-42.223-35.142-41.908Q-34.860-41.594-34.283-41.594Q-34.009-41.594-33.787-41.720Q-33.565-41.847-33.469-42.093Q-33.431-42.158-33.367-42.175L-33.120-42.175Q-33.008-42.151-33.008-42.048Q-33.008-42.042-33.014-42.007Q-33.179-41.584-33.577-41.397Q-33.975-41.211-34.491-41.211Q-35.007-41.211-35.448-41.387Q-35.889-41.563-36.157-41.925Q-36.426-42.288-36.426-42.807M-31.907-42.042L-31.907-43.939L-32.526-43.939L-32.526-44.291Q-32.266-44.291-32.059-44.420Q-31.852-44.550-31.724-44.752Q-31.596-44.954-31.528-45.201Q-31.459-45.449-31.459-45.695L-30.991-45.695L-30.991-44.359L-29.863-44.359L-29.863-43.939L-30.991-43.939L-30.991-42.072Q-30.991-41.594-30.591-41.594Q-30.407-41.594-30.297-41.739Q-30.188-41.884-30.188-42.072L-30.188-42.462L-29.716-42.462L-29.716-42.042Q-29.716-41.795-29.861-41.607Q-30.007-41.419-30.239-41.315Q-30.472-41.211-30.711-41.211Q-31.210-41.211-31.558-41.397Q-31.907-41.584-31.907-42.042M-26.968-41.252L-28.732-41.252L-28.732-41.672L-28.264-41.672L-28.264-43.730Q-28.264-43.860-28.385-43.892Q-28.506-43.925-28.711-43.925L-28.711-44.345L-27.395-44.403L-27.395-41.672L-26.968-41.672L-26.968-41.252M-28.506-45.535Q-28.506-45.774-28.332-45.945Q-28.158-46.116-27.918-46.116Q-27.758-46.116-27.626-46.035Q-27.494-45.955-27.416-45.820Q-27.337-45.685-27.337-45.535Q-27.337-45.292-27.510-45.119Q-27.682-44.947-27.918-44.947Q-28.154-44.947-28.330-45.119Q-28.506-45.292-28.506-45.535M-26.367-42.770Q-26.367-43.313-26.091-43.686Q-25.816-44.058-25.363-44.241Q-24.910-44.424-24.384-44.424Q-23.865-44.424-23.410-44.241Q-22.955-44.058-22.680-43.686Q-22.405-43.313-22.405-42.770Q-22.405-42.250-22.685-41.896Q-22.966-41.543-23.420-41.377Q-23.875-41.211-24.384-41.211Q-24.890-41.211-25.348-41.377Q-25.806-41.543-26.086-41.896Q-26.367-42.250-26.367-42.770M-24.384-41.594Q-23.957-41.594-23.743-41.748Q-23.530-41.901-23.468-42.161Q-23.407-42.421-23.407-42.869Q-23.407-43.293-23.473-43.542Q-23.540-43.792-23.752-43.932Q-23.964-44.072-24.384-44.072Q-24.801-44.072-25.016-43.930Q-25.232-43.788-25.298-43.540Q-25.365-43.293-25.365-42.869Q-25.365-42.421-25.304-42.161Q-25.242-41.901-25.027-41.748Q-24.811-41.594-24.384-41.594M-19.828-41.252L-21.684-41.252L-21.684-41.672L-21.216-41.672L-21.216-43.730Q-21.216-43.860-21.347-43.892Q-21.479-43.925-21.684-43.925L-21.684-44.345L-20.389-44.403L-20.389-43.710Q-20.255-43.921-20.038-44.084Q-19.821-44.246-19.568-44.325Q-19.315-44.403-19.059-44.403Q-18.461-44.403-18.141-44.176Q-17.822-43.949-17.822-43.375L-17.822-41.672L-17.350-41.672L-17.350-41.252L-19.206-41.252L-19.206-41.672L-18.738-41.672L-18.738-43.344Q-18.738-43.569-18.760-43.710Q-18.782-43.850-18.878-43.950Q-18.973-44.051-19.172-44.051Q-19.616-44.051-19.958-43.762Q-20.300-43.474-20.300-43.036L-20.300-41.672L-19.828-41.672\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmbx7\" font-size=\"7\">\u003Cg transform=\"translate(174.25 -22.435)\">\u003Cpath d=\"M-54.937-41.252L-59.801-41.252L-59.801-41.672L-59.053-41.672L-59.053-45.634L-59.801-45.634L-59.801-46.054L-55.064-46.054L-54.825-44.352L-55.293-44.352Q-55.347-44.773-55.474-45.029Q-55.600-45.285-55.802-45.417Q-56.004-45.548-56.275-45.591Q-56.547-45.634-56.995-45.634L-57.969-45.634L-57.969-43.956L-57.631-43.956Q-57.292-43.956-57.109-44.009Q-56.927-44.062-56.838-44.226Q-56.749-44.390-56.749-44.725L-56.281-44.725L-56.281-42.763L-56.749-42.763Q-56.749-43.098-56.836-43.262Q-56.923-43.426-57.108-43.481Q-57.292-43.535-57.631-43.535L-57.969-43.535L-57.969-41.672L-56.916-41.672Q-56.277-41.672-55.920-41.789Q-55.563-41.905-55.363-42.219Q-55.163-42.534-55.050-43.163L-54.578-43.163L-54.937-41.252M-52.555-41.252L-54.045-41.252L-54.045-41.672Q-53.464-41.672-53.403-41.693L-52.347-42.770L-53.457-43.939L-54.011-43.939L-54.011-44.359L-52.295-44.359L-52.295-43.939L-52.456-43.939L-51.834-43.289L-51.212-43.918Q-51.222-43.921-51.243-43.927Q-51.263-43.932-51.266-43.932Q-51.311-43.939-51.400-43.939L-51.400-44.359L-49.909-44.359L-49.909-43.939Q-50.491-43.939-50.552-43.918L-51.513-42.947L-50.303-41.672L-49.749-41.672L-49.749-41.252L-51.465-41.252L-51.465-41.672L-51.304-41.672L-52.022-42.428L-52.743-41.693Q-52.729-41.690-52.711-41.684Q-52.692-41.679-52.688-41.679Q-52.647-41.672-52.555-41.672L-52.555-41.252M-49.236-42.828Q-49.236-43.221-49.077-43.527Q-48.918-43.833-48.650-44.031Q-48.382-44.229-48.042-44.326Q-47.701-44.424-47.326-44.424Q-46.546-44.424-46.104-44.036Q-45.661-43.648-45.661-42.876Q-45.661-42.739-45.801-42.708L-48.235-42.708Q-48.235-42.141-47.930-41.867Q-47.626-41.594-47.052-41.594Q-46.755-41.594-46.488-41.722Q-46.222-41.850-46.116-42.106Q-46.075-42.182-45.989-42.206L-45.801-42.206Q-45.661-42.175-45.661-42.048Q-45.661-42.014-45.668-41.994Q-45.750-41.782-45.914-41.628Q-46.078-41.474-46.290-41.384Q-46.502-41.293-46.729-41.252Q-46.956-41.211-47.199-41.211Q-47.729-41.211-48.192-41.384Q-48.655-41.556-48.946-41.924Q-49.236-42.291-49.236-42.828M-48.235-43.029L-46.379-43.029Q-46.379-43.498-46.621-43.785Q-46.864-44.072-47.326-44.072Q-47.784-44.072-48.009-43.785Q-48.235-43.498-48.235-43.029M-45.046-42.807Q-45.046-43.207-44.890-43.511Q-44.735-43.815-44.458-44.021Q-44.181-44.226-43.841-44.325Q-43.501-44.424-43.111-44.424Q-42.540-44.424-42.134-44.291Q-41.727-44.157-41.727-43.710Q-41.727-43.504-41.870-43.357Q-42.014-43.210-42.222-43.210Q-42.438-43.210-42.583-43.356Q-42.728-43.501-42.728-43.710Q-42.728-43.887-42.636-44.010Q-42.831-44.038-43.104-44.038Q-43.391-44.038-43.574-43.942Q-43.757-43.846-43.860-43.677Q-43.962-43.508-44.003-43.293Q-44.044-43.077-44.044-42.807Q-44.044-42.223-43.762-41.908Q-43.480-41.594-42.903-41.594Q-42.629-41.594-42.407-41.720Q-42.185-41.847-42.089-42.093Q-42.052-42.158-41.987-42.175L-41.741-42.175Q-41.628-42.151-41.628-42.048Q-41.628-42.042-41.635-42.007Q-41.799-41.584-42.197-41.397Q-42.595-41.211-43.111-41.211Q-43.627-41.211-44.068-41.387Q-44.509-41.563-44.777-41.925Q-45.046-42.288-45.046-42.807M-40.438-42.042L-40.438-43.730Q-40.438-43.860-40.570-43.892Q-40.701-43.925-40.907-43.925L-40.907-44.345L-39.522-44.403L-39.522-42.072Q-39.522-41.727-39.444-41.659Q-39.290-41.560-38.876-41.560Q-38.511-41.560-38.235-41.775Q-37.960-41.990-37.960-42.335L-37.960-43.730Q-37.960-43.860-38.092-43.892Q-38.223-43.925-38.429-43.925L-38.429-44.345L-37.044-44.403L-37.044-41.867Q-37.044-41.741-36.911-41.707Q-36.778-41.672-36.573-41.672L-36.573-41.252L-37.909-41.211L-37.909-41.686Q-38.097-41.454-38.384-41.332Q-38.671-41.211-38.975-41.211Q-39.375-41.211-39.681-41.261Q-39.987-41.310-40.213-41.493Q-40.438-41.676-40.438-42.042M-35.503-42.042L-35.503-43.939L-36.121-43.939L-36.121-44.291Q-35.862-44.291-35.655-44.420Q-35.448-44.550-35.320-44.752Q-35.192-44.954-35.123-45.201Q-35.055-45.449-35.055-45.695L-34.587-45.695L-34.587-44.359L-33.459-44.359L-33.459-43.939L-34.587-43.939L-34.587-42.072Q-34.587-41.594-34.187-41.594Q-34.002-41.594-33.893-41.739Q-33.784-41.884-33.784-42.072L-33.784-42.462L-33.312-42.462L-33.312-42.042Q-33.312-41.795-33.457-41.607Q-33.602-41.419-33.835-41.315Q-34.067-41.211-34.306-41.211Q-34.805-41.211-35.154-41.397Q-35.503-41.584-35.503-42.042M-32.502-42.828Q-32.502-43.221-32.343-43.527Q-32.184-43.833-31.916-44.031Q-31.647-44.229-31.307-44.326Q-30.967-44.424-30.591-44.424Q-29.812-44.424-29.369-44.036Q-28.927-43.648-28.927-42.876Q-28.927-42.739-29.067-42.708L-31.500-42.708Q-31.500-42.141-31.196-41.867Q-30.892-41.594-30.318-41.594Q-30.020-41.594-29.754-41.722Q-29.487-41.850-29.381-42.106Q-29.340-42.182-29.255-42.206L-29.067-42.206Q-28.927-42.175-28.927-42.048Q-28.927-42.014-28.933-41.994Q-29.015-41.782-29.180-41.628Q-29.344-41.474-29.555-41.384Q-29.767-41.293-29.995-41.252Q-30.222-41.211-30.465-41.211Q-30.994-41.211-31.458-41.384Q-31.921-41.556-32.211-41.924Q-32.502-42.291-32.502-42.828M-31.500-43.029L-29.644-43.029Q-29.644-43.498-29.887-43.785Q-30.130-44.072-30.591-44.072Q-31.049-44.072-31.275-43.785Q-31.500-43.498-31.500-43.029\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.25 -22.435)\">\u003Cpath d=\"M-25.055-39.741L-25.055-39.775Q-25.055-39.827-25.034-39.857L-22.074-46.348Q-22.016-46.481-21.855-46.502L-21.821-46.502Q-21.616-46.471-21.585-46.263L-21.585-46.229Q-21.585-46.177-21.606-46.147L-24.566-39.656Q-24.624-39.523-24.785-39.502L-24.819-39.502Q-25.024-39.533-25.055-39.741\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.25 -22.435)\">\u003Cpath d=\"M-15.387-41.320L-17.164-45.634L-17.780-45.634L-17.780-46.054L-15.408-46.054L-15.408-45.634L-16.036-45.634L-14.738-42.462L-13.637-45.125L-13.852-45.634L-14.471-45.634L-14.471-46.054L-12.095-46.054L-12.095-45.634L-12.728-45.634L-11.426-42.462L-10.123-45.606Q-10.134-45.634-10.817-45.634L-10.817-46.054L-8.989-46.054L-8.989-45.634Q-9.597-45.634-9.617-45.606L-11.385-41.320Q-11.415-41.252-11.479-41.209Q-11.542-41.167-11.614-41.167L-11.846-41.167Q-11.914-41.167-11.979-41.211Q-12.044-41.255-12.075-41.320L-13.384-44.506L-14.693-41.320Q-14.724-41.255-14.789-41.211Q-14.854-41.167-14.926-41.167L-15.155-41.167Q-15.315-41.167-15.387-41.320\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.25 -22.435)\">\u003Cpath d=\"M-7.200-41.252L-9.124-41.252L-9.124-41.672L-8.656-41.672L-8.656-43.730Q-8.656-43.860-8.788-43.892Q-8.919-43.925-9.124-43.925L-9.124-44.345L-7.880-44.403L-7.880-43.682Q-7.781-43.898-7.639-44.056Q-7.497-44.215-7.309-44.309Q-7.122-44.403-6.893-44.403Q-6.684-44.403-6.489-44.333Q-6.294-44.263-6.163-44.120Q-6.031-43.976-6.031-43.764Q-6.031-43.627-6.096-43.516Q-6.161-43.405-6.277-43.340Q-6.393-43.275-6.523-43.275Q-6.728-43.275-6.870-43.414Q-7.012-43.552-7.012-43.764Q-7.012-43.932-6.927-44.051Q-7.347-44.051-7.568-43.621Q-7.788-43.190-7.788-42.722L-7.788-41.672L-7.200-41.672L-7.200-41.252M-3.539-41.252L-5.303-41.252L-5.303-41.672L-4.835-41.672L-4.835-43.730Q-4.835-43.860-4.956-43.892Q-5.078-43.925-5.283-43.925L-5.283-44.345L-3.967-44.403L-3.967-41.672L-3.539-41.672L-3.539-41.252M-5.078-45.535Q-5.078-45.774-4.903-45.945Q-4.729-46.116-4.490-46.116Q-4.329-46.116-4.197-46.035Q-4.066-45.955-3.987-45.820Q-3.909-45.685-3.909-45.535Q-3.909-45.292-4.081-45.119Q-4.254-44.947-4.490-44.947Q-4.726-44.947-4.902-45.119Q-5.078-45.292-5.078-45.535M-2.405-42.042L-2.405-43.939L-3.023-43.939L-3.023-44.291Q-2.764-44.291-2.557-44.420Q-2.350-44.550-2.222-44.752Q-2.094-44.954-2.025-45.201Q-1.957-45.449-1.957-45.695L-1.489-45.695L-1.489-44.359L-0.361-44.359L-0.361-43.939L-1.489-43.939L-1.489-42.072Q-1.489-41.594-1.089-41.594Q-0.904-41.594-0.795-41.739Q-0.685-41.884-0.685-42.072L-0.685-42.462L-0.214-42.462L-0.214-42.042Q-0.214-41.795-0.359-41.607Q-0.504-41.419-0.737-41.315Q-0.969-41.211-1.208-41.211Q-1.707-41.211-2.056-41.397Q-2.405-41.584-2.405-42.042M0.596-42.828Q0.596-43.221 0.755-43.527Q0.914-43.833 1.182-44.031Q1.451-44.229 1.791-44.326Q2.131-44.424 2.507-44.424Q3.286-44.424 3.729-44.036Q4.171-43.648 4.171-42.876Q4.171-42.739 4.031-42.708L1.598-42.708Q1.598-42.141 1.902-41.867Q2.206-41.594 2.780-41.594Q3.078-41.594 3.344-41.722Q3.611-41.850 3.717-42.106Q3.758-42.182 3.843-42.206L4.031-42.206Q4.171-42.175 4.171-42.048Q4.171-42.014 4.165-41.994Q4.083-41.782 3.919-41.628Q3.754-41.474 3.543-41.384Q3.331-41.293 3.103-41.252Q2.876-41.211 2.633-41.211Q2.104-41.211 1.640-41.384Q1.177-41.556 0.887-41.924Q0.596-42.291 0.596-42.828M1.598-43.029L3.454-43.029Q3.454-43.498 3.211-43.785Q2.968-44.072 2.507-44.072Q2.049-44.072 1.823-43.785Q1.598-43.498 1.598-43.029M6.964-42.407L4.585-42.407L4.585-43.210L6.964-43.210L6.964-42.407M8.806-41.252L8.338-41.252L8.338-45.439Q8.338-45.569 8.206-45.601Q8.075-45.634 7.870-45.634L7.870-46.054L9.206-46.109L9.206-44.103Q9.709-44.403 10.375-44.403Q10.860-44.403 11.277-44.221Q11.694-44.038 11.941-43.675Q12.187-43.313 12.187-42.807Q12.187-42.404 12.031-42.103Q11.876-41.802 11.595-41.601Q11.315-41.399 10.973-41.305Q10.631-41.211 10.249-41.211Q9.941-41.211 9.637-41.319Q9.333-41.426 9.093-41.631L8.806-41.252M9.254-43.631L9.254-42.048Q9.411-41.819 9.652-41.690Q9.893-41.560 10.156-41.560Q10.560-41.560 10.789-41.713Q11.018-41.867 11.101-42.144Q11.185-42.421 11.185-42.821Q11.185-43.416 11.001-43.733Q10.816-44.051 10.255-44.051Q9.961-44.051 9.698-43.945Q9.435-43.839 9.254-43.631M12.802-42.086Q12.802-42.510 13.251-42.746Q13.701-42.981 14.270-43.058Q14.839-43.135 15.314-43.135L15.314-43.344Q15.314-43.576 15.213-43.740Q15.112-43.904 14.935-43.988Q14.757-44.072 14.531-44.072Q14.193-44.072 13.984-44.038Q14.097-43.904 14.097-43.710Q14.097-43.504 13.954-43.357Q13.810-43.210 13.598-43.210Q13.383-43.210 13.239-43.357Q13.096-43.504 13.096-43.710Q13.096-44.031 13.330-44.188Q13.564-44.345 13.858-44.385Q14.152-44.424 14.531-44.424Q14.911-44.424 15.299-44.328Q15.687-44.232 15.958-43.997Q16.230-43.761 16.230-43.375L16.230-41.772Q16.261-41.672 16.750-41.672Q16.869-41.652 16.890-41.532L16.890-41.392Q16.869-41.273 16.750-41.252L16.254-41.252Q15.454-41.252 15.454-41.693Q15.273-41.447 14.952-41.329Q14.630-41.211 14.272-41.211Q13.711-41.211 13.256-41.408Q12.802-41.604 12.802-42.086M13.711-42.086Q13.711-41.836 13.928-41.698Q14.145-41.560 14.412-41.560Q14.743-41.560 15.029-41.705Q15.314-41.850 15.314-42.154L15.314-42.835Q15.041-42.835 14.659-42.768Q14.278-42.701 13.995-42.532Q13.711-42.363 13.711-42.086M17.252-42.807Q17.252-43.207 17.408-43.511Q17.563-43.815 17.840-44.021Q18.117-44.226 18.457-44.325Q18.797-44.424 19.187-44.424Q19.757-44.424 20.164-44.291Q20.571-44.157 20.571-43.710Q20.571-43.504 20.427-43.357Q20.284-43.210 20.075-43.210Q19.860-43.210 19.715-43.356Q19.569-43.501 19.569-43.710Q19.569-43.887 19.662-44.010Q19.467-44.038 19.193-44.038Q18.906-44.038 18.723-43.942Q18.541-43.846 18.438-43.677Q18.336-43.508 18.295-43.293Q18.253-43.077 18.253-42.807Q18.253-42.223 18.535-41.908Q18.817-41.594 19.395-41.594Q19.669-41.594 19.891-41.720Q20.113-41.847 20.209-42.093Q20.246-42.158 20.311-42.175L20.557-42.175Q20.670-42.151 20.670-42.048Q20.670-42.042 20.663-42.007Q20.499-41.584 20.101-41.397Q19.703-41.211 19.187-41.211Q18.670-41.211 18.230-41.387Q17.789-41.563 17.520-41.925Q17.252-42.288 17.252-42.807\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.25 -22.435)\">\u003Cpath d=\"M22.863-41.252L21.100-41.252L21.100-41.672L21.568-41.672L21.568-45.439Q21.568-45.569 21.436-45.601Q21.305-45.634 21.100-45.634L21.100-46.054L22.436-46.109L22.436-42.981L23.745-43.918Q23.735-43.939 23.598-43.939L23.598-44.359L25.123-44.359L25.123-43.939Q24.589-43.939 24.548-43.911L23.492-43.156L24.829-41.700Q24.863-41.672 25.317-41.672L25.317-41.252L23.625-41.252L23.625-41.672Q23.772-41.672 23.772-41.693L22.856-42.701L22.392-42.373L22.392-41.672L22.863-41.672\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmbx7\" font-size=\"7\">\u003Cg transform=\"translate(305.132 -21.754)\">\u003Cpath d=\"M-59.873-41.320L-59.873-42.219Q-59.852-42.308-59.760-42.329L-59.514-42.329Q-59.439-42.308-59.411-42.247Q-59.203-41.560-58.410-41.560Q-57.542-41.560-57.542-42.014Q-57.542-42.209-57.738-42.315Q-57.935-42.421-58.171-42.455L-58.752-42.547Q-59.015-42.585-59.276-42.698Q-59.538-42.811-59.705-43Q-59.873-43.190-59.873-43.470Q-59.873-44.014-59.444-44.219Q-59.015-44.424-58.410-44.424Q-57.931-44.424-57.661-44.311L-57.429-44.417L-57.402-44.424L-57.289-44.424Q-57.197-44.403-57.176-44.311L-57.176-43.610Q-57.197-43.525-57.289-43.498L-57.535-43.498Q-57.624-43.522-57.644-43.610Q-57.644-44.109-58.430-44.109Q-59.285-44.109-59.285-43.730Q-59.285-43.463-58.697-43.381L-58.109-43.289Q-57.819-43.245-57.554-43.115Q-57.289-42.985-57.121-42.766Q-56.954-42.547-56.954-42.260Q-56.954-41.864-57.162-41.630Q-57.371-41.396-57.701-41.303Q-58.031-41.211-58.410-41.211Q-58.933-41.211-59.285-41.406L-59.593-41.231Q-59.623-41.214-59.647-41.211L-59.760-41.211Q-59.852-41.231-59.873-41.320M-55.802-42.042L-55.802-43.939L-56.421-43.939L-56.421-44.291Q-56.161-44.291-55.954-44.420Q-55.747-44.550-55.619-44.752Q-55.491-44.954-55.423-45.201Q-55.354-45.449-55.354-45.695L-54.886-45.695L-54.886-44.359L-53.758-44.359L-53.758-43.939L-54.886-43.939L-54.886-42.072Q-54.886-41.594-54.486-41.594Q-54.302-41.594-54.192-41.739Q-54.083-41.884-54.083-42.072L-54.083-42.462L-53.611-42.462L-53.611-42.042Q-53.611-41.795-53.756-41.607Q-53.902-41.419-54.134-41.315Q-54.367-41.211-54.606-41.211Q-55.105-41.211-55.453-41.397Q-55.802-41.584-55.802-42.042M-52.801-42.086Q-52.801-42.510-52.352-42.746Q-51.902-42.981-51.333-43.058Q-50.764-43.135-50.289-43.135L-50.289-43.344Q-50.289-43.576-50.390-43.740Q-50.491-43.904-50.668-43.988Q-50.846-44.072-51.072-44.072Q-51.410-44.072-51.618-44.038Q-51.506-43.904-51.506-43.710Q-51.506-43.504-51.649-43.357Q-51.793-43.210-52.005-43.210Q-52.220-43.210-52.364-43.357Q-52.507-43.504-52.507-43.710Q-52.507-44.031-52.273-44.188Q-52.039-44.345-51.745-44.385Q-51.451-44.424-51.072-44.424Q-50.692-44.424-50.304-44.328Q-49.916-44.232-49.645-43.997Q-49.373-43.761-49.373-43.375L-49.373-41.772Q-49.342-41.672-48.853-41.672Q-48.734-41.652-48.713-41.532L-48.713-41.392Q-48.734-41.273-48.853-41.252L-49.349-41.252Q-50.149-41.252-50.149-41.693Q-50.330-41.447-50.651-41.329Q-50.972-41.211-51.331-41.211Q-51.892-41.211-52.347-41.408Q-52.801-41.604-52.801-42.086M-51.892-42.086Q-51.892-41.836-51.675-41.698Q-51.458-41.560-51.191-41.560Q-50.860-41.560-50.574-41.705Q-50.289-41.850-50.289-42.154L-50.289-42.835Q-50.562-42.835-50.943-42.768Q-51.325-42.701-51.608-42.532Q-51.892-42.363-51.892-42.086M-47.866-42.042L-47.866-43.939L-48.484-43.939L-48.484-44.291Q-48.224-44.291-48.018-44.420Q-47.811-44.550-47.683-44.752Q-47.555-44.954-47.486-45.201Q-47.418-45.449-47.418-45.695L-46.950-45.695L-46.950-44.359L-45.822-44.359L-45.822-43.939L-46.950-43.939L-46.950-42.072Q-46.950-41.594-46.550-41.594Q-46.365-41.594-46.256-41.739Q-46.146-41.884-46.146-42.072L-46.146-42.462L-45.675-42.462L-45.675-42.042Q-45.675-41.795-45.820-41.607Q-45.965-41.419-46.198-41.315Q-46.430-41.211-46.669-41.211Q-47.168-41.211-47.517-41.397Q-47.866-41.584-47.866-42.042M-44.865-42.828Q-44.865-43.221-44.706-43.527Q-44.547-43.833-44.278-44.031Q-44.010-44.229-43.670-44.326Q-43.330-44.424-42.954-44.424Q-42.175-44.424-41.732-44.036Q-41.289-43.648-41.289-42.876Q-41.289-42.739-41.430-42.708L-43.863-42.708Q-43.863-42.141-43.559-41.867Q-43.255-41.594-42.680-41.594Q-42.383-41.594-42.117-41.722Q-41.850-41.850-41.744-42.106Q-41.703-42.182-41.618-42.206L-41.430-42.206Q-41.289-42.175-41.289-42.048Q-41.289-42.014-41.296-41.994Q-41.378-41.782-41.542-41.628Q-41.706-41.474-41.918-41.384Q-42.130-41.293-42.357-41.252Q-42.585-41.211-42.827-41.211Q-43.357-41.211-43.820-41.384Q-44.284-41.556-44.574-41.924Q-44.865-42.291-44.865-42.828M-43.863-43.029L-42.007-43.029Q-42.007-43.498-42.250-43.785Q-42.493-44.072-42.954-44.072Q-43.412-44.072-43.638-43.785Q-43.863-43.498-43.863-43.029\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(305.132 -21.754)\">\u003Cpath d=\"M-37.671-42.086Q-37.671-42.510-37.221-42.746Q-36.772-42.981-36.203-43.058Q-35.634-43.135-35.159-43.135L-35.159-43.344Q-35.159-43.576-35.259-43.740Q-35.360-43.904-35.538-43.988Q-35.716-44.072-35.941-44.072Q-36.280-44.072-36.488-44.038Q-36.375-43.904-36.375-43.710Q-36.375-43.504-36.519-43.357Q-36.662-43.210-36.874-43.210Q-37.090-43.210-37.233-43.357Q-37.377-43.504-37.377-43.710Q-37.377-44.031-37.143-44.188Q-36.909-44.345-36.615-44.385Q-36.321-44.424-35.941-44.424Q-35.562-44.424-35.174-44.328Q-34.786-44.232-34.514-43.997Q-34.243-43.761-34.243-43.375L-34.243-41.772Q-34.212-41.672-33.723-41.672Q-33.603-41.652-33.583-41.532L-33.583-41.392Q-33.603-41.273-33.723-41.252L-34.219-41.252Q-35.018-41.252-35.018-41.693Q-35.200-41.447-35.521-41.329Q-35.842-41.211-36.201-41.211Q-36.762-41.211-37.216-41.408Q-37.671-41.604-37.671-42.086M-36.762-42.086Q-36.762-41.836-36.545-41.698Q-36.327-41.560-36.061-41.560Q-35.729-41.560-35.444-41.705Q-35.159-41.850-35.159-42.154L-35.159-42.835Q-35.432-42.835-35.813-42.768Q-36.194-42.701-36.478-42.532Q-36.762-42.363-36.762-42.086M-31.163-41.252L-33.087-41.252L-33.087-41.672L-32.619-41.672L-32.619-43.939L-33.186-43.939L-33.186-44.359L-32.619-44.359L-32.619-45.073Q-32.619-45.463-32.347-45.707Q-32.076-45.952-31.686-46.053Q-31.296-46.153-30.903-46.153Q-30.705-46.153-30.514-46.071Q-30.322-45.989-30.202-45.835Q-30.083-45.682-30.083-45.480Q-30.083-45.272-30.226-45.128Q-30.370-44.984-30.575-44.984Q-30.784-44.984-30.927-45.128Q-31.071-45.272-31.071-45.480Q-31.071-45.665-30.958-45.801L-31.009-45.801Q-31.365-45.801-31.582-45.598Q-31.799-45.395-31.799-45.046L-31.799-44.359L-30.869-44.359L-30.869-43.939L-31.751-43.939L-31.751-41.672L-31.163-41.672L-31.163-41.252M-29.950-42.042L-29.950-43.939L-30.568-43.939L-30.568-44.291Q-30.308-44.291-30.102-44.420Q-29.895-44.550-29.767-44.752Q-29.639-44.954-29.570-45.201Q-29.502-45.449-29.502-45.695L-29.034-45.695L-29.034-44.359L-27.906-44.359L-27.906-43.939L-29.034-43.939L-29.034-42.072Q-29.034-41.594-28.634-41.594Q-28.449-41.594-28.340-41.739Q-28.230-41.884-28.230-42.072L-28.230-42.462L-27.759-42.462L-27.759-42.042Q-27.759-41.795-27.904-41.607Q-28.049-41.419-28.282-41.315Q-28.514-41.211-28.753-41.211Q-29.252-41.211-29.601-41.397Q-29.950-41.584-29.950-42.042M-26.949-42.828Q-26.949-43.221-26.790-43.527Q-26.631-43.833-26.362-44.031Q-26.094-44.229-25.754-44.326Q-25.414-44.424-25.038-44.424Q-24.259-44.424-23.816-44.036Q-23.373-43.648-23.373-42.876Q-23.373-42.739-23.514-42.708L-25.947-42.708Q-25.947-42.141-25.643-41.867Q-25.339-41.594-24.764-41.594Q-24.467-41.594-24.201-41.722Q-23.934-41.850-23.828-42.106Q-23.787-42.182-23.701-42.206L-23.514-42.206Q-23.373-42.175-23.373-42.048Q-23.373-42.014-23.380-41.994Q-23.462-41.782-23.626-41.628Q-23.790-41.474-24.002-41.384Q-24.214-41.293-24.441-41.252Q-24.669-41.211-24.911-41.211Q-25.441-41.211-25.904-41.384Q-26.368-41.556-26.658-41.924Q-26.949-42.291-26.949-42.828M-25.947-43.029L-24.091-43.029Q-24.091-43.498-24.334-43.785Q-24.576-44.072-25.038-44.072Q-25.496-44.072-25.722-43.785Q-25.947-43.498-25.947-43.029M-20.789-41.252L-22.714-41.252L-22.714-41.672L-22.245-41.672L-22.245-43.730Q-22.245-43.860-22.377-43.892Q-22.509-43.925-22.714-43.925L-22.714-44.345L-21.470-44.403L-21.470-43.682Q-21.370-43.898-21.229-44.056Q-21.087-44.215-20.899-44.309Q-20.711-44.403-20.482-44.403Q-20.273-44.403-20.078-44.333Q-19.884-44.263-19.752-44.120Q-19.620-43.976-19.620-43.764Q-19.620-43.627-19.685-43.516Q-19.750-43.405-19.867-43.340Q-19.983-43.275-20.113-43.275Q-20.318-43.275-20.460-43.414Q-20.601-43.552-20.601-43.764Q-20.601-43.932-20.516-44.051Q-20.936-44.051-21.157-43.621Q-21.377-43.190-21.377-42.722L-21.377-41.672L-20.789-41.672\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-2.157 2.578)\">\u003Cpath d=\"M-56.607-41.252L-59.400-41.252L-59.400-41.549Q-58.338-41.549-58.338-41.811L-58.338-45.979Q-58.767-45.764-59.447-45.764L-59.447-46.061Q-58.428-46.061-57.912-46.572L-57.767-46.572Q-57.693-46.553-57.674-46.475L-57.674-41.811Q-57.674-41.549-56.607-41.549\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(29.14 3.056)\">\u003Cpath d=\"M-57.579-41.140Q-58.267-41.140-58.758-41.645Q-59.249-42.150-59.486-42.900Q-59.722-43.649-59.722-44.314Q-59.722-44.973-59.486-45.715Q-59.249-46.457-58.758-46.965Q-58.267-47.473-57.579-47.473Q-57.052-47.473-56.639-47.170Q-56.226-46.867-55.965-46.384Q-55.704-45.900-55.572-45.358Q-55.440-44.816-55.440-44.314Q-55.440-43.806-55.572-43.264Q-55.704-42.722-55.968-42.233Q-56.231-41.745-56.641-41.442Q-57.052-41.140-57.579-41.140M-57.579-41.794Q-57.193-41.794-56.922-42.070Q-56.651-42.346-56.488-42.761Q-56.324-43.176-56.248-43.623Q-56.173-44.069-56.173-44.431Q-56.173-44.753-56.251-45.170Q-56.329-45.588-56.493-45.959Q-56.656-46.330-56.932-46.577Q-57.208-46.823-57.579-46.823Q-57.950-46.823-58.219-46.584Q-58.487-46.345-58.656-45.971Q-58.824-45.598-58.907-45.175Q-58.990-44.753-58.990-44.431Q-58.990-43.952-58.851-43.332Q-58.712-42.712-58.389-42.253Q-58.067-41.794-57.579-41.794M-52.921-41.252L-54.381-41.252Q-54.635-41.281-54.664-41.530L-54.664-41.623Q-54.635-41.872-54.381-41.901L-53.853-41.901L-52.652-43.474L-53.780-44.914L-54.322-44.914Q-54.571-44.943-54.600-45.192L-54.600-45.280Q-54.586-45.402-54.517-45.476Q-54.449-45.549-54.322-45.564L-52.862-45.564Q-52.628-45.534-52.584-45.280L-52.584-45.192Q-52.628-44.943-52.862-44.914L-53.053-44.914L-52.364-43.981L-51.680-44.914L-51.890-44.914Q-52.130-44.943-52.174-45.192L-52.174-45.280Q-52.154-45.398-52.078-45.473Q-52.003-45.549-51.890-45.564L-50.430-45.564Q-50.313-45.549-50.240-45.476Q-50.167-45.402-50.152-45.280L-50.152-45.192Q-50.181-44.943-50.430-44.914L-50.963-44.914L-52.061-43.474L-50.831-41.901L-50.294-41.901Q-50.172-41.887-50.098-41.818Q-50.025-41.750-50.011-41.623L-50.011-41.530Q-50.025-41.413-50.098-41.340Q-50.172-41.267-50.294-41.252L-51.754-41.252Q-51.983-41.281-52.032-41.530L-52.032-41.623Q-51.988-41.872-51.754-41.901L-51.534-41.901L-52.364-43.064L-53.150-41.901L-52.921-41.901Q-52.686-41.872-52.642-41.623L-52.642-41.530Q-52.686-41.281-52.921-41.252M-47.081-41.140Q-47.769-41.140-48.260-41.645Q-48.751-42.150-48.988-42.900Q-49.224-43.649-49.224-44.314Q-49.224-44.973-48.988-45.715Q-48.751-46.457-48.260-46.965Q-47.769-47.473-47.081-47.473Q-46.554-47.473-46.141-47.170Q-45.728-46.867-45.467-46.384Q-45.206-45.900-45.074-45.358Q-44.942-44.816-44.942-44.314Q-44.942-43.806-45.074-43.264Q-45.206-42.722-45.470-42.233Q-45.733-41.745-46.143-41.442Q-46.554-41.140-47.081-41.140M-47.081-41.794Q-46.695-41.794-46.424-42.070Q-46.153-42.346-45.990-42.761Q-45.826-43.176-45.750-43.623Q-45.675-44.069-45.675-44.431Q-45.675-44.753-45.753-45.170Q-45.831-45.588-45.994-45.959Q-46.158-46.330-46.434-46.577Q-46.710-46.823-47.081-46.823Q-47.452-46.823-47.721-46.584Q-47.989-46.345-48.158-45.971Q-48.326-45.598-48.409-45.175Q-48.492-44.753-48.492-44.431Q-48.492-43.952-48.353-43.332Q-48.214-42.712-47.891-42.253Q-47.569-41.794-47.081-41.794M-41.832-41.140Q-42.520-41.140-43.011-41.645Q-43.502-42.150-43.739-42.900Q-43.975-43.649-43.975-44.314Q-43.975-44.973-43.739-45.715Q-43.502-46.457-43.011-46.965Q-42.520-47.473-41.832-47.473Q-41.305-47.473-40.892-47.170Q-40.479-46.867-40.218-46.384Q-39.957-45.900-39.825-45.358Q-39.693-44.816-39.693-44.314Q-39.693-43.806-39.825-43.264Q-39.957-42.722-40.221-42.233Q-40.484-41.745-40.894-41.442Q-41.305-41.140-41.832-41.140M-41.832-41.794Q-41.446-41.794-41.175-42.070Q-40.904-42.346-40.741-42.761Q-40.577-43.176-40.501-43.623Q-40.426-44.069-40.426-44.431Q-40.426-44.753-40.504-45.170Q-40.582-45.588-40.745-45.959Q-40.909-46.330-41.185-46.577Q-41.461-46.823-41.832-46.823Q-42.203-46.823-42.472-46.584Q-42.740-46.345-42.909-45.971Q-43.077-45.598-43.160-45.175Q-43.243-44.753-43.243-44.431Q-43.243-43.952-43.104-43.332Q-42.965-42.712-42.642-42.253Q-42.320-41.794-41.832-41.794\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt10\" font-size=\"10\">\u003Cg transform=\"translate(68.974 2.361)\">\u003Cpath d=\"M-59.439-41.530L-59.439-41.623Q-59.410-41.872-59.161-41.901L-57.823-41.901L-57.823-44.914L-59.083-44.914Q-59.332-44.948-59.361-45.192L-59.361-45.280Q-59.347-45.398-59.271-45.473Q-59.195-45.549-59.083-45.564L-57.369-45.564Q-57.252-45.549-57.179-45.476Q-57.105-45.402-57.091-45.280L-57.091-41.901L-55.909-41.901Q-55.675-41.872-55.631-41.623L-55.631-41.530Q-55.675-41.281-55.909-41.252L-59.161-41.252Q-59.410-41.281-59.439-41.530M-58.131-46.853Q-58.131-47.067-57.979-47.219Q-57.828-47.370-57.613-47.370Q-57.393-47.370-57.242-47.219Q-57.091-47.067-57.091-46.853Q-57.091-46.643-57.247-46.486Q-57.403-46.330-57.613-46.330Q-57.818-46.330-57.974-46.486Q-58.131-46.643-58.131-46.853M-51.471-41.252L-54.371-41.252Q-54.615-41.281-54.654-41.530L-54.654-41.623Q-54.615-41.872-54.371-41.901L-53.443-41.901L-53.443-44.914L-54.371-44.914Q-54.615-44.943-54.654-45.192L-54.654-45.280Q-54.615-45.534-54.371-45.564L-52.994-45.564Q-52.872-45.549-52.799-45.476Q-52.725-45.402-52.711-45.280L-52.711-44.841Q-52.511-45.075-52.240-45.256Q-51.969-45.437-51.651-45.529Q-51.334-45.622-51.021-45.622Q-50.655-45.622-50.369-45.471Q-50.084-45.319-50.084-44.992Q-50.084-44.802-50.206-44.668Q-50.328-44.533-50.523-44.533Q-50.704-44.533-50.833-44.658Q-50.963-44.782-50.963-44.973L-51.031-44.973Q-51.510-44.973-51.895-44.714Q-52.281-44.455-52.496-44.028Q-52.711-43.601-52.711-43.132L-52.711-41.901L-51.471-41.901Q-51.222-41.867-51.192-41.623L-51.192-41.530Q-51.222-41.286-51.471-41.252M-49.762-41.530L-49.762-41.623Q-49.718-41.872-49.483-41.901L-49.195-41.901L-49.195-44.914L-49.483-44.914Q-49.718-44.943-49.762-45.192L-49.762-45.280Q-49.718-45.534-49.483-45.564L-48.873-45.564Q-48.746-45.549-48.670-45.463Q-48.595-45.378-48.595-45.261Q-48.194-45.622-47.681-45.622Q-47.442-45.622-47.237-45.481Q-47.032-45.339-46.925-45.100Q-46.495-45.622-45.875-45.622Q-44.972-45.622-44.972-44.172L-44.972-41.901L-44.683-41.901Q-44.449-41.872-44.405-41.623L-44.405-41.530Q-44.454-41.281-44.683-41.252L-45.753-41.252Q-46.002-41.286-46.031-41.530L-46.031-41.623Q-46.002-41.867-45.753-41.901L-45.572-41.901L-45.572-44.133Q-45.572-44.973-45.933-44.973Q-46.226-44.973-46.417-44.770Q-46.607-44.567-46.695-44.274Q-46.783-43.981-46.783-43.693L-46.783-41.901L-46.495-41.901Q-46.256-41.872-46.212-41.623L-46.212-41.530Q-46.261-41.281-46.495-41.252L-47.564-41.252Q-47.813-41.286-47.843-41.530L-47.843-41.623Q-47.813-41.867-47.564-41.901L-47.384-41.901L-47.384-44.133Q-47.384-44.973-47.745-44.973Q-48.038-44.973-48.228-44.770Q-48.419-44.567-48.507-44.274Q-48.595-43.981-48.595-43.693L-48.595-41.901L-48.302-41.901Q-48.067-41.872-48.023-41.623L-48.023-41.530Q-48.067-41.281-48.302-41.252L-49.483-41.252Q-49.713-41.281-49.762-41.530M-41.832-41.193Q-42.413-41.193-42.887-41.499Q-43.360-41.804-43.631-42.321Q-43.902-42.839-43.902-43.410Q-43.902-43.986-43.636-44.502Q-43.370-45.017-42.891-45.334Q-42.413-45.651-41.832-45.651Q-41.388-45.651-41.002-45.466Q-40.616-45.280-40.345-44.973Q-40.074-44.665-39.918-44.250Q-39.762-43.835-39.762-43.410Q-39.762-42.839-40.033-42.324Q-40.304-41.809-40.780-41.501Q-41.256-41.193-41.832-41.193M-41.832-41.843Q-41.231-41.843-40.863-42.358Q-40.494-42.873-40.494-43.493Q-40.494-43.874-40.665-44.221Q-40.836-44.567-41.139-44.785Q-41.441-45.002-41.832-45.002Q-42.218-45.002-42.523-44.787Q-42.828-44.572-43.001-44.223Q-43.175-43.874-43.175-43.493Q-43.175-42.873-42.804-42.358Q-42.432-41.843-41.832-41.843M-37.125-41.511L-38.253-44.914L-38.687-44.914Q-38.936-44.948-38.966-45.192L-38.966-45.280Q-38.951-45.398-38.875-45.473Q-38.800-45.549-38.687-45.564L-37.222-45.564Q-37.110-45.549-37.034-45.473Q-36.959-45.398-36.944-45.280L-36.944-45.192Q-36.973-44.948-37.222-44.914L-37.623-44.914L-36.583-41.804L-35.543-44.914L-35.943-44.914Q-36.197-44.948-36.226-45.192L-36.226-45.280Q-36.197-45.529-35.943-45.564L-34.483-45.564Q-34.371-45.549-34.295-45.473Q-34.220-45.398-34.205-45.280L-34.205-45.192Q-34.234-44.948-34.483-44.914L-34.913-44.914L-36.046-41.511Q-36.090-41.374-36.204-41.294Q-36.319-41.213-36.466-41.213L-36.705-41.213Q-36.851-41.213-36.966-41.294Q-37.081-41.374-37.125-41.511M-31.075-39.314L-31.075-39.401Q-31.046-39.650-30.797-39.680L-30.186-39.680L-30.186-41.760Q-30.465-41.491-30.809-41.342Q-31.153-41.193-31.534-41.193Q-31.959-41.193-32.340-41.379Q-32.721-41.565-32.992-41.870Q-33.263-42.175-33.419-42.585Q-33.575-42.995-33.575-43.410Q-33.575-44.001-33.289-44.506Q-33.004-45.012-32.508-45.317Q-32.013-45.622-31.417-45.622Q-31.075-45.622-30.755-45.485Q-30.435-45.349-30.186-45.100L-30.186-45.344Q-30.172-45.461-30.098-45.534Q-30.025-45.607-29.908-45.622L-29.737-45.622Q-29.615-45.607-29.542-45.534Q-29.469-45.461-29.454-45.344L-29.454-39.680L-28.844-39.680Q-28.595-39.650-28.565-39.401L-28.565-39.314Q-28.595-39.060-28.844-39.030L-30.797-39.030Q-31.046-39.060-31.075-39.314M-31.475-41.843Q-31.158-41.843-30.887-42.004Q-30.616-42.165-30.440-42.431Q-30.264-42.697-30.186-43.010L-30.186-43.752Q-30.240-44.079-30.396-44.353Q-30.553-44.626-30.799-44.799Q-31.046-44.973-31.368-44.973Q-31.778-44.973-32.115-44.755Q-32.452-44.538-32.650-44.174Q-32.847-43.811-32.847-43.400Q-32.847-43.015-32.674-42.656Q-32.501-42.297-32.183-42.070Q-31.866-41.843-31.475-41.843\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(68.974 2.361)\">\u003Cpath d=\"M-21.151-40.700L-21.151-41.213Q-21.903-41.291-22.387-41.752Q-22.870-42.214-22.870-42.951Q-22.870-43.156-22.738-43.300Q-22.606-43.444-22.401-43.444Q-22.216-43.444-22.079-43.303Q-21.942-43.161-21.942-42.971Q-21.942-42.761-22.103-42.624Q-22.001-42.297-21.749-42.106Q-21.498-41.916-21.151-41.862L-21.151-44.123Q-21.893-44.284-22.382-44.685Q-22.870-45.085-22.870-45.764Q-22.870-46.208-22.623-46.562Q-22.377-46.916-21.986-47.128Q-21.596-47.341-21.151-47.404L-21.151-47.912Q-21.122-48.161-20.873-48.190L-20.780-48.190Q-20.531-48.161-20.502-47.912L-20.502-47.414Q-20.233-47.414-19.899-47.285Q-19.564-47.155-19.330-46.970Q-19.081-46.770-18.937-46.445Q-18.793-46.120-18.793-45.783Q-18.793-45.647-18.854-45.537Q-18.915-45.427-19.017-45.363Q-19.120-45.300-19.252-45.300Q-19.442-45.300-19.581-45.434Q-19.721-45.568-19.721-45.764Q-19.721-45.979-19.569-46.110Q-19.769-46.643-20.502-46.750L-20.502-44.733Q-20.023-44.631-19.638-44.404Q-19.252-44.177-19.022-43.815Q-18.793-43.454-18.793-42.971Q-18.793-42.292-19.298-41.801Q-19.804-41.311-20.502-41.213L-20.502-40.700Q-20.531-40.451-20.780-40.422L-20.873-40.422Q-20.990-40.437-21.063-40.510Q-21.137-40.583-21.151-40.700M-20.502-43.981L-20.502-41.872Q-20.233-41.926-19.996-42.070Q-19.760-42.214-19.616-42.441Q-19.472-42.668-19.472-42.932Q-19.472-43.337-19.777-43.620Q-20.082-43.903-20.502-43.981M-22.191-45.803Q-22.191-45.427-21.886-45.197Q-21.581-44.968-21.151-44.870L-21.151-46.740Q-21.552-46.672-21.871-46.423Q-22.191-46.174-22.191-45.803M-16.942-42.312Q-16.766-42.033-16.371-41.914Q-15.975-41.794-15.551-41.794Q-15.214-41.794-14.882-41.945Q-14.550-42.097-14.340-42.377Q-14.130-42.658-14.130-43.010Q-14.130-43.371-14.340-43.649Q-14.550-43.928-14.879-44.074Q-15.209-44.221-15.560-44.221L-16.180-44.221Q-16.425-44.250-16.454-44.494L-16.454-44.602Q-16.425-44.841-16.180-44.870L-15.502-44.924Q-15.219-44.924-14.970-45.087Q-14.721-45.251-14.572-45.515Q-14.423-45.778-14.423-46.062Q-14.423-46.311-14.603-46.481Q-14.784-46.652-15.045-46.738Q-15.306-46.823-15.551-46.823Q-16.327-46.823-16.620-46.550Q-16.620-46.550-16.603-46.525Q-16.586-46.501-16.581-46.491Q-16.561-46.452-16.561-46.413Q-16.542-46.374-16.542-46.281Q-16.542-46.096-16.679-45.959Q-16.815-45.822-17.001-45.822Q-17.211-45.822-17.340-45.964Q-17.470-46.106-17.470-46.301Q-17.470-46.955-16.879-47.214Q-16.288-47.473-15.541-47.473Q-15.121-47.473-14.689-47.312Q-14.257-47.150-13.973-46.828Q-13.690-46.506-13.690-46.062Q-13.690-45.617-13.910-45.229Q-14.130-44.841-14.520-44.582Q-14.037-44.372-13.720-43.947Q-13.402-43.523-13.402-43.010Q-13.402-42.468-13.710-42.038Q-14.017-41.608-14.515-41.374Q-15.014-41.140-15.541-41.140Q-16.371-41.140-17.067-41.494Q-17.763-41.848-17.763-42.600Q-17.763-42.800-17.631-42.941Q-17.499-43.083-17.294-43.083Q-17.103-43.083-16.967-42.946Q-16.830-42.810-16.830-42.624Q-16.830-42.463-16.942-42.312M-10.775-39.860L-10.834-39.860Q-10.956-39.860-11.058-39.968Q-11.161-40.075-11.161-40.202Q-11.161-40.412-10.951-40.481Q-10.658-40.554-10.441-40.766Q-10.223-40.979-10.155-41.272L-10.214-41.262L-10.243-41.252L-10.321-41.252Q-10.595-41.252-10.783-41.440Q-10.971-41.628-10.971-41.901Q-10.971-42.170-10.780-42.356Q-10.590-42.541-10.321-42.541Q-10.072-42.541-9.874-42.395Q-9.677-42.248-9.574-42.019Q-9.472-41.789-9.472-41.530Q-9.472-40.935-9.830-40.488Q-10.189-40.041-10.775-39.860M-6.835-40.773Q-6.835-40.852-6.805-40.910L-4.003-47.990Q-3.890-48.190-3.685-48.190Q-3.539-48.190-3.436-48.088Q-3.334-47.985-3.334-47.844Q-3.334-47.761-3.363-47.702L-6.166-40.622Q-6.278-40.422-6.483-40.422Q-6.620-40.422-6.727-40.529Q-6.835-40.637-6.835-40.773M-3.685-40.422Q-4.115-40.422-4.335-40.849Q-4.555-41.276-4.555-41.750Q-4.555-42.229-4.337-42.656Q-4.120-43.083-3.685-43.083Q-3.251-43.083-3.034-42.656Q-2.816-42.229-2.816-41.750Q-2.816-41.276-3.036-40.849Q-3.256-40.422-3.685-40.422M-3.695-41.071Q-3.602-41.071-3.539-41.201Q-3.475-41.330-3.444-41.491Q-3.412-41.652-3.412-41.750Q-3.412-41.921-3.483-42.163Q-3.554-42.404-3.676-42.434Q-3.807-42.434-3.881-42.187Q-3.954-41.940-3.954-41.750Q-3.954-41.584-3.888-41.345Q-3.822-41.106-3.695-41.071M-6.483-45.520Q-6.776-45.520-6.976-45.734Q-7.177-45.949-7.264-46.257Q-7.352-46.565-7.352-46.862Q-7.352-47.150-7.264-47.456Q-7.177-47.761-6.976-47.976Q-6.776-48.190-6.483-48.190Q-6.190-48.190-5.990-47.976Q-5.790-47.761-5.702-47.456Q-5.614-47.150-5.614-46.862Q-5.614-46.565-5.702-46.257Q-5.790-45.949-5.990-45.734Q-6.190-45.520-6.483-45.520M-6.493-46.174L-6.464-46.174Q-6.356-46.184-6.285-46.435Q-6.215-46.687-6.215-46.862Q-6.215-47.058-6.281-47.282Q-6.347-47.507-6.473-47.541L-6.483-47.541L-6.493-47.541Q-6.615-47.526-6.683-47.280Q-6.752-47.033-6.752-46.862Q-6.752-46.687-6.686-46.447Q-6.620-46.208-6.493-46.174M1.027-41.252L-1.874-41.252Q-2.118-41.281-2.157-41.530L-2.157-41.623Q-2.118-41.872-1.874-41.901L-0.946-41.901L-0.946-44.914L-1.874-44.914Q-2.118-44.943-2.157-45.192L-2.157-45.280Q-2.118-45.534-1.874-45.564L-0.497-45.564Q-0.375-45.549-0.302-45.476Q-0.228-45.402-0.214-45.280L-0.214-44.841Q-0.014-45.075 0.257-45.256Q0.528-45.437 0.846-45.529Q1.163-45.622 1.476-45.622Q1.842-45.622 2.128-45.471Q2.413-45.319 2.413-44.992Q2.413-44.802 2.291-44.668Q2.169-44.533 1.974-44.533Q1.793-44.533 1.664-44.658Q1.534-44.782 1.534-44.973L1.466-44.973Q0.987-44.973 0.602-44.714Q0.216-44.455 0.001-44.028Q-0.214-43.601-0.214-43.132L-0.214-41.901L1.027-41.901Q1.276-41.867 1.305-41.623L1.305-41.530Q1.276-41.286 1.027-41.252M5.094-41.193Q4.659-41.193 4.300-41.379Q3.942-41.565 3.680-41.882Q3.419-42.199 3.278-42.597Q3.136-42.995 3.136-43.410Q3.136-43.835 3.287-44.233Q3.439-44.631 3.724-44.948Q4.010-45.266 4.388-45.444Q4.767-45.622 5.196-45.622Q5.846-45.622 6.354-45.192L6.354-46.711L5.782-46.711Q5.533-46.740 5.504-46.994L5.504-47.082Q5.533-47.331 5.782-47.360L6.803-47.360Q7.047-47.331 7.086-47.082L7.086-41.901L7.653-41.901Q7.775-41.887 7.848-41.818Q7.921-41.750 7.936-41.623L7.936-41.530Q7.921-41.413 7.848-41.340Q7.775-41.267 7.653-41.252L6.632-41.252Q6.515-41.267 6.442-41.340Q6.368-41.413 6.354-41.530L6.354-41.731Q5.792-41.193 5.094-41.193M5.153-41.843Q5.607-41.843 5.929-42.199Q6.251-42.556 6.354-43.034L6.354-44.084Q6.246-44.460 5.944-44.716Q5.641-44.973 5.255-44.973Q4.855-44.973 4.535-44.748Q4.215-44.523 4.039-44.155Q3.863-43.786 3.863-43.400Q3.863-43.039 4.022-42.670Q4.181-42.302 4.474-42.072Q4.767-41.843 5.153-41.843M8.805-41.530L8.805-41.623Q8.834-41.872 9.083-41.901L10.421-41.901L10.421-44.914L9.161-44.914Q8.912-44.948 8.883-45.192L8.883-45.280Q8.898-45.398 8.973-45.473Q9.049-45.549 9.161-45.564L10.875-45.564Q10.992-45.549 11.066-45.476Q11.139-45.402 11.153-45.280L11.153-41.901L12.335-41.901Q12.570-41.872 12.613-41.623L12.613-41.530Q12.570-41.281 12.335-41.252L9.083-41.252Q8.834-41.281 8.805-41.530M10.113-46.853Q10.113-47.067 10.265-47.219Q10.416-47.370 10.631-47.370Q10.851-47.370 11.002-47.219Q11.153-47.067 11.153-46.853Q11.153-46.643 10.997-46.486Q10.841-46.330 10.631-46.330Q10.426-46.330 10.270-46.486Q10.113-46.643 10.113-46.853\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(174.25 2.778)\">\u003Cpath d=\"M-58.162-41.283L-59.385-44.139Q-59.467-44.315-59.611-44.359Q-59.756-44.404-60.025-44.404L-60.025-44.701L-58.314-44.701L-58.314-44.404Q-58.736-44.404-58.736-44.221Q-58.736-44.186-58.721-44.139L-57.775-41.947L-56.935-43.924Q-56.896-44.002-56.896-44.092Q-56.896-44.232-57.002-44.318Q-57.107-44.404-57.248-44.404L-57.248-44.701L-55.896-44.701L-55.896-44.404Q-56.420-44.404-56.635-43.924L-57.760-41.283Q-57.822-41.174-57.928-41.174L-57.994-41.174Q-58.107-41.174-58.162-41.283\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.25 2.778)\">\u003Cpath d=\"M-55.851-42.084Q-55.851-42.568-55.449-42.863Q-55.046-43.158-54.496-43.277Q-53.945-43.397-53.453-43.397L-53.453-43.686Q-53.453-43.912-53.568-44.119Q-53.683-44.326-53.880-44.445Q-54.078-44.565-54.308-44.565Q-54.734-44.565-55.019-44.459Q-54.949-44.432-54.902-44.377Q-54.855-44.322-54.830-44.252Q-54.804-44.182-54.804-44.107Q-54.804-44.002-54.855-43.910Q-54.906-43.818-54.998-43.768Q-55.089-43.717-55.195-43.717Q-55.300-43.717-55.392-43.768Q-55.484-43.818-55.535-43.910Q-55.585-44.002-55.585-44.107Q-55.585-44.525-55.197-44.672Q-54.808-44.818-54.308-44.818Q-53.976-44.818-53.623-44.688Q-53.269-44.557-53.041-44.303Q-52.812-44.049-52.812-43.701L-52.812-41.900Q-52.812-41.768-52.740-41.658Q-52.667-41.549-52.539-41.549Q-52.414-41.549-52.345-41.654Q-52.277-41.760-52.277-41.900L-52.277-42.412L-51.996-42.412L-51.996-41.900Q-51.996-41.697-52.113-41.539Q-52.230-41.381-52.412-41.297Q-52.593-41.213-52.796-41.213Q-53.027-41.213-53.179-41.385Q-53.332-41.557-53.363-41.787Q-53.523-41.506-53.832-41.340Q-54.140-41.174-54.492-41.174Q-55.003-41.174-55.427-41.397Q-55.851-41.619-55.851-42.084M-55.164-42.084Q-55.164-41.799-54.937-41.613Q-54.710-41.428-54.417-41.428Q-54.171-41.428-53.947-41.545Q-53.722-41.662-53.587-41.865Q-53.453-42.068-53.453-42.322L-53.453-43.154Q-53.718-43.154-54.003-43.100Q-54.289-43.045-54.560-42.916Q-54.832-42.787-54.998-42.580Q-55.164-42.373-55.164-42.084M-49.789-41.252L-51.621-41.252L-51.621-41.549Q-51.347-41.549-51.179-41.596Q-51.011-41.643-51.011-41.811L-51.011-45.971Q-51.011-46.186-51.074-46.281Q-51.136-46.377-51.255-46.398Q-51.374-46.420-51.621-46.420L-51.621-46.717L-50.398-46.803L-50.398-41.811Q-50.398-41.643-50.230-41.596Q-50.062-41.549-49.789-41.549L-49.789-41.252M-44.398-41.252L-49.246-41.252L-49.246-41.549Q-48.925-41.549-48.681-41.596Q-48.437-41.643-48.437-41.811L-48.437-46.154Q-48.437-46.326-48.681-46.373Q-48.925-46.420-49.246-46.420L-49.246-46.717L-44.511-46.717L-44.277-44.869L-44.558-44.869Q-44.640-45.565-44.816-45.885Q-44.992-46.205-45.339-46.313Q-45.687-46.420-46.406-46.420L-47.269-46.420Q-47.488-46.420-47.580-46.377Q-47.671-46.334-47.671-46.154L-47.671-44.236L-47.039-44.236Q-46.613-44.236-46.406-44.299Q-46.199-44.361-46.111-44.557Q-46.023-44.752-46.023-45.174L-45.742-45.174L-45.742-43.006L-46.023-43.006Q-46.023-43.428-46.111-43.621Q-46.199-43.815-46.406-43.877Q-46.613-43.940-47.039-43.940L-47.671-43.940L-47.671-41.811Q-47.671-41.639-47.580-41.594Q-47.488-41.549-47.269-41.549L-46.343-41.549Q-45.761-41.549-45.408-41.631Q-45.054-41.713-44.849-41.910Q-44.644-42.107-44.531-42.445Q-44.417-42.783-44.324-43.365L-44.046-43.365L-44.398-41.252M-37.843-42.229L-43.156-42.229Q-43.234-42.236-43.283-42.285Q-43.332-42.334-43.332-42.412Q-43.332-42.482-43.285-42.533Q-43.238-42.584-43.156-42.596L-37.843-42.596Q-37.769-42.584-37.722-42.533Q-37.675-42.482-37.675-42.412Q-37.675-42.334-37.724-42.285Q-37.773-42.236-37.843-42.229M-37.843-43.916L-43.156-43.916Q-43.234-43.924-43.283-43.973Q-43.332-44.022-43.332-44.100Q-43.332-44.170-43.285-44.221Q-43.238-44.272-43.156-44.283L-37.843-44.283Q-37.769-44.272-37.722-44.221Q-37.675-44.170-37.675-44.100Q-37.675-44.022-37.724-43.973Q-37.773-43.924-37.843-43.916M-36.402-41.885Q-36.210-41.611-35.855-41.484Q-35.499-41.357-35.117-41.357Q-34.781-41.357-34.572-41.543Q-34.363-41.729-34.267-42.022Q-34.171-42.315-34.171-42.627Q-34.171-42.951-34.269-43.246Q-34.367-43.541-34.580-43.725Q-34.792-43.908-35.124-43.908L-35.691-43.908Q-35.722-43.908-35.751-43.938Q-35.781-43.967-35.781-43.994L-35.781-44.076Q-35.781-44.111-35.751-44.137Q-35.722-44.162-35.691-44.162L-35.210-44.197Q-34.925-44.197-34.728-44.402Q-34.531-44.607-34.435-44.902Q-34.339-45.197-34.339-45.475Q-34.339-45.854-34.539-46.092Q-34.738-46.330-35.117-46.330Q-35.437-46.330-35.726-46.223Q-36.015-46.115-36.179-45.893Q-35.999-45.893-35.876-45.766Q-35.753-45.639-35.753-45.467Q-35.753-45.295-35.878-45.170Q-36.003-45.045-36.179-45.045Q-36.351-45.045-36.476-45.170Q-36.601-45.295-36.601-45.467Q-36.601-45.834-36.376-46.082Q-36.152-46.330-35.812-46.451Q-35.472-46.572-35.117-46.572Q-34.769-46.572-34.406-46.451Q-34.042-46.330-33.794-46.080Q-33.546-45.830-33.546-45.475Q-33.546-44.990-33.865-44.607Q-34.183-44.225-34.660-44.053Q-34.109-43.943-33.708-43.557Q-33.308-43.170-33.308-42.635Q-33.308-42.178-33.572-41.822Q-33.835-41.467-34.257-41.275Q-34.679-41.084-35.117-41.084Q-35.527-41.084-35.919-41.219Q-36.312-41.354-36.578-41.639Q-36.843-41.924-36.843-42.342Q-36.843-42.537-36.710-42.666Q-36.578-42.795-36.386-42.795Q-36.261-42.795-36.158-42.736Q-36.054-42.678-35.992-42.572Q-35.929-42.467-35.929-42.342Q-35.929-42.147-36.064-42.016Q-36.199-41.885-36.402-41.885\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.25 2.778)\">\u003Cpath d=\"M-23.108-43.068L-29.452-43.068Q-29.526-43.068-29.577-43.125Q-29.627-43.182-29.627-43.252Q-29.627-43.322-29.580-43.379Q-29.534-43.436-29.452-43.436L-23.108-43.436Q-23.561-43.764-23.858-44.231Q-24.155-44.697-24.260-45.236Q-24.260-45.338-24.163-45.365L-23.995-45.365Q-23.913-45.346-23.893-45.260Q-23.764-44.584-23.284-44.066Q-22.803-43.549-22.139-43.357Q-22.077-43.334-22.077-43.252Q-22.077-43.170-22.139-43.147Q-22.803-42.959-23.284-42.440Q-23.764-41.920-23.893-41.244Q-23.913-41.158-23.995-41.139L-24.163-41.139Q-24.260-41.166-24.260-41.268Q-24.186-41.635-24.028-41.967Q-23.870-42.299-23.637-42.576Q-23.405-42.854-23.108-43.068\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.25 2.778)\">\u003Cpath d=\"M-17.583-40.986Q-17.583-41.049-17.552-41.092L-13.806-46.350Q-14.263-46.115-14.829-46.115Q-15.482-46.115-16.087-46.436Q-15.943-46.088-15.943-45.643Q-15.943-45.283-16.064-44.912Q-16.185-44.541-16.435-44.285Q-16.685-44.029-17.048-44.029Q-17.435-44.029-17.718-44.273Q-18.001-44.518-18.148-44.891Q-18.294-45.264-18.294-45.643Q-18.294-46.022-18.148-46.393Q-18.001-46.764-17.718-47.008Q-17.435-47.252-17.048-47.252Q-16.732-47.252-16.462-47.014Q-16.126-46.709-15.697-46.537Q-15.267-46.365-14.829-46.365Q-14.337-46.365-13.919-46.578Q-13.501-46.791-13.201-47.190Q-13.158-47.252-13.064-47.252Q-12.990-47.252-12.935-47.197Q-12.880-47.143-12.880-47.068Q-12.880-47.006-12.912-46.963L-17.255-40.869Q-17.302-40.803-17.400-40.803Q-17.482-40.803-17.533-40.854Q-17.583-40.904-17.583-40.986M-17.048-44.283Q-16.775-44.283-16.587-44.508Q-16.400-44.732-16.312-45.055Q-16.224-45.377-16.224-45.643Q-16.224-45.900-16.312-46.223Q-16.400-46.545-16.587-46.770Q-16.775-46.994-17.048-46.994Q-17.435-46.994-17.578-46.566Q-17.720-46.139-17.720-45.643Q-17.720-45.135-17.579-44.709Q-17.439-44.283-17.048-44.283M-13.271-40.803Q-13.658-40.803-13.941-41.049Q-14.224-41.295-14.372-41.668Q-14.521-42.041-14.521-42.420Q-14.521-42.693-14.435-42.981Q-14.349-43.268-14.195-43.502Q-14.040-43.736-13.804-43.883Q-13.568-44.029-13.271-44.029Q-12.990-44.029-12.783-43.877Q-12.576-43.725-12.437-43.482Q-12.298-43.240-12.232-42.959Q-12.165-42.678-12.165-42.420Q-12.165-42.061-12.287-41.688Q-12.408-41.315-12.658-41.059Q-12.908-40.803-13.271-40.803M-13.271-41.061Q-12.997-41.061-12.810-41.285Q-12.622-41.510-12.535-41.832Q-12.447-42.154-12.447-42.420Q-12.447-42.678-12.535-43Q-12.622-43.322-12.810-43.547Q-12.997-43.772-13.271-43.772Q-13.662-43.772-13.802-43.342Q-13.943-42.912-13.943-42.420Q-13.943-41.912-13.806-41.486Q-13.669-41.061-13.271-41.061M-9.443-41.252L-11.423-41.252L-11.423-41.549Q-11.154-41.549-10.986-41.594Q-10.818-41.639-10.818-41.811L-10.818-43.947Q-10.818-44.162-10.880-44.258Q-10.943-44.354-11.060-44.375Q-11.177-44.397-11.423-44.397L-11.423-44.693L-10.255-44.779L-10.255-43.994Q-10.177-44.205-10.025-44.391Q-9.872-44.576-9.673-44.678Q-9.474-44.779-9.247-44.779Q-9.001-44.779-8.810-44.635Q-8.619-44.490-8.619-44.260Q-8.619-44.104-8.724-43.994Q-8.829-43.885-8.986-43.885Q-9.142-43.885-9.251-43.994Q-9.361-44.104-9.361-44.260Q-9.361-44.420-9.255-44.525Q-9.579-44.525-9.794-44.297Q-10.009-44.068-10.105-43.729Q-10.201-43.389-10.201-43.084L-10.201-41.811Q-10.201-41.643-9.974-41.596Q-9.747-41.549-9.443-41.549L-9.443-41.252M-6.322-41.174Q-6.802-41.174-7.210-41.418Q-7.619-41.662-7.857-42.076Q-8.095-42.490-8.095-42.979Q-8.095-43.471-7.837-43.887Q-7.579-44.303-7.148-44.541Q-6.716-44.779-6.224-44.779Q-5.603-44.779-5.154-44.342L-5.154-45.971Q-5.154-46.186-5.216-46.281Q-5.279-46.377-5.396-46.398Q-5.513-46.420-5.759-46.420L-5.759-46.717L-4.537-46.803L-4.537-41.994Q-4.537-41.783-4.474-41.688Q-4.412-41.592-4.294-41.570Q-4.177-41.549-3.927-41.549L-3.927-41.252L-5.177-41.174L-5.177-41.658Q-5.642-41.174-6.322-41.174M-6.255-41.428Q-5.915-41.428-5.622-41.619Q-5.329-41.811-5.177-42.107L-5.177-43.940Q-5.326-44.213-5.587-44.369Q-5.849-44.525-6.162-44.525Q-6.787-44.525-7.070-44.078Q-7.353-43.631-7.353-42.971Q-7.353-42.326-7.101-41.877Q-6.849-41.428-6.255-41.428M-1.560-41.252L-3.337-41.252L-3.337-41.549Q-3.064-41.549-2.896-41.596Q-2.728-41.643-2.728-41.811L-2.728-43.947Q-2.728-44.162-2.785-44.258Q-2.841-44.354-2.954-44.375Q-3.068-44.397-3.314-44.397L-3.314-44.693L-2.115-44.779L-2.115-41.811Q-2.115-41.643-1.968-41.596Q-1.822-41.549-1.560-41.549L-1.560-41.252M-3.001-46.174Q-3.001-46.365-2.867-46.496Q-2.732-46.627-2.537-46.627Q-2.415-46.627-2.312-46.565Q-2.208-46.502-2.146-46.398Q-2.083-46.295-2.083-46.174Q-2.083-45.979-2.214-45.844Q-2.345-45.709-2.537-45.709Q-2.736-45.709-2.869-45.842Q-3.001-45.975-3.001-46.174\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(305.132 2.778)\">\u003Cpath d=\"M-59.017-40.986Q-59.017-41.049-58.986-41.092L-55.240-46.350Q-55.697-46.115-56.264-46.115Q-56.916-46.115-57.521-46.436Q-57.377-46.088-57.377-45.643Q-57.377-45.283-57.498-44.912Q-57.619-44.541-57.869-44.285Q-58.119-44.029-58.482-44.029Q-58.869-44.029-59.152-44.273Q-59.435-44.518-59.582-44.891Q-59.728-45.264-59.728-45.643Q-59.728-46.022-59.582-46.393Q-59.435-46.764-59.152-47.008Q-58.869-47.252-58.482-47.252Q-58.166-47.252-57.896-47.014Q-57.560-46.709-57.131-46.537Q-56.701-46.365-56.264-46.365Q-55.771-46.365-55.353-46.578Q-54.935-46.791-54.635-47.190Q-54.592-47.252-54.498-47.252Q-54.424-47.252-54.369-47.197Q-54.314-47.143-54.314-47.068Q-54.314-47.006-54.346-46.963L-58.689-40.869Q-58.736-40.803-58.834-40.803Q-58.916-40.803-58.967-40.854Q-59.017-40.904-59.017-40.986M-58.482-44.283Q-58.209-44.283-58.021-44.508Q-57.834-44.732-57.746-45.055Q-57.658-45.377-57.658-45.643Q-57.658-45.900-57.746-46.223Q-57.834-46.545-58.021-46.770Q-58.209-46.994-58.482-46.994Q-58.869-46.994-59.012-46.566Q-59.154-46.139-59.154-45.643Q-59.154-45.135-59.014-44.709Q-58.873-44.283-58.482-44.283M-54.705-40.803Q-55.092-40.803-55.375-41.049Q-55.658-41.295-55.806-41.668Q-55.955-42.041-55.955-42.420Q-55.955-42.693-55.869-42.981Q-55.783-43.268-55.629-43.502Q-55.474-43.736-55.238-43.883Q-55.002-44.029-54.705-44.029Q-54.424-44.029-54.217-43.877Q-54.010-43.725-53.871-43.482Q-53.732-43.240-53.666-42.959Q-53.599-42.678-53.599-42.420Q-53.599-42.061-53.721-41.688Q-53.842-41.315-54.092-41.059Q-54.342-40.803-54.705-40.803M-54.705-41.061Q-54.431-41.061-54.244-41.285Q-54.056-41.510-53.969-41.832Q-53.881-42.154-53.881-42.420Q-53.881-42.678-53.969-43Q-54.056-43.322-54.244-43.547Q-54.431-43.772-54.705-43.772Q-55.096-43.772-55.236-43.342Q-55.377-42.912-55.377-42.420Q-55.377-41.912-55.240-41.486Q-55.103-41.061-54.705-41.061M-50.877-41.252L-52.857-41.252L-52.857-41.549Q-52.588-41.549-52.420-41.594Q-52.252-41.639-52.252-41.811L-52.252-43.947Q-52.252-44.162-52.314-44.258Q-52.377-44.354-52.494-44.375Q-52.611-44.397-52.857-44.397L-52.857-44.693L-51.689-44.779L-51.689-43.994Q-51.611-44.205-51.459-44.391Q-51.306-44.576-51.107-44.678Q-50.908-44.779-50.681-44.779Q-50.435-44.779-50.244-44.635Q-50.053-44.490-50.053-44.260Q-50.053-44.104-50.158-43.994Q-50.264-43.885-50.420-43.885Q-50.576-43.885-50.685-43.994Q-50.795-44.104-50.795-44.260Q-50.795-44.420-50.689-44.525Q-51.014-44.525-51.228-44.297Q-51.443-44.068-51.539-43.729Q-51.635-43.389-51.635-43.084L-51.635-41.811Q-51.635-41.643-51.408-41.596Q-51.181-41.549-50.877-41.549L-50.877-41.252M-47.756-41.174Q-48.236-41.174-48.644-41.418Q-49.053-41.662-49.291-42.076Q-49.529-42.490-49.529-42.979Q-49.529-43.471-49.271-43.887Q-49.014-44.303-48.582-44.541Q-48.150-44.779-47.658-44.779Q-47.037-44.779-46.588-44.342L-46.588-45.971Q-46.588-46.186-46.650-46.281Q-46.713-46.377-46.830-46.398Q-46.947-46.420-47.193-46.420L-47.193-46.717L-45.971-46.803L-45.971-41.994Q-45.971-41.783-45.908-41.688Q-45.846-41.592-45.728-41.570Q-45.611-41.549-45.361-41.549L-45.361-41.252L-46.611-41.174L-46.611-41.658Q-47.076-41.174-47.756-41.174M-47.689-41.428Q-47.349-41.428-47.056-41.619Q-46.764-41.811-46.611-42.107L-46.611-43.940Q-46.760-44.213-47.021-44.369Q-47.283-44.525-47.596-44.525Q-48.221-44.525-48.504-44.078Q-48.787-43.631-48.787-42.971Q-48.787-42.326-48.535-41.877Q-48.283-41.428-47.689-41.428M-42.994-41.252L-44.771-41.252L-44.771-41.549Q-44.498-41.549-44.330-41.596Q-44.162-41.643-44.162-41.811L-44.162-43.947Q-44.162-44.162-44.219-44.258Q-44.275-44.354-44.389-44.375Q-44.502-44.397-44.748-44.397L-44.748-44.693L-43.549-44.779L-43.549-41.811Q-43.549-41.643-43.402-41.596Q-43.256-41.549-42.994-41.549L-42.994-41.252M-44.435-46.174Q-44.435-46.365-44.301-46.496Q-44.166-46.627-43.971-46.627Q-43.849-46.627-43.746-46.565Q-43.642-46.502-43.580-46.398Q-43.517-46.295-43.517-46.174Q-43.517-45.979-43.648-45.844Q-43.779-45.709-43.971-45.709Q-44.170-45.709-44.303-45.842Q-44.435-45.975-44.435-46.174M-36.771-42.229L-42.084-42.229Q-42.162-42.236-42.211-42.285Q-42.260-42.334-42.260-42.412Q-42.260-42.482-42.213-42.533Q-42.166-42.584-42.084-42.596L-36.771-42.596Q-36.697-42.584-36.650-42.533Q-36.603-42.482-36.603-42.412Q-36.603-42.334-36.652-42.285Q-36.701-42.236-36.771-42.229M-36.771-43.916L-42.084-43.916Q-42.162-43.924-42.211-43.973Q-42.260-44.022-42.260-44.100Q-42.260-44.170-42.213-44.221Q-42.166-44.272-42.084-44.283L-36.771-44.283Q-36.697-44.272-36.650-44.221Q-36.603-44.170-36.603-44.100Q-36.603-44.022-36.652-43.973Q-36.701-43.924-36.771-43.916M-35.330-41.885Q-35.139-41.611-34.783-41.484Q-34.428-41.357-34.045-41.357Q-33.709-41.357-33.500-41.543Q-33.291-41.729-33.195-42.022Q-33.099-42.315-33.099-42.627Q-33.099-42.951-33.197-43.246Q-33.295-43.541-33.508-43.725Q-33.721-43.908-34.053-43.908L-34.619-43.908Q-34.650-43.908-34.680-43.938Q-34.709-43.967-34.709-43.994L-34.709-44.076Q-34.709-44.111-34.680-44.137Q-34.650-44.162-34.619-44.162L-34.139-44.197Q-33.853-44.197-33.656-44.402Q-33.459-44.607-33.363-44.902Q-33.267-45.197-33.267-45.475Q-33.267-45.854-33.467-46.092Q-33.666-46.330-34.045-46.330Q-34.365-46.330-34.654-46.223Q-34.943-46.115-35.107-45.893Q-34.928-45.893-34.805-45.766Q-34.681-45.639-34.681-45.467Q-34.681-45.295-34.806-45.170Q-34.931-45.045-35.107-45.045Q-35.279-45.045-35.404-45.170Q-35.529-45.295-35.529-45.467Q-35.529-45.834-35.305-46.082Q-35.080-46.330-34.740-46.451Q-34.400-46.572-34.045-46.572Q-33.697-46.572-33.334-46.451Q-32.971-46.330-32.722-46.080Q-32.474-45.830-32.474-45.475Q-32.474-44.990-32.793-44.607Q-33.111-44.225-33.588-44.053Q-33.037-43.943-32.637-43.557Q-32.236-43.170-32.236-42.635Q-32.236-42.178-32.500-41.822Q-32.764-41.467-33.185-41.275Q-33.607-41.084-34.045-41.084Q-34.455-41.084-34.847-41.219Q-35.240-41.354-35.506-41.639Q-35.771-41.924-35.771-42.342Q-35.771-42.537-35.639-42.666Q-35.506-42.795-35.314-42.795Q-35.189-42.795-35.086-42.736Q-34.982-42.678-34.920-42.572Q-34.857-42.467-34.857-42.342Q-34.857-42.147-34.992-42.016Q-35.127-41.885-35.330-41.885\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-68.737-30.725h395.494\"\u002F>\u003Cg transform=\"translate(-2.157 23.917)\">\u003Cpath d=\"M-56.615-41.252L-59.775-41.252L-59.775-41.459Q-59.775-41.486-59.752-41.518L-58.400-42.916Q-58.021-43.303-57.773-43.592Q-57.525-43.881-57.351-44.238Q-57.178-44.596-57.178-44.986Q-57.178-45.334-57.310-45.627Q-57.443-45.920-57.697-46.098Q-57.951-46.275-58.306-46.275Q-58.666-46.275-58.957-46.080Q-59.248-45.885-59.392-45.557L-59.338-45.557Q-59.154-45.557-59.029-45.436Q-58.904-45.315-58.904-45.123Q-58.904-44.943-59.029-44.815Q-59.154-44.686-59.338-44.686Q-59.517-44.686-59.646-44.815Q-59.775-44.943-59.775-45.123Q-59.775-45.525-59.555-45.861Q-59.334-46.197-58.969-46.385Q-58.603-46.572-58.201-46.572Q-57.721-46.572-57.305-46.385Q-56.889-46.197-56.637-45.836Q-56.385-45.475-56.385-44.986Q-56.385-44.627-56.539-44.324Q-56.693-44.022-56.945-43.762Q-57.197-43.502-57.547-43.217Q-57.896-42.932-58.064-42.779L-58.994-41.940L-58.279-41.940Q-56.904-41.940-56.865-41.979Q-56.795-42.057-56.752-42.242Q-56.709-42.428-56.666-42.717L-56.385-42.717\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(29.14 24.395)\">\u003Cpath d=\"M-57.579-41.140Q-58.267-41.140-58.758-41.645Q-59.249-42.150-59.486-42.900Q-59.722-43.649-59.722-44.314Q-59.722-44.973-59.486-45.715Q-59.249-46.457-58.758-46.965Q-58.267-47.473-57.579-47.473Q-57.052-47.473-56.639-47.170Q-56.226-46.867-55.965-46.384Q-55.704-45.900-55.572-45.358Q-55.440-44.816-55.440-44.314Q-55.440-43.806-55.572-43.264Q-55.704-42.722-55.968-42.233Q-56.231-41.745-56.641-41.442Q-57.052-41.140-57.579-41.140M-57.579-41.794Q-57.193-41.794-56.922-42.070Q-56.651-42.346-56.488-42.761Q-56.324-43.176-56.248-43.623Q-56.173-44.069-56.173-44.431Q-56.173-44.753-56.251-45.170Q-56.329-45.588-56.493-45.959Q-56.656-46.330-56.932-46.577Q-57.208-46.823-57.579-46.823Q-57.950-46.823-58.219-46.584Q-58.487-46.345-58.656-45.971Q-58.824-45.598-58.907-45.175Q-58.990-44.753-58.990-44.431Q-58.990-43.952-58.851-43.332Q-58.712-42.712-58.389-42.253Q-58.067-41.794-57.579-41.794M-52.921-41.252L-54.381-41.252Q-54.635-41.281-54.664-41.530L-54.664-41.623Q-54.635-41.872-54.381-41.901L-53.853-41.901L-52.652-43.474L-53.780-44.914L-54.322-44.914Q-54.571-44.943-54.600-45.192L-54.600-45.280Q-54.586-45.402-54.517-45.476Q-54.449-45.549-54.322-45.564L-52.862-45.564Q-52.628-45.534-52.584-45.280L-52.584-45.192Q-52.628-44.943-52.862-44.914L-53.053-44.914L-52.364-43.981L-51.680-44.914L-51.890-44.914Q-52.130-44.943-52.174-45.192L-52.174-45.280Q-52.154-45.398-52.078-45.473Q-52.003-45.549-51.890-45.564L-50.430-45.564Q-50.313-45.549-50.240-45.476Q-50.167-45.402-50.152-45.280L-50.152-45.192Q-50.181-44.943-50.430-44.914L-50.963-44.914L-52.061-43.474L-50.831-41.901L-50.294-41.901Q-50.172-41.887-50.098-41.818Q-50.025-41.750-50.011-41.623L-50.011-41.530Q-50.025-41.413-50.098-41.340Q-50.172-41.267-50.294-41.252L-51.754-41.252Q-51.983-41.281-52.032-41.530L-52.032-41.623Q-51.988-41.872-51.754-41.901L-51.534-41.901L-52.364-43.064L-53.150-41.901L-52.921-41.901Q-52.686-41.872-52.642-41.623L-52.642-41.530Q-52.686-41.281-52.921-41.252M-47.081-41.140Q-47.769-41.140-48.260-41.645Q-48.751-42.150-48.988-42.900Q-49.224-43.649-49.224-44.314Q-49.224-44.973-48.988-45.715Q-48.751-46.457-48.260-46.965Q-47.769-47.473-47.081-47.473Q-46.554-47.473-46.141-47.170Q-45.728-46.867-45.467-46.384Q-45.206-45.900-45.074-45.358Q-44.942-44.816-44.942-44.314Q-44.942-43.806-45.074-43.264Q-45.206-42.722-45.470-42.233Q-45.733-41.745-46.143-41.442Q-46.554-41.140-47.081-41.140M-47.081-41.794Q-46.695-41.794-46.424-42.070Q-46.153-42.346-45.990-42.761Q-45.826-43.176-45.750-43.623Q-45.675-44.069-45.675-44.431Q-45.675-44.753-45.753-45.170Q-45.831-45.588-45.994-45.959Q-46.158-46.330-46.434-46.577Q-46.710-46.823-47.081-46.823Q-47.452-46.823-47.721-46.584Q-47.989-46.345-48.158-45.971Q-48.326-45.598-48.409-45.175Q-48.492-44.753-48.492-44.431Q-48.492-43.952-48.353-43.332Q-48.214-42.712-47.891-42.253Q-47.569-41.794-47.081-41.794M-43.922-42.580Q-43.922-43.147-43.404-43.476Q-42.887-43.806-42.205-43.928Q-41.524-44.050-40.924-44.050L-40.924-44.133Q-40.924-44.543-41.280-44.773Q-41.637-45.002-42.076-45.002Q-42.525-45.002-42.745-44.963Q-42.735-44.963-42.735-44.880Q-42.735-44.694-42.872-44.558Q-43.009-44.421-43.194-44.421Q-43.399-44.421-43.531-44.563Q-43.663-44.704-43.663-44.904Q-43.663-45.393-43.197-45.522Q-42.730-45.651-42.052-45.651Q-41.622-45.651-41.187-45.473Q-40.753-45.295-40.474-44.958Q-40.196-44.621-40.196-44.172L-40.196-41.994Q-40.196-41.901-39.493-41.901Q-39.244-41.872-39.215-41.623L-39.215-41.530Q-39.244-41.281-39.493-41.252L-39.664-41.252Q-40.084-41.252-40.369-41.313Q-40.655-41.374-40.826-41.594Q-41.392-41.193-42.325-41.193Q-42.721-41.193-43.092-41.364Q-43.463-41.535-43.692-41.850Q-43.922-42.165-43.922-42.580M-43.194-42.570Q-43.194-42.238-42.884-42.041Q-42.574-41.843-42.203-41.843Q-41.812-41.843-41.495-41.950Q-41.334-42.009-41.143-42.136Q-40.953-42.263-40.953-42.380Q-40.953-42.375-40.938-42.451Q-40.924-42.526-40.924-42.570L-40.924-43.420Q-41.153-43.420-41.534-43.381Q-41.915-43.342-42.286-43.252Q-42.657-43.161-42.926-42.988Q-43.194-42.815-43.194-42.570\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt10\" font-size=\"10\">\u003Cg transform=\"translate(68.974 23.7)\">\u003Cpath d=\"M-59.439-41.530L-59.439-41.623Q-59.410-41.872-59.161-41.901L-57.823-41.901L-57.823-44.914L-59.083-44.914Q-59.332-44.948-59.361-45.192L-59.361-45.280Q-59.347-45.398-59.271-45.473Q-59.195-45.549-59.083-45.564L-57.369-45.564Q-57.252-45.549-57.179-45.476Q-57.105-45.402-57.091-45.280L-57.091-41.901L-55.909-41.901Q-55.675-41.872-55.631-41.623L-55.631-41.530Q-55.675-41.281-55.909-41.252L-59.161-41.252Q-59.410-41.281-59.439-41.530M-58.131-46.853Q-58.131-47.067-57.979-47.219Q-57.828-47.370-57.613-47.370Q-57.393-47.370-57.242-47.219Q-57.091-47.067-57.091-46.853Q-57.091-46.643-57.247-46.486Q-57.403-46.330-57.613-46.330Q-57.818-46.330-57.974-46.486Q-58.131-46.643-58.131-46.853M-51.471-41.252L-54.371-41.252Q-54.615-41.281-54.654-41.530L-54.654-41.623Q-54.615-41.872-54.371-41.901L-53.443-41.901L-53.443-44.914L-54.371-44.914Q-54.615-44.943-54.654-45.192L-54.654-45.280Q-54.615-45.534-54.371-45.564L-52.994-45.564Q-52.872-45.549-52.799-45.476Q-52.725-45.402-52.711-45.280L-52.711-44.841Q-52.511-45.075-52.240-45.256Q-51.969-45.437-51.651-45.529Q-51.334-45.622-51.021-45.622Q-50.655-45.622-50.369-45.471Q-50.084-45.319-50.084-44.992Q-50.084-44.802-50.206-44.668Q-50.328-44.533-50.523-44.533Q-50.704-44.533-50.833-44.658Q-50.963-44.782-50.963-44.973L-51.031-44.973Q-51.510-44.973-51.895-44.714Q-52.281-44.455-52.496-44.028Q-52.711-43.601-52.711-43.132L-52.711-41.901L-51.471-41.901Q-51.222-41.867-51.192-41.623L-51.192-41.530Q-51.222-41.286-51.471-41.252M-49.762-41.530L-49.762-41.623Q-49.718-41.872-49.483-41.901L-49.195-41.901L-49.195-44.914L-49.483-44.914Q-49.718-44.943-49.762-45.192L-49.762-45.280Q-49.718-45.534-49.483-45.564L-48.873-45.564Q-48.746-45.549-48.670-45.463Q-48.595-45.378-48.595-45.261Q-48.194-45.622-47.681-45.622Q-47.442-45.622-47.237-45.481Q-47.032-45.339-46.925-45.100Q-46.495-45.622-45.875-45.622Q-44.972-45.622-44.972-44.172L-44.972-41.901L-44.683-41.901Q-44.449-41.872-44.405-41.623L-44.405-41.530Q-44.454-41.281-44.683-41.252L-45.753-41.252Q-46.002-41.286-46.031-41.530L-46.031-41.623Q-46.002-41.867-45.753-41.901L-45.572-41.901L-45.572-44.133Q-45.572-44.973-45.933-44.973Q-46.226-44.973-46.417-44.770Q-46.607-44.567-46.695-44.274Q-46.783-43.981-46.783-43.693L-46.783-41.901L-46.495-41.901Q-46.256-41.872-46.212-41.623L-46.212-41.530Q-46.261-41.281-46.495-41.252L-47.564-41.252Q-47.813-41.286-47.843-41.530L-47.843-41.623Q-47.813-41.867-47.564-41.901L-47.384-41.901L-47.384-44.133Q-47.384-44.973-47.745-44.973Q-48.038-44.973-48.228-44.770Q-48.419-44.567-48.507-44.274Q-48.595-43.981-48.595-43.693L-48.595-41.901L-48.302-41.901Q-48.067-41.872-48.023-41.623L-48.023-41.530Q-48.067-41.281-48.302-41.252L-49.483-41.252Q-49.713-41.281-49.762-41.530M-41.832-41.193Q-42.413-41.193-42.887-41.499Q-43.360-41.804-43.631-42.321Q-43.902-42.839-43.902-43.410Q-43.902-43.986-43.636-44.502Q-43.370-45.017-42.891-45.334Q-42.413-45.651-41.832-45.651Q-41.388-45.651-41.002-45.466Q-40.616-45.280-40.345-44.973Q-40.074-44.665-39.918-44.250Q-39.762-43.835-39.762-43.410Q-39.762-42.839-40.033-42.324Q-40.304-41.809-40.780-41.501Q-41.256-41.193-41.832-41.193M-41.832-41.843Q-41.231-41.843-40.863-42.358Q-40.494-42.873-40.494-43.493Q-40.494-43.874-40.665-44.221Q-40.836-44.567-41.139-44.785Q-41.441-45.002-41.832-45.002Q-42.218-45.002-42.523-44.787Q-42.828-44.572-43.001-44.223Q-43.175-43.874-43.175-43.493Q-43.175-42.873-42.804-42.358Q-42.432-41.843-41.832-41.843M-37.125-41.511L-38.253-44.914L-38.687-44.914Q-38.936-44.948-38.966-45.192L-38.966-45.280Q-38.951-45.398-38.875-45.473Q-38.800-45.549-38.687-45.564L-37.222-45.564Q-37.110-45.549-37.034-45.473Q-36.959-45.398-36.944-45.280L-36.944-45.192Q-36.973-44.948-37.222-44.914L-37.623-44.914L-36.583-41.804L-35.543-44.914L-35.943-44.914Q-36.197-44.948-36.226-45.192L-36.226-45.280Q-36.197-45.529-35.943-45.564L-34.483-45.564Q-34.371-45.549-34.295-45.473Q-34.220-45.398-34.205-45.280L-34.205-45.192Q-34.234-44.948-34.483-44.914L-34.913-44.914L-36.046-41.511Q-36.090-41.374-36.204-41.294Q-36.319-41.213-36.466-41.213L-36.705-41.213Q-36.851-41.213-36.966-41.294Q-37.081-41.374-37.125-41.511M-31.075-39.314L-31.075-39.401Q-31.046-39.650-30.797-39.680L-30.186-39.680L-30.186-41.760Q-30.465-41.491-30.809-41.342Q-31.153-41.193-31.534-41.193Q-31.959-41.193-32.340-41.379Q-32.721-41.565-32.992-41.870Q-33.263-42.175-33.419-42.585Q-33.575-42.995-33.575-43.410Q-33.575-44.001-33.289-44.506Q-33.004-45.012-32.508-45.317Q-32.013-45.622-31.417-45.622Q-31.075-45.622-30.755-45.485Q-30.435-45.349-30.186-45.100L-30.186-45.344Q-30.172-45.461-30.098-45.534Q-30.025-45.607-29.908-45.622L-29.737-45.622Q-29.615-45.607-29.542-45.534Q-29.469-45.461-29.454-45.344L-29.454-39.680L-28.844-39.680Q-28.595-39.650-28.565-39.401L-28.565-39.314Q-28.595-39.060-28.844-39.030L-30.797-39.030Q-31.046-39.060-31.075-39.314M-31.475-41.843Q-31.158-41.843-30.887-42.004Q-30.616-42.165-30.440-42.431Q-30.264-42.697-30.186-43.010L-30.186-43.752Q-30.240-44.079-30.396-44.353Q-30.553-44.626-30.799-44.799Q-31.046-44.973-31.368-44.973Q-31.778-44.973-32.115-44.755Q-32.452-44.538-32.650-44.174Q-32.847-43.811-32.847-43.400Q-32.847-43.015-32.674-42.656Q-32.501-42.297-32.183-42.070Q-31.866-41.843-31.475-41.843\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(68.974 23.7)\">\u003Cpath d=\"M-21.151-40.700L-21.151-41.213Q-21.903-41.291-22.387-41.752Q-22.870-42.214-22.870-42.951Q-22.870-43.156-22.738-43.300Q-22.606-43.444-22.401-43.444Q-22.216-43.444-22.079-43.303Q-21.942-43.161-21.942-42.971Q-21.942-42.761-22.103-42.624Q-22.001-42.297-21.749-42.106Q-21.498-41.916-21.151-41.862L-21.151-44.123Q-21.893-44.284-22.382-44.685Q-22.870-45.085-22.870-45.764Q-22.870-46.208-22.623-46.562Q-22.377-46.916-21.986-47.128Q-21.596-47.341-21.151-47.404L-21.151-47.912Q-21.122-48.161-20.873-48.190L-20.780-48.190Q-20.531-48.161-20.502-47.912L-20.502-47.414Q-20.233-47.414-19.899-47.285Q-19.564-47.155-19.330-46.970Q-19.081-46.770-18.937-46.445Q-18.793-46.120-18.793-45.783Q-18.793-45.647-18.854-45.537Q-18.915-45.427-19.017-45.363Q-19.120-45.300-19.252-45.300Q-19.442-45.300-19.581-45.434Q-19.721-45.568-19.721-45.764Q-19.721-45.979-19.569-46.110Q-19.769-46.643-20.502-46.750L-20.502-44.733Q-20.023-44.631-19.638-44.404Q-19.252-44.177-19.022-43.815Q-18.793-43.454-18.793-42.971Q-18.793-42.292-19.298-41.801Q-19.804-41.311-20.502-41.213L-20.502-40.700Q-20.531-40.451-20.780-40.422L-20.873-40.422Q-20.990-40.437-21.063-40.510Q-21.137-40.583-21.151-40.700M-20.502-43.981L-20.502-41.872Q-20.233-41.926-19.996-42.070Q-19.760-42.214-19.616-42.441Q-19.472-42.668-19.472-42.932Q-19.472-43.337-19.777-43.620Q-20.082-43.903-20.502-43.981M-22.191-45.803Q-22.191-45.427-21.886-45.197Q-21.581-44.968-21.151-44.870L-21.151-46.740Q-21.552-46.672-21.871-46.423Q-22.191-46.174-22.191-45.803M-15.580-41.140Q-16.268-41.140-16.759-41.645Q-17.250-42.150-17.487-42.900Q-17.723-43.649-17.723-44.314Q-17.723-44.973-17.487-45.715Q-17.250-46.457-16.759-46.965Q-16.268-47.473-15.580-47.473Q-15.053-47.473-14.640-47.170Q-14.227-46.867-13.966-46.384Q-13.705-45.900-13.573-45.358Q-13.441-44.816-13.441-44.314Q-13.441-43.806-13.573-43.264Q-13.705-42.722-13.969-42.233Q-14.232-41.745-14.642-41.442Q-15.053-41.140-15.580-41.140M-15.580-41.794Q-15.194-41.794-14.923-42.070Q-14.652-42.346-14.489-42.761Q-14.325-43.176-14.249-43.623Q-14.174-44.069-14.174-44.431Q-14.174-44.753-14.252-45.170Q-14.330-45.588-14.493-45.959Q-14.657-46.330-14.933-46.577Q-15.209-46.823-15.580-46.823Q-15.951-46.823-16.220-46.584Q-16.488-46.345-16.657-45.971Q-16.825-45.598-16.908-45.175Q-16.991-44.753-16.991-44.431Q-16.991-43.952-16.852-43.332Q-16.713-42.712-16.390-42.253Q-16.068-41.794-15.580-41.794M-10.775-39.860L-10.834-39.860Q-10.956-39.860-11.058-39.968Q-11.161-40.075-11.161-40.202Q-11.161-40.412-10.951-40.481Q-10.658-40.554-10.441-40.766Q-10.223-40.979-10.155-41.272L-10.214-41.262L-10.243-41.252L-10.321-41.252Q-10.595-41.252-10.783-41.440Q-10.971-41.628-10.971-41.901Q-10.971-42.170-10.780-42.356Q-10.590-42.541-10.321-42.541Q-10.072-42.541-9.874-42.395Q-9.677-42.248-9.574-42.019Q-9.472-41.789-9.472-41.530Q-9.472-40.935-9.830-40.488Q-10.189-40.041-10.775-39.860M-6.835-40.773Q-6.835-40.852-6.805-40.910L-4.003-47.990Q-3.890-48.190-3.685-48.190Q-3.539-48.190-3.436-48.088Q-3.334-47.985-3.334-47.844Q-3.334-47.761-3.363-47.702L-6.166-40.622Q-6.278-40.422-6.483-40.422Q-6.620-40.422-6.727-40.529Q-6.835-40.637-6.835-40.773M-3.685-40.422Q-4.115-40.422-4.335-40.849Q-4.555-41.276-4.555-41.750Q-4.555-42.229-4.337-42.656Q-4.120-43.083-3.685-43.083Q-3.251-43.083-3.034-42.656Q-2.816-42.229-2.816-41.750Q-2.816-41.276-3.036-40.849Q-3.256-40.422-3.685-40.422M-3.695-41.071Q-3.602-41.071-3.539-41.201Q-3.475-41.330-3.444-41.491Q-3.412-41.652-3.412-41.750Q-3.412-41.921-3.483-42.163Q-3.554-42.404-3.676-42.434Q-3.807-42.434-3.881-42.187Q-3.954-41.940-3.954-41.750Q-3.954-41.584-3.888-41.345Q-3.822-41.106-3.695-41.071M-6.483-45.520Q-6.776-45.520-6.976-45.734Q-7.177-45.949-7.264-46.257Q-7.352-46.565-7.352-46.862Q-7.352-47.150-7.264-47.456Q-7.177-47.761-6.976-47.976Q-6.776-48.190-6.483-48.190Q-6.190-48.190-5.990-47.976Q-5.790-47.761-5.702-47.456Q-5.614-47.150-5.614-46.862Q-5.614-46.565-5.702-46.257Q-5.790-45.949-5.990-45.734Q-6.190-45.520-6.483-45.520M-6.493-46.174L-6.464-46.174Q-6.356-46.184-6.285-46.435Q-6.215-46.687-6.215-46.862Q-6.215-47.058-6.281-47.282Q-6.347-47.507-6.473-47.541L-6.483-47.541L-6.493-47.541Q-6.615-47.526-6.683-47.280Q-6.752-47.033-6.752-46.862Q-6.752-46.687-6.686-46.447Q-6.620-46.208-6.493-46.174M1.027-41.252L-1.874-41.252Q-2.118-41.281-2.157-41.530L-2.157-41.623Q-2.118-41.872-1.874-41.901L-0.946-41.901L-0.946-44.914L-1.874-44.914Q-2.118-44.943-2.157-45.192L-2.157-45.280Q-2.118-45.534-1.874-45.564L-0.497-45.564Q-0.375-45.549-0.302-45.476Q-0.228-45.402-0.214-45.280L-0.214-44.841Q-0.014-45.075 0.257-45.256Q0.528-45.437 0.846-45.529Q1.163-45.622 1.476-45.622Q1.842-45.622 2.128-45.471Q2.413-45.319 2.413-44.992Q2.413-44.802 2.291-44.668Q2.169-44.533 1.974-44.533Q1.793-44.533 1.664-44.658Q1.534-44.782 1.534-44.973L1.466-44.973Q0.987-44.973 0.602-44.714Q0.216-44.455 0.001-44.028Q-0.214-43.601-0.214-43.132L-0.214-41.901L1.027-41.901Q1.276-41.867 1.305-41.623L1.305-41.530Q1.276-41.286 1.027-41.252M3.326-42.580Q3.326-43.147 3.844-43.476Q4.361-43.806 5.043-43.928Q5.724-44.050 6.324-44.050L6.324-44.133Q6.324-44.543 5.968-44.773Q5.611-45.002 5.172-45.002Q4.723-45.002 4.503-44.963Q4.513-44.963 4.513-44.880Q4.513-44.694 4.376-44.558Q4.239-44.421 4.054-44.421Q3.849-44.421 3.717-44.563Q3.585-44.704 3.585-44.904Q3.585-45.393 4.051-45.522Q4.518-45.651 5.196-45.651Q5.626-45.651 6.061-45.473Q6.495-45.295 6.774-44.958Q7.052-44.621 7.052-44.172L7.052-41.994Q7.052-41.901 7.755-41.901Q8.004-41.872 8.033-41.623L8.033-41.530Q8.004-41.281 7.755-41.252L7.584-41.252Q7.164-41.252 6.879-41.313Q6.593-41.374 6.422-41.594Q5.856-41.193 4.923-41.193Q4.528-41.193 4.156-41.364Q3.785-41.535 3.556-41.850Q3.326-42.165 3.326-42.580M4.054-42.570Q4.054-42.238 4.364-42.041Q4.674-41.843 5.045-41.843Q5.436-41.843 5.753-41.950Q5.914-42.009 6.105-42.136Q6.295-42.263 6.295-42.380Q6.295-42.375 6.310-42.451Q6.324-42.526 6.324-42.570L6.324-43.420Q6.095-43.420 5.714-43.381Q5.333-43.342 4.962-43.252Q4.591-43.161 4.322-42.988Q4.054-42.815 4.054-42.570M10.074-41.252L8.614-41.252Q8.361-41.281 8.331-41.530L8.331-41.623Q8.361-41.872 8.614-41.901L9.142-41.901L10.343-43.474L9.215-44.914L8.673-44.914Q8.424-44.943 8.395-45.192L8.395-45.280Q8.409-45.402 8.478-45.476Q8.546-45.549 8.673-45.564L10.133-45.564Q10.367-45.534 10.411-45.280L10.411-45.192Q10.367-44.943 10.133-44.914L9.943-44.914L10.631-43.981L11.315-44.914L11.105-44.914Q10.865-44.943 10.821-45.192L10.821-45.280Q10.841-45.398 10.917-45.473Q10.992-45.549 11.105-45.564L12.565-45.564Q12.682-45.549 12.755-45.476Q12.828-45.402 12.843-45.280L12.843-45.192Q12.814-44.943 12.565-44.914L12.032-44.914L10.934-43.474L12.164-41.901L12.701-41.901Q12.823-41.887 12.897-41.818Q12.970-41.750 12.985-41.623L12.985-41.530Q12.970-41.413 12.897-41.340Q12.823-41.267 12.701-41.252L11.241-41.252Q11.012-41.281 10.963-41.530L10.963-41.623Q11.007-41.872 11.241-41.901L11.461-41.901L10.631-43.064L9.845-41.901L10.074-41.901Q10.309-41.872 10.353-41.623L10.353-41.530Q10.309-41.281 10.074-41.252\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(174.25 24.117)\">\u003Cpath d=\"M-58.162-41.283L-59.385-44.139Q-59.467-44.315-59.611-44.359Q-59.756-44.404-60.025-44.404L-60.025-44.701L-58.314-44.701L-58.314-44.404Q-58.736-44.404-58.736-44.221Q-58.736-44.186-58.721-44.139L-57.775-41.947L-56.935-43.924Q-56.896-44.002-56.896-44.092Q-56.896-44.232-57.002-44.318Q-57.107-44.404-57.248-44.404L-57.248-44.701L-55.896-44.701L-55.896-44.404Q-56.420-44.404-56.635-43.924L-57.760-41.283Q-57.822-41.174-57.928-41.174L-57.994-41.174Q-58.107-41.174-58.162-41.283\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.25 24.117)\">\u003Cpath d=\"M-55.851-42.084Q-55.851-42.568-55.449-42.863Q-55.046-43.158-54.496-43.277Q-53.945-43.397-53.453-43.397L-53.453-43.686Q-53.453-43.912-53.568-44.119Q-53.683-44.326-53.880-44.445Q-54.078-44.565-54.308-44.565Q-54.734-44.565-55.019-44.459Q-54.949-44.432-54.902-44.377Q-54.855-44.322-54.830-44.252Q-54.804-44.182-54.804-44.107Q-54.804-44.002-54.855-43.910Q-54.906-43.818-54.998-43.768Q-55.089-43.717-55.195-43.717Q-55.300-43.717-55.392-43.768Q-55.484-43.818-55.535-43.910Q-55.585-44.002-55.585-44.107Q-55.585-44.525-55.197-44.672Q-54.808-44.818-54.308-44.818Q-53.976-44.818-53.623-44.688Q-53.269-44.557-53.041-44.303Q-52.812-44.049-52.812-43.701L-52.812-41.900Q-52.812-41.768-52.740-41.658Q-52.667-41.549-52.539-41.549Q-52.414-41.549-52.345-41.654Q-52.277-41.760-52.277-41.900L-52.277-42.412L-51.996-42.412L-51.996-41.900Q-51.996-41.697-52.113-41.539Q-52.230-41.381-52.412-41.297Q-52.593-41.213-52.796-41.213Q-53.027-41.213-53.179-41.385Q-53.332-41.557-53.363-41.787Q-53.523-41.506-53.832-41.340Q-54.140-41.174-54.492-41.174Q-55.003-41.174-55.427-41.397Q-55.851-41.619-55.851-42.084M-55.164-42.084Q-55.164-41.799-54.937-41.613Q-54.710-41.428-54.417-41.428Q-54.171-41.428-53.947-41.545Q-53.722-41.662-53.587-41.865Q-53.453-42.068-53.453-42.322L-53.453-43.154Q-53.718-43.154-54.003-43.100Q-54.289-43.045-54.560-42.916Q-54.832-42.787-54.998-42.580Q-55.164-42.373-55.164-42.084M-49.789-41.252L-51.621-41.252L-51.621-41.549Q-51.347-41.549-51.179-41.596Q-51.011-41.643-51.011-41.811L-51.011-45.971Q-51.011-46.186-51.074-46.281Q-51.136-46.377-51.255-46.398Q-51.374-46.420-51.621-46.420L-51.621-46.717L-50.398-46.803L-50.398-41.811Q-50.398-41.643-50.230-41.596Q-50.062-41.549-49.789-41.549L-49.789-41.252M-44.398-41.252L-49.246-41.252L-49.246-41.549Q-48.925-41.549-48.681-41.596Q-48.437-41.643-48.437-41.811L-48.437-46.154Q-48.437-46.326-48.681-46.373Q-48.925-46.420-49.246-46.420L-49.246-46.717L-44.511-46.717L-44.277-44.869L-44.558-44.869Q-44.640-45.565-44.816-45.885Q-44.992-46.205-45.339-46.313Q-45.687-46.420-46.406-46.420L-47.269-46.420Q-47.488-46.420-47.580-46.377Q-47.671-46.334-47.671-46.154L-47.671-44.236L-47.039-44.236Q-46.613-44.236-46.406-44.299Q-46.199-44.361-46.111-44.557Q-46.023-44.752-46.023-45.174L-45.742-45.174L-45.742-43.006L-46.023-43.006Q-46.023-43.428-46.111-43.621Q-46.199-43.815-46.406-43.877Q-46.613-43.940-47.039-43.940L-47.671-43.940L-47.671-41.811Q-47.671-41.639-47.580-41.594Q-47.488-41.549-47.269-41.549L-46.343-41.549Q-45.761-41.549-45.408-41.631Q-45.054-41.713-44.849-41.910Q-44.644-42.107-44.531-42.445Q-44.417-42.783-44.324-43.365L-44.046-43.365L-44.398-41.252M-37.843-42.229L-43.156-42.229Q-43.234-42.236-43.283-42.285Q-43.332-42.334-43.332-42.412Q-43.332-42.482-43.285-42.533Q-43.238-42.584-43.156-42.596L-37.843-42.596Q-37.769-42.584-37.722-42.533Q-37.675-42.482-37.675-42.412Q-37.675-42.334-37.724-42.285Q-37.773-42.236-37.843-42.229M-37.843-43.916L-43.156-43.916Q-43.234-43.924-43.283-43.973Q-43.332-44.022-43.332-44.100Q-43.332-44.170-43.285-44.221Q-43.238-44.272-43.156-44.283L-37.843-44.283Q-37.769-44.272-37.722-44.221Q-37.675-44.170-37.675-44.100Q-37.675-44.022-37.724-43.973Q-37.773-43.924-37.843-43.916M-35.074-41.084Q-35.777-41.084-36.177-41.484Q-36.578-41.885-36.722-42.494Q-36.867-43.104-36.867-43.803Q-36.867-44.326-36.796-44.789Q-36.726-45.252-36.533-45.664Q-36.339-46.076-35.982-46.324Q-35.624-46.572-35.074-46.572Q-34.523-46.572-34.166-46.324Q-33.808-46.076-33.617-45.666Q-33.425-45.256-33.355-44.787Q-33.285-44.318-33.285-43.803Q-33.285-43.104-33.427-42.496Q-33.570-41.889-33.970-41.486Q-34.371-41.084-35.074-41.084M-35.074-41.342Q-34.601-41.342-34.369-41.777Q-34.136-42.213-34.082-42.752Q-34.027-43.291-34.027-43.932Q-34.027-44.928-34.210-45.621Q-34.394-46.315-35.074-46.315Q-35.441-46.315-35.662-46.076Q-35.882-45.838-35.978-45.481Q-36.074-45.123-36.099-44.752Q-36.124-44.381-36.124-43.932Q-36.124-43.291-36.070-42.752Q-36.015-42.213-35.783-41.777Q-35.550-41.342-35.074-41.342\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.25 24.117)\">\u003Cpath d=\"M-23.108-43.068L-29.452-43.068Q-29.526-43.068-29.577-43.125Q-29.627-43.182-29.627-43.252Q-29.627-43.322-29.580-43.379Q-29.534-43.436-29.452-43.436L-23.108-43.436Q-23.561-43.764-23.858-44.231Q-24.155-44.697-24.260-45.236Q-24.260-45.338-24.163-45.365L-23.995-45.365Q-23.913-45.346-23.893-45.260Q-23.764-44.584-23.284-44.066Q-22.803-43.549-22.139-43.357Q-22.077-43.334-22.077-43.252Q-22.077-43.170-22.139-43.147Q-22.803-42.959-23.284-42.440Q-23.764-41.920-23.893-41.244Q-23.913-41.158-23.995-41.139L-24.163-41.139Q-24.260-41.166-24.260-41.268Q-24.186-41.635-24.028-41.967Q-23.870-42.299-23.637-42.576Q-23.405-42.854-23.108-43.068\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.25 24.117)\">\u003Cpath d=\"M-17.583-40.986Q-17.583-41.049-17.552-41.092L-13.806-46.350Q-14.263-46.115-14.829-46.115Q-15.482-46.115-16.087-46.436Q-15.943-46.088-15.943-45.643Q-15.943-45.283-16.064-44.912Q-16.185-44.541-16.435-44.285Q-16.685-44.029-17.048-44.029Q-17.435-44.029-17.718-44.273Q-18.001-44.518-18.148-44.891Q-18.294-45.264-18.294-45.643Q-18.294-46.022-18.148-46.393Q-18.001-46.764-17.718-47.008Q-17.435-47.252-17.048-47.252Q-16.732-47.252-16.462-47.014Q-16.126-46.709-15.697-46.537Q-15.267-46.365-14.829-46.365Q-14.337-46.365-13.919-46.578Q-13.501-46.791-13.201-47.190Q-13.158-47.252-13.064-47.252Q-12.990-47.252-12.935-47.197Q-12.880-47.143-12.880-47.068Q-12.880-47.006-12.912-46.963L-17.255-40.869Q-17.302-40.803-17.400-40.803Q-17.482-40.803-17.533-40.854Q-17.583-40.904-17.583-40.986M-17.048-44.283Q-16.775-44.283-16.587-44.508Q-16.400-44.732-16.312-45.055Q-16.224-45.377-16.224-45.643Q-16.224-45.900-16.312-46.223Q-16.400-46.545-16.587-46.770Q-16.775-46.994-17.048-46.994Q-17.435-46.994-17.578-46.566Q-17.720-46.139-17.720-45.643Q-17.720-45.135-17.579-44.709Q-17.439-44.283-17.048-44.283M-13.271-40.803Q-13.658-40.803-13.941-41.049Q-14.224-41.295-14.372-41.668Q-14.521-42.041-14.521-42.420Q-14.521-42.693-14.435-42.981Q-14.349-43.268-14.195-43.502Q-14.040-43.736-13.804-43.883Q-13.568-44.029-13.271-44.029Q-12.990-44.029-12.783-43.877Q-12.576-43.725-12.437-43.482Q-12.298-43.240-12.232-42.959Q-12.165-42.678-12.165-42.420Q-12.165-42.061-12.287-41.688Q-12.408-41.315-12.658-41.059Q-12.908-40.803-13.271-40.803M-13.271-41.061Q-12.997-41.061-12.810-41.285Q-12.622-41.510-12.535-41.832Q-12.447-42.154-12.447-42.420Q-12.447-42.678-12.535-43Q-12.622-43.322-12.810-43.547Q-12.997-43.772-13.271-43.772Q-13.662-43.772-13.802-43.342Q-13.943-42.912-13.943-42.420Q-13.943-41.912-13.806-41.486Q-13.669-41.061-13.271-41.061M-9.443-41.252L-11.423-41.252L-11.423-41.549Q-11.154-41.549-10.986-41.594Q-10.818-41.639-10.818-41.811L-10.818-43.947Q-10.818-44.162-10.880-44.258Q-10.943-44.354-11.060-44.375Q-11.177-44.397-11.423-44.397L-11.423-44.693L-10.255-44.779L-10.255-43.994Q-10.177-44.205-10.025-44.391Q-9.872-44.576-9.673-44.678Q-9.474-44.779-9.247-44.779Q-9.001-44.779-8.810-44.635Q-8.619-44.490-8.619-44.260Q-8.619-44.104-8.724-43.994Q-8.829-43.885-8.986-43.885Q-9.142-43.885-9.251-43.994Q-9.361-44.104-9.361-44.260Q-9.361-44.420-9.255-44.525Q-9.579-44.525-9.794-44.297Q-10.009-44.068-10.105-43.729Q-10.201-43.389-10.201-43.084L-10.201-41.811Q-10.201-41.643-9.974-41.596Q-9.747-41.549-9.443-41.549L-9.443-41.252M-8.040-42.084Q-8.040-42.568-7.638-42.863Q-7.236-43.158-6.685-43.277Q-6.134-43.397-5.642-43.397L-5.642-43.686Q-5.642-43.912-5.757-44.119Q-5.872-44.326-6.070-44.445Q-6.267-44.565-6.497-44.565Q-6.923-44.565-7.208-44.459Q-7.138-44.432-7.091-44.377Q-7.044-44.322-7.019-44.252Q-6.994-44.182-6.994-44.107Q-6.994-44.002-7.044-43.910Q-7.095-43.818-7.187-43.768Q-7.279-43.717-7.384-43.717Q-7.490-43.717-7.581-43.768Q-7.673-43.818-7.724-43.910Q-7.775-44.002-7.775-44.107Q-7.775-44.525-7.386-44.672Q-6.997-44.818-6.497-44.818Q-6.165-44.818-5.812-44.688Q-5.458-44.557-5.230-44.303Q-5.001-44.049-5.001-43.701L-5.001-41.900Q-5.001-41.768-4.929-41.658Q-4.857-41.549-4.728-41.549Q-4.603-41.549-4.535-41.654Q-4.466-41.760-4.466-41.900L-4.466-42.412L-4.185-42.412L-4.185-41.900Q-4.185-41.697-4.302-41.539Q-4.419-41.381-4.601-41.297Q-4.783-41.213-4.986-41.213Q-5.216-41.213-5.369-41.385Q-5.521-41.557-5.552-41.787Q-5.712-41.506-6.021-41.340Q-6.329-41.174-6.681-41.174Q-7.193-41.174-7.617-41.397Q-8.040-41.619-8.040-42.084M-7.353-42.084Q-7.353-41.799-7.126-41.613Q-6.900-41.428-6.607-41.428Q-6.361-41.428-6.136-41.545Q-5.912-41.662-5.777-41.865Q-5.642-42.068-5.642-42.322L-5.642-43.154Q-5.908-43.154-6.193-43.100Q-6.478-43.045-6.749-42.916Q-7.021-42.787-7.187-42.580Q-7.353-42.373-7.353-42.084M-2.505-41.252L-4.001-41.252L-4.001-41.549Q-3.369-41.549-2.947-42.029L-2.177-42.940L-3.169-44.139Q-3.326-44.318-3.488-44.361Q-3.650-44.404-3.954-44.404L-3.954-44.701L-2.267-44.701L-2.267-44.404Q-2.361-44.404-2.437-44.361Q-2.513-44.318-2.513-44.229Q-2.513-44.186-2.482-44.139L-1.826-43.350L-1.345-43.924Q-1.228-44.061-1.228-44.197Q-1.228-44.287-1.279-44.346Q-1.329-44.404-1.412-44.404L-1.412-44.701L0.077-44.701L0.077-44.404Q-0.560-44.404-0.970-43.924L-1.650-43.123L-0.564-41.811Q-0.404-41.635-0.244-41.592Q-0.083-41.549 0.221-41.549L0.221-41.252L-1.466-41.252L-1.466-41.549Q-1.376-41.549-1.298-41.592Q-1.220-41.635-1.220-41.725Q-1.220-41.748-1.251-41.811L-1.994-42.717L-2.579-42.029Q-2.697-41.893-2.697-41.756Q-2.697-41.670-2.646-41.609Q-2.595-41.549-2.505-41.549\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(305.132 24.117)\">\u003Cpath d=\"M-59.017-40.986Q-59.017-41.049-58.986-41.092L-55.240-46.350Q-55.697-46.115-56.264-46.115Q-56.916-46.115-57.521-46.436Q-57.377-46.088-57.377-45.643Q-57.377-45.283-57.498-44.912Q-57.619-44.541-57.869-44.285Q-58.119-44.029-58.482-44.029Q-58.869-44.029-59.152-44.273Q-59.435-44.518-59.582-44.891Q-59.728-45.264-59.728-45.643Q-59.728-46.022-59.582-46.393Q-59.435-46.764-59.152-47.008Q-58.869-47.252-58.482-47.252Q-58.166-47.252-57.896-47.014Q-57.560-46.709-57.131-46.537Q-56.701-46.365-56.264-46.365Q-55.771-46.365-55.353-46.578Q-54.935-46.791-54.635-47.190Q-54.592-47.252-54.498-47.252Q-54.424-47.252-54.369-47.197Q-54.314-47.143-54.314-47.068Q-54.314-47.006-54.346-46.963L-58.689-40.869Q-58.736-40.803-58.834-40.803Q-58.916-40.803-58.967-40.854Q-59.017-40.904-59.017-40.986M-58.482-44.283Q-58.209-44.283-58.021-44.508Q-57.834-44.732-57.746-45.055Q-57.658-45.377-57.658-45.643Q-57.658-45.900-57.746-46.223Q-57.834-46.545-58.021-46.770Q-58.209-46.994-58.482-46.994Q-58.869-46.994-59.012-46.566Q-59.154-46.139-59.154-45.643Q-59.154-45.135-59.014-44.709Q-58.873-44.283-58.482-44.283M-54.705-40.803Q-55.092-40.803-55.375-41.049Q-55.658-41.295-55.806-41.668Q-55.955-42.041-55.955-42.420Q-55.955-42.693-55.869-42.981Q-55.783-43.268-55.629-43.502Q-55.474-43.736-55.238-43.883Q-55.002-44.029-54.705-44.029Q-54.424-44.029-54.217-43.877Q-54.010-43.725-53.871-43.482Q-53.732-43.240-53.666-42.959Q-53.599-42.678-53.599-42.420Q-53.599-42.061-53.721-41.688Q-53.842-41.315-54.092-41.059Q-54.342-40.803-54.705-40.803M-54.705-41.061Q-54.431-41.061-54.244-41.285Q-54.056-41.510-53.969-41.832Q-53.881-42.154-53.881-42.420Q-53.881-42.678-53.969-43Q-54.056-43.322-54.244-43.547Q-54.431-43.772-54.705-43.772Q-55.096-43.772-55.236-43.342Q-55.377-42.912-55.377-42.420Q-55.377-41.912-55.240-41.486Q-55.103-41.061-54.705-41.061M-50.877-41.252L-52.857-41.252L-52.857-41.549Q-52.588-41.549-52.420-41.594Q-52.252-41.639-52.252-41.811L-52.252-43.947Q-52.252-44.162-52.314-44.258Q-52.377-44.354-52.494-44.375Q-52.611-44.397-52.857-44.397L-52.857-44.693L-51.689-44.779L-51.689-43.994Q-51.611-44.205-51.459-44.391Q-51.306-44.576-51.107-44.678Q-50.908-44.779-50.681-44.779Q-50.435-44.779-50.244-44.635Q-50.053-44.490-50.053-44.260Q-50.053-44.104-50.158-43.994Q-50.264-43.885-50.420-43.885Q-50.576-43.885-50.685-43.994Q-50.795-44.104-50.795-44.260Q-50.795-44.420-50.689-44.525Q-51.014-44.525-51.228-44.297Q-51.443-44.068-51.539-43.729Q-51.635-43.389-51.635-43.084L-51.635-41.811Q-51.635-41.643-51.408-41.596Q-51.181-41.549-50.877-41.549L-50.877-41.252M-49.474-42.084Q-49.474-42.568-49.072-42.863Q-48.670-43.158-48.119-43.277Q-47.568-43.397-47.076-43.397L-47.076-43.686Q-47.076-43.912-47.191-44.119Q-47.306-44.326-47.504-44.445Q-47.701-44.565-47.931-44.565Q-48.357-44.565-48.642-44.459Q-48.572-44.432-48.525-44.377Q-48.478-44.322-48.453-44.252Q-48.428-44.182-48.428-44.107Q-48.428-44.002-48.478-43.910Q-48.529-43.818-48.621-43.768Q-48.713-43.717-48.818-43.717Q-48.924-43.717-49.015-43.768Q-49.107-43.818-49.158-43.910Q-49.209-44.002-49.209-44.107Q-49.209-44.525-48.820-44.672Q-48.431-44.818-47.931-44.818Q-47.599-44.818-47.246-44.688Q-46.892-44.557-46.664-44.303Q-46.435-44.049-46.435-43.701L-46.435-41.900Q-46.435-41.768-46.363-41.658Q-46.291-41.549-46.162-41.549Q-46.037-41.549-45.969-41.654Q-45.900-41.760-45.900-41.900L-45.900-42.412L-45.619-42.412L-45.619-41.900Q-45.619-41.697-45.736-41.539Q-45.853-41.381-46.035-41.297Q-46.217-41.213-46.420-41.213Q-46.650-41.213-46.803-41.385Q-46.955-41.557-46.986-41.787Q-47.146-41.506-47.455-41.340Q-47.764-41.174-48.115-41.174Q-48.627-41.174-49.051-41.397Q-49.474-41.619-49.474-42.084M-48.787-42.084Q-48.787-41.799-48.560-41.613Q-48.334-41.428-48.041-41.428Q-47.795-41.428-47.570-41.545Q-47.346-41.662-47.211-41.865Q-47.076-42.068-47.076-42.322L-47.076-43.154Q-47.342-43.154-47.627-43.100Q-47.912-43.045-48.183-42.916Q-48.455-42.787-48.621-42.580Q-48.787-42.373-48.787-42.084M-43.939-41.252L-45.435-41.252L-45.435-41.549Q-44.803-41.549-44.381-42.029L-43.611-42.940L-44.603-44.139Q-44.760-44.318-44.922-44.361Q-45.084-44.404-45.389-44.404L-45.389-44.701L-43.701-44.701L-43.701-44.404Q-43.795-44.404-43.871-44.361Q-43.947-44.318-43.947-44.229Q-43.947-44.186-43.916-44.139L-43.260-43.350L-42.779-43.924Q-42.662-44.061-42.662-44.197Q-42.662-44.287-42.713-44.346Q-42.764-44.404-42.846-44.404L-42.846-44.701L-41.357-44.701L-41.357-44.404Q-41.994-44.404-42.404-43.924L-43.084-43.123L-41.998-41.811Q-41.838-41.635-41.678-41.592Q-41.517-41.549-41.213-41.549L-41.213-41.252L-42.900-41.252L-42.900-41.549Q-42.810-41.549-42.732-41.592Q-42.654-41.635-42.654-41.725Q-42.654-41.748-42.685-41.811L-43.428-42.717L-44.014-42.029Q-44.131-41.893-44.131-41.756Q-44.131-41.670-44.080-41.609Q-44.029-41.549-43.939-41.549L-43.939-41.252M-35.123-42.229L-40.435-42.229Q-40.514-42.236-40.562-42.285Q-40.611-42.334-40.611-42.412Q-40.611-42.482-40.564-42.533Q-40.517-42.584-40.435-42.596L-35.123-42.596Q-35.049-42.584-35.002-42.533Q-34.955-42.482-34.955-42.412Q-34.955-42.334-35.004-42.285Q-35.053-42.236-35.123-42.229M-35.123-43.916L-40.435-43.916Q-40.514-43.924-40.562-43.973Q-40.611-44.022-40.611-44.100Q-40.611-44.170-40.564-44.221Q-40.517-44.272-40.435-44.283L-35.123-44.283Q-35.049-44.272-35.002-44.221Q-34.955-44.170-34.955-44.100Q-34.955-44.022-35.004-43.973Q-35.053-43.924-35.123-43.916M-32.353-41.084Q-33.056-41.084-33.457-41.484Q-33.857-41.885-34.002-42.494Q-34.146-43.104-34.146-43.803Q-34.146-44.326-34.076-44.789Q-34.006-45.252-33.812-45.664Q-33.619-46.076-33.262-46.324Q-32.904-46.572-32.353-46.572Q-31.803-46.572-31.445-46.324Q-31.088-46.076-30.896-45.666Q-30.705-45.256-30.635-44.787Q-30.564-44.318-30.564-43.803Q-30.564-43.104-30.707-42.496Q-30.849-41.889-31.250-41.486Q-31.650-41.084-32.353-41.084M-32.353-41.342Q-31.881-41.342-31.648-41.777Q-31.416-42.213-31.361-42.752Q-31.306-43.291-31.306-43.932Q-31.306-44.928-31.490-45.621Q-31.674-46.315-32.353-46.315Q-32.721-46.315-32.941-46.076Q-33.162-45.838-33.258-45.481Q-33.353-45.123-33.379-44.752Q-33.404-44.381-33.404-43.932Q-33.404-43.291-33.349-42.752Q-33.295-42.213-33.062-41.777Q-32.830-41.342-32.353-41.342\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-68.737-9.385h395.494\"\u002F>\u003Cg transform=\"translate(-2.157 45.257)\">\u003Cpath d=\"M-59.408-41.885Q-59.217-41.611-58.861-41.484Q-58.506-41.357-58.123-41.357Q-57.787-41.357-57.578-41.543Q-57.369-41.729-57.273-42.022Q-57.178-42.315-57.178-42.627Q-57.178-42.951-57.275-43.246Q-57.373-43.541-57.586-43.725Q-57.799-43.908-58.131-43.908L-58.697-43.908Q-58.728-43.908-58.758-43.938Q-58.787-43.967-58.787-43.994L-58.787-44.076Q-58.787-44.111-58.758-44.137Q-58.728-44.162-58.697-44.162L-58.217-44.197Q-57.931-44.197-57.734-44.402Q-57.537-44.607-57.441-44.902Q-57.346-45.197-57.346-45.475Q-57.346-45.854-57.545-46.092Q-57.744-46.330-58.123-46.330Q-58.443-46.330-58.732-46.223Q-59.021-46.115-59.185-45.893Q-59.006-45.893-58.883-45.766Q-58.760-45.639-58.760-45.467Q-58.760-45.295-58.885-45.170Q-59.010-45.045-59.185-45.045Q-59.357-45.045-59.482-45.170Q-59.607-45.295-59.607-45.467Q-59.607-45.834-59.383-46.082Q-59.158-46.330-58.818-46.451Q-58.478-46.572-58.123-46.572Q-57.775-46.572-57.412-46.451Q-57.049-46.330-56.801-46.080Q-56.553-45.830-56.553-45.475Q-56.553-44.990-56.871-44.607Q-57.189-44.225-57.666-44.053Q-57.115-43.943-56.715-43.557Q-56.314-43.170-56.314-42.635Q-56.314-42.178-56.578-41.822Q-56.842-41.467-57.264-41.275Q-57.685-41.084-58.123-41.084Q-58.533-41.084-58.926-41.219Q-59.318-41.354-59.584-41.639Q-59.849-41.924-59.849-42.342Q-59.849-42.537-59.717-42.666Q-59.584-42.795-59.392-42.795Q-59.267-42.795-59.164-42.736Q-59.060-42.678-58.998-42.572Q-58.935-42.467-58.935-42.342Q-58.935-42.147-59.070-42.016Q-59.205-41.885-59.408-41.885\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(29.14 45.735)\">\u003Cpath d=\"M-57.579-41.140Q-58.267-41.140-58.758-41.645Q-59.249-42.150-59.486-42.900Q-59.722-43.649-59.722-44.314Q-59.722-44.973-59.486-45.715Q-59.249-46.457-58.758-46.965Q-58.267-47.473-57.579-47.473Q-57.052-47.473-56.639-47.170Q-56.226-46.867-55.965-46.384Q-55.704-45.900-55.572-45.358Q-55.440-44.816-55.440-44.314Q-55.440-43.806-55.572-43.264Q-55.704-42.722-55.968-42.233Q-56.231-41.745-56.641-41.442Q-57.052-41.140-57.579-41.140M-57.579-41.794Q-57.193-41.794-56.922-42.070Q-56.651-42.346-56.488-42.761Q-56.324-43.176-56.248-43.623Q-56.173-44.069-56.173-44.431Q-56.173-44.753-56.251-45.170Q-56.329-45.588-56.493-45.959Q-56.656-46.330-56.932-46.577Q-57.208-46.823-57.579-46.823Q-57.950-46.823-58.219-46.584Q-58.487-46.345-58.656-45.971Q-58.824-45.598-58.907-45.175Q-58.990-44.753-58.990-44.431Q-58.990-43.952-58.851-43.332Q-58.712-42.712-58.389-42.253Q-58.067-41.794-57.579-41.794M-52.921-41.252L-54.381-41.252Q-54.635-41.281-54.664-41.530L-54.664-41.623Q-54.635-41.872-54.381-41.901L-53.853-41.901L-52.652-43.474L-53.780-44.914L-54.322-44.914Q-54.571-44.943-54.600-45.192L-54.600-45.280Q-54.586-45.402-54.517-45.476Q-54.449-45.549-54.322-45.564L-52.862-45.564Q-52.628-45.534-52.584-45.280L-52.584-45.192Q-52.628-44.943-52.862-44.914L-53.053-44.914L-52.364-43.981L-51.680-44.914L-51.890-44.914Q-52.130-44.943-52.174-45.192L-52.174-45.280Q-52.154-45.398-52.078-45.473Q-52.003-45.549-51.890-45.564L-50.430-45.564Q-50.313-45.549-50.240-45.476Q-50.167-45.402-50.152-45.280L-50.152-45.192Q-50.181-44.943-50.430-44.914L-50.963-44.914L-52.061-43.474L-50.831-41.901L-50.294-41.901Q-50.172-41.887-50.098-41.818Q-50.025-41.750-50.011-41.623L-50.011-41.530Q-50.025-41.413-50.098-41.340Q-50.172-41.267-50.294-41.252L-51.754-41.252Q-51.983-41.281-52.032-41.530L-52.032-41.623Q-51.988-41.872-51.754-41.901L-51.534-41.901L-52.364-43.064L-53.150-41.901L-52.921-41.901Q-52.686-41.872-52.642-41.623L-52.642-41.530Q-52.686-41.281-52.921-41.252M-48.614-41.530L-48.614-41.623Q-48.585-41.872-48.331-41.901L-47.301-41.901L-47.301-46.023Q-47.794-45.603-48.355-45.603Q-48.472-45.603-48.565-45.678Q-48.658-45.754-48.673-45.881L-48.673-45.974Q-48.639-46.223-48.394-46.252Q-47.979-46.252-47.662-46.562Q-47.345-46.872-47.183-47.292Q-47.105-47.443-46.925-47.473L-46.851-47.473Q-46.734-47.458-46.661-47.385Q-46.588-47.312-46.573-47.194L-46.573-41.901L-45.543-41.901Q-45.294-41.872-45.264-41.623L-45.264-41.530Q-45.294-41.281-45.543-41.252L-48.331-41.252Q-48.585-41.281-48.614-41.530M-41.265-42.932L-43.883-42.932Q-44.137-42.961-44.166-43.210L-44.166-43.493Q-44.166-43.591-44.122-43.640L-41.783-47.292Q-41.680-47.443-41.514-47.443L-40.963-47.443Q-40.836-47.443-40.750-47.353Q-40.665-47.263-40.665-47.141L-40.665-43.581L-39.786-43.581Q-39.664-43.566-39.591-43.498Q-39.517-43.430-39.503-43.303L-39.503-43.210Q-39.517-43.093-39.591-43.020Q-39.664-42.946-39.786-42.932L-40.665-42.932L-40.665-41.901L-39.923-41.901Q-39.674-41.872-39.644-41.623L-39.644-41.530Q-39.674-41.281-39.923-41.252L-42.003-41.252Q-42.247-41.281-42.286-41.530L-42.286-41.623Q-42.247-41.872-42.003-41.901L-41.265-41.901L-41.265-42.932M-41.265-46.940L-43.414-43.581L-41.265-43.581\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt10\" font-size=\"10\">\u003Cg transform=\"translate(68.974 45.04)\">\u003Cpath d=\"M-59.439-41.530L-59.439-41.623Q-59.410-41.872-59.161-41.901L-57.823-41.901L-57.823-44.914L-59.083-44.914Q-59.332-44.948-59.361-45.192L-59.361-45.280Q-59.347-45.398-59.271-45.473Q-59.195-45.549-59.083-45.564L-57.369-45.564Q-57.252-45.549-57.179-45.476Q-57.105-45.402-57.091-45.280L-57.091-41.901L-55.909-41.901Q-55.675-41.872-55.631-41.623L-55.631-41.530Q-55.675-41.281-55.909-41.252L-59.161-41.252Q-59.410-41.281-59.439-41.530M-58.131-46.853Q-58.131-47.067-57.979-47.219Q-57.828-47.370-57.613-47.370Q-57.393-47.370-57.242-47.219Q-57.091-47.067-57.091-46.853Q-57.091-46.643-57.247-46.486Q-57.403-46.330-57.613-46.330Q-57.818-46.330-57.974-46.486Q-58.131-46.643-58.131-46.853M-51.471-41.252L-54.371-41.252Q-54.615-41.281-54.654-41.530L-54.654-41.623Q-54.615-41.872-54.371-41.901L-53.443-41.901L-53.443-44.914L-54.371-44.914Q-54.615-44.943-54.654-45.192L-54.654-45.280Q-54.615-45.534-54.371-45.564L-52.994-45.564Q-52.872-45.549-52.799-45.476Q-52.725-45.402-52.711-45.280L-52.711-44.841Q-52.511-45.075-52.240-45.256Q-51.969-45.437-51.651-45.529Q-51.334-45.622-51.021-45.622Q-50.655-45.622-50.369-45.471Q-50.084-45.319-50.084-44.992Q-50.084-44.802-50.206-44.668Q-50.328-44.533-50.523-44.533Q-50.704-44.533-50.833-44.658Q-50.963-44.782-50.963-44.973L-51.031-44.973Q-51.510-44.973-51.895-44.714Q-52.281-44.455-52.496-44.028Q-52.711-43.601-52.711-43.132L-52.711-41.901L-51.471-41.901Q-51.222-41.867-51.192-41.623L-51.192-41.530Q-51.222-41.286-51.471-41.252M-49.762-41.530L-49.762-41.623Q-49.718-41.872-49.483-41.901L-49.195-41.901L-49.195-44.914L-49.483-44.914Q-49.718-44.943-49.762-45.192L-49.762-45.280Q-49.718-45.534-49.483-45.564L-48.873-45.564Q-48.746-45.549-48.670-45.463Q-48.595-45.378-48.595-45.261Q-48.194-45.622-47.681-45.622Q-47.442-45.622-47.237-45.481Q-47.032-45.339-46.925-45.100Q-46.495-45.622-45.875-45.622Q-44.972-45.622-44.972-44.172L-44.972-41.901L-44.683-41.901Q-44.449-41.872-44.405-41.623L-44.405-41.530Q-44.454-41.281-44.683-41.252L-45.753-41.252Q-46.002-41.286-46.031-41.530L-46.031-41.623Q-46.002-41.867-45.753-41.901L-45.572-41.901L-45.572-44.133Q-45.572-44.973-45.933-44.973Q-46.226-44.973-46.417-44.770Q-46.607-44.567-46.695-44.274Q-46.783-43.981-46.783-43.693L-46.783-41.901L-46.495-41.901Q-46.256-41.872-46.212-41.623L-46.212-41.530Q-46.261-41.281-46.495-41.252L-47.564-41.252Q-47.813-41.286-47.843-41.530L-47.843-41.623Q-47.813-41.867-47.564-41.901L-47.384-41.901L-47.384-44.133Q-47.384-44.973-47.745-44.973Q-48.038-44.973-48.228-44.770Q-48.419-44.567-48.507-44.274Q-48.595-43.981-48.595-43.693L-48.595-41.901L-48.302-41.901Q-48.067-41.872-48.023-41.623L-48.023-41.530Q-48.067-41.281-48.302-41.252L-49.483-41.252Q-49.713-41.281-49.762-41.530M-41.832-41.193Q-42.413-41.193-42.887-41.499Q-43.360-41.804-43.631-42.321Q-43.902-42.839-43.902-43.410Q-43.902-43.986-43.636-44.502Q-43.370-45.017-42.891-45.334Q-42.413-45.651-41.832-45.651Q-41.388-45.651-41.002-45.466Q-40.616-45.280-40.345-44.973Q-40.074-44.665-39.918-44.250Q-39.762-43.835-39.762-43.410Q-39.762-42.839-40.033-42.324Q-40.304-41.809-40.780-41.501Q-41.256-41.193-41.832-41.193M-41.832-41.843Q-41.231-41.843-40.863-42.358Q-40.494-42.873-40.494-43.493Q-40.494-43.874-40.665-44.221Q-40.836-44.567-41.139-44.785Q-41.441-45.002-41.832-45.002Q-42.218-45.002-42.523-44.787Q-42.828-44.572-43.001-44.223Q-43.175-43.874-43.175-43.493Q-43.175-42.873-42.804-42.358Q-42.432-41.843-41.832-41.843M-37.125-41.511L-38.253-44.914L-38.687-44.914Q-38.936-44.948-38.966-45.192L-38.966-45.280Q-38.951-45.398-38.875-45.473Q-38.800-45.549-38.687-45.564L-37.222-45.564Q-37.110-45.549-37.034-45.473Q-36.959-45.398-36.944-45.280L-36.944-45.192Q-36.973-44.948-37.222-44.914L-37.623-44.914L-36.583-41.804L-35.543-44.914L-35.943-44.914Q-36.197-44.948-36.226-45.192L-36.226-45.280Q-36.197-45.529-35.943-45.564L-34.483-45.564Q-34.371-45.549-34.295-45.473Q-34.220-45.398-34.205-45.280L-34.205-45.192Q-34.234-44.948-34.483-44.914L-34.913-44.914L-36.046-41.511Q-36.090-41.374-36.204-41.294Q-36.319-41.213-36.466-41.213L-36.705-41.213Q-36.851-41.213-36.966-41.294Q-37.081-41.374-37.125-41.511M-31.075-39.314L-31.075-39.401Q-31.046-39.650-30.797-39.680L-30.186-39.680L-30.186-41.760Q-30.465-41.491-30.809-41.342Q-31.153-41.193-31.534-41.193Q-31.959-41.193-32.340-41.379Q-32.721-41.565-32.992-41.870Q-33.263-42.175-33.419-42.585Q-33.575-42.995-33.575-43.410Q-33.575-44.001-33.289-44.506Q-33.004-45.012-32.508-45.317Q-32.013-45.622-31.417-45.622Q-31.075-45.622-30.755-45.485Q-30.435-45.349-30.186-45.100L-30.186-45.344Q-30.172-45.461-30.098-45.534Q-30.025-45.607-29.908-45.622L-29.737-45.622Q-29.615-45.607-29.542-45.534Q-29.469-45.461-29.454-45.344L-29.454-39.680L-28.844-39.680Q-28.595-39.650-28.565-39.401L-28.565-39.314Q-28.595-39.060-28.844-39.030L-30.797-39.030Q-31.046-39.060-31.075-39.314M-31.475-41.843Q-31.158-41.843-30.887-42.004Q-30.616-42.165-30.440-42.431Q-30.264-42.697-30.186-43.010L-30.186-43.752Q-30.240-44.079-30.396-44.353Q-30.553-44.626-30.799-44.799Q-31.046-44.973-31.368-44.973Q-31.778-44.973-32.115-44.755Q-32.452-44.538-32.650-44.174Q-32.847-43.811-32.847-43.400Q-32.847-43.015-32.674-42.656Q-32.501-42.297-32.183-42.070Q-31.866-41.843-31.475-41.843\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(68.974 45.04)\">\u003Cpath d=\"M-21.151-40.700L-21.151-41.213Q-21.903-41.291-22.387-41.752Q-22.870-42.214-22.870-42.951Q-22.870-43.156-22.738-43.300Q-22.606-43.444-22.401-43.444Q-22.216-43.444-22.079-43.303Q-21.942-43.161-21.942-42.971Q-21.942-42.761-22.103-42.624Q-22.001-42.297-21.749-42.106Q-21.498-41.916-21.151-41.862L-21.151-44.123Q-21.893-44.284-22.382-44.685Q-22.870-45.085-22.870-45.764Q-22.870-46.208-22.623-46.562Q-22.377-46.916-21.986-47.128Q-21.596-47.341-21.151-47.404L-21.151-47.912Q-21.122-48.161-20.873-48.190L-20.780-48.190Q-20.531-48.161-20.502-47.912L-20.502-47.414Q-20.233-47.414-19.899-47.285Q-19.564-47.155-19.330-46.970Q-19.081-46.770-18.937-46.445Q-18.793-46.120-18.793-45.783Q-18.793-45.647-18.854-45.537Q-18.915-45.427-19.017-45.363Q-19.120-45.300-19.252-45.300Q-19.442-45.300-19.581-45.434Q-19.721-45.568-19.721-45.764Q-19.721-45.979-19.569-46.110Q-19.769-46.643-20.502-46.750L-20.502-44.733Q-20.023-44.631-19.638-44.404Q-19.252-44.177-19.022-43.815Q-18.793-43.454-18.793-42.971Q-18.793-42.292-19.298-41.801Q-19.804-41.311-20.502-41.213L-20.502-40.700Q-20.531-40.451-20.780-40.422L-20.873-40.422Q-20.990-40.437-21.063-40.510Q-21.137-40.583-21.151-40.700M-20.502-43.981L-20.502-41.872Q-20.233-41.926-19.996-42.070Q-19.760-42.214-19.616-42.441Q-19.472-42.668-19.472-42.932Q-19.472-43.337-19.777-43.620Q-20.082-43.903-20.502-43.981M-22.191-45.803Q-22.191-45.427-21.886-45.197Q-21.581-44.968-21.151-44.870L-21.151-46.740Q-21.552-46.672-21.871-46.423Q-22.191-46.174-22.191-45.803M-17.113-41.530L-17.113-41.623Q-17.084-41.872-16.830-41.901L-15.800-41.901L-15.800-46.023Q-16.293-45.603-16.854-45.603Q-16.972-45.603-17.064-45.678Q-17.157-45.754-17.172-45.881L-17.172-45.974Q-17.138-46.223-16.893-46.252Q-16.478-46.252-16.161-46.562Q-15.844-46.872-15.682-47.292Q-15.604-47.443-15.424-47.473L-15.350-47.473Q-15.233-47.458-15.160-47.385Q-15.087-47.312-15.072-47.194L-15.072-41.901L-14.042-41.901Q-13.793-41.872-13.764-41.623L-13.764-41.530Q-13.793-41.281-14.042-41.252L-16.830-41.252Q-17.084-41.281-17.113-41.530M-10.775-39.860L-10.834-39.860Q-10.956-39.860-11.058-39.968Q-11.161-40.075-11.161-40.202Q-11.161-40.412-10.951-40.481Q-10.658-40.554-10.441-40.766Q-10.223-40.979-10.155-41.272L-10.214-41.262L-10.243-41.252L-10.321-41.252Q-10.595-41.252-10.783-41.440Q-10.971-41.628-10.971-41.901Q-10.971-42.170-10.780-42.356Q-10.590-42.541-10.321-42.541Q-10.072-42.541-9.874-42.395Q-9.677-42.248-9.574-42.019Q-9.472-41.789-9.472-41.530Q-9.472-40.935-9.830-40.488Q-10.189-40.041-10.775-39.860M-6.835-40.773Q-6.835-40.852-6.805-40.910L-4.003-47.990Q-3.890-48.190-3.685-48.190Q-3.539-48.190-3.436-48.088Q-3.334-47.985-3.334-47.844Q-3.334-47.761-3.363-47.702L-6.166-40.622Q-6.278-40.422-6.483-40.422Q-6.620-40.422-6.727-40.529Q-6.835-40.637-6.835-40.773M-3.685-40.422Q-4.115-40.422-4.335-40.849Q-4.555-41.276-4.555-41.750Q-4.555-42.229-4.337-42.656Q-4.120-43.083-3.685-43.083Q-3.251-43.083-3.034-42.656Q-2.816-42.229-2.816-41.750Q-2.816-41.276-3.036-40.849Q-3.256-40.422-3.685-40.422M-3.695-41.071Q-3.602-41.071-3.539-41.201Q-3.475-41.330-3.444-41.491Q-3.412-41.652-3.412-41.750Q-3.412-41.921-3.483-42.163Q-3.554-42.404-3.676-42.434Q-3.807-42.434-3.881-42.187Q-3.954-41.940-3.954-41.750Q-3.954-41.584-3.888-41.345Q-3.822-41.106-3.695-41.071M-6.483-45.520Q-6.776-45.520-6.976-45.734Q-7.177-45.949-7.264-46.257Q-7.352-46.565-7.352-46.862Q-7.352-47.150-7.264-47.456Q-7.177-47.761-6.976-47.976Q-6.776-48.190-6.483-48.190Q-6.190-48.190-5.990-47.976Q-5.790-47.761-5.702-47.456Q-5.614-47.150-5.614-46.862Q-5.614-46.565-5.702-46.257Q-5.790-45.949-5.990-45.734Q-6.190-45.520-6.483-45.520M-6.493-46.174L-6.464-46.174Q-6.356-46.184-6.285-46.435Q-6.215-46.687-6.215-46.862Q-6.215-47.058-6.281-47.282Q-6.347-47.507-6.473-47.541L-6.483-47.541L-6.493-47.541Q-6.615-47.526-6.683-47.280Q-6.752-47.033-6.752-46.862Q-6.752-46.687-6.686-46.447Q-6.620-46.208-6.493-46.174M1.027-41.252L-1.874-41.252Q-2.118-41.281-2.157-41.530L-2.157-41.623Q-2.118-41.872-1.874-41.901L-0.946-41.901L-0.946-44.914L-1.874-44.914Q-2.118-44.943-2.157-45.192L-2.157-45.280Q-2.118-45.534-1.874-45.564L-0.497-45.564Q-0.375-45.549-0.302-45.476Q-0.228-45.402-0.214-45.280L-0.214-44.841Q-0.014-45.075 0.257-45.256Q0.528-45.437 0.846-45.529Q1.163-45.622 1.476-45.622Q1.842-45.622 2.128-45.471Q2.413-45.319 2.413-44.992Q2.413-44.802 2.291-44.668Q2.169-44.533 1.974-44.533Q1.793-44.533 1.664-44.658Q1.534-44.782 1.534-44.973L1.466-44.973Q0.987-44.973 0.602-44.714Q0.216-44.455 0.001-44.028Q-0.214-43.601-0.214-43.132L-0.214-41.901L1.027-41.901Q1.276-41.867 1.305-41.623L1.305-41.530Q1.276-41.286 1.027-41.252M3.234-43.010Q3.234-43.381 3.434-43.698Q3.634-44.016 3.951-44.231Q4.269-44.445 4.635-44.553Q4.332-44.636 4.037-44.816Q3.741-44.997 3.558-45.266Q3.375-45.534 3.375-45.852Q3.375-46.232 3.553-46.533Q3.732-46.833 4.044-47.048Q4.357-47.263 4.703-47.368Q5.050-47.473 5.416-47.473Q5.782-47.473 6.134-47.365Q6.486-47.258 6.788-47.050Q7.091-46.843 7.272-46.538Q7.452-46.232 7.452-45.852Q7.452-45.378 7.076-45.036Q6.700-44.694 6.193-44.553Q6.573-44.440 6.883-44.228Q7.194-44.016 7.394-43.698Q7.594-43.381 7.594-43.010Q7.594-42.590 7.413-42.251Q7.233-41.911 6.910-41.655Q6.588-41.398 6.205-41.269Q5.821-41.140 5.416-41.140Q4.874-41.140 4.371-41.374Q3.868-41.608 3.551-42.038Q3.234-42.468 3.234-43.010M3.966-43.010Q3.966-42.648 4.178-42.370Q4.391-42.092 4.725-41.943Q5.060-41.794 5.416-41.794Q5.768-41.794 6.102-41.943Q6.437-42.092 6.652-42.370Q6.866-42.648 6.866-43.010Q6.866-43.278 6.742-43.510Q6.617-43.742 6.410-43.896Q6.202-44.050 5.936-44.135Q5.670-44.221 5.416-44.221Q5.060-44.221 4.725-44.072Q4.391-43.923 4.178-43.649Q3.966-43.376 3.966-43.010M4.103-45.852Q4.103-45.398 4.520-45.134Q4.938-44.870 5.416-44.870Q5.890-44.870 6.307-45.131Q6.725-45.393 6.725-45.852Q6.725-46.301 6.312-46.562Q5.900-46.823 5.416-46.823Q5.109-46.823 4.808-46.711Q4.508-46.599 4.305-46.379Q4.103-46.159 4.103-45.852\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(174.25 45.457)\">\u003Cpath d=\"M-58.162-41.283L-59.385-44.139Q-59.467-44.315-59.611-44.359Q-59.756-44.404-60.025-44.404L-60.025-44.701L-58.314-44.701L-58.314-44.404Q-58.736-44.404-58.736-44.221Q-58.736-44.186-58.721-44.139L-57.775-41.947L-56.935-43.924Q-56.896-44.002-56.896-44.092Q-56.896-44.232-57.002-44.318Q-57.107-44.404-57.248-44.404L-57.248-44.701L-55.896-44.701L-55.896-44.404Q-56.420-44.404-56.635-43.924L-57.760-41.283Q-57.822-41.174-57.928-41.174L-57.994-41.174Q-58.107-41.174-58.162-41.283\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.25 45.457)\">\u003Cpath d=\"M-55.851-42.084Q-55.851-42.568-55.449-42.863Q-55.046-43.158-54.496-43.277Q-53.945-43.397-53.453-43.397L-53.453-43.686Q-53.453-43.912-53.568-44.119Q-53.683-44.326-53.880-44.445Q-54.078-44.565-54.308-44.565Q-54.734-44.565-55.019-44.459Q-54.949-44.432-54.902-44.377Q-54.855-44.322-54.830-44.252Q-54.804-44.182-54.804-44.107Q-54.804-44.002-54.855-43.910Q-54.906-43.818-54.998-43.768Q-55.089-43.717-55.195-43.717Q-55.300-43.717-55.392-43.768Q-55.484-43.818-55.535-43.910Q-55.585-44.002-55.585-44.107Q-55.585-44.525-55.197-44.672Q-54.808-44.818-54.308-44.818Q-53.976-44.818-53.623-44.688Q-53.269-44.557-53.041-44.303Q-52.812-44.049-52.812-43.701L-52.812-41.900Q-52.812-41.768-52.740-41.658Q-52.667-41.549-52.539-41.549Q-52.414-41.549-52.345-41.654Q-52.277-41.760-52.277-41.900L-52.277-42.412L-51.996-42.412L-51.996-41.900Q-51.996-41.697-52.113-41.539Q-52.230-41.381-52.412-41.297Q-52.593-41.213-52.796-41.213Q-53.027-41.213-53.179-41.385Q-53.332-41.557-53.363-41.787Q-53.523-41.506-53.832-41.340Q-54.140-41.174-54.492-41.174Q-55.003-41.174-55.427-41.397Q-55.851-41.619-55.851-42.084M-55.164-42.084Q-55.164-41.799-54.937-41.613Q-54.710-41.428-54.417-41.428Q-54.171-41.428-53.947-41.545Q-53.722-41.662-53.587-41.865Q-53.453-42.068-53.453-42.322L-53.453-43.154Q-53.718-43.154-54.003-43.100Q-54.289-43.045-54.560-42.916Q-54.832-42.787-54.998-42.580Q-55.164-42.373-55.164-42.084M-49.789-41.252L-51.621-41.252L-51.621-41.549Q-51.347-41.549-51.179-41.596Q-51.011-41.643-51.011-41.811L-51.011-45.971Q-51.011-46.186-51.074-46.281Q-51.136-46.377-51.255-46.398Q-51.374-46.420-51.621-46.420L-51.621-46.717L-50.398-46.803L-50.398-41.811Q-50.398-41.643-50.230-41.596Q-50.062-41.549-49.789-41.549L-49.789-41.252M-44.398-41.252L-49.246-41.252L-49.246-41.549Q-48.925-41.549-48.681-41.596Q-48.437-41.643-48.437-41.811L-48.437-46.154Q-48.437-46.326-48.681-46.373Q-48.925-46.420-49.246-46.420L-49.246-46.717L-44.511-46.717L-44.277-44.869L-44.558-44.869Q-44.640-45.565-44.816-45.885Q-44.992-46.205-45.339-46.313Q-45.687-46.420-46.406-46.420L-47.269-46.420Q-47.488-46.420-47.580-46.377Q-47.671-46.334-47.671-46.154L-47.671-44.236L-47.039-44.236Q-46.613-44.236-46.406-44.299Q-46.199-44.361-46.111-44.557Q-46.023-44.752-46.023-45.174L-45.742-45.174L-45.742-43.006L-46.023-43.006Q-46.023-43.428-46.111-43.621Q-46.199-43.815-46.406-43.877Q-46.613-43.940-47.039-43.940L-47.671-43.940L-47.671-41.811Q-47.671-41.639-47.580-41.594Q-47.488-41.549-47.269-41.549L-46.343-41.549Q-45.761-41.549-45.408-41.631Q-45.054-41.713-44.849-41.910Q-44.644-42.107-44.531-42.445Q-44.417-42.783-44.324-43.365L-44.046-43.365L-44.398-41.252M-37.843-42.229L-43.156-42.229Q-43.234-42.236-43.283-42.285Q-43.332-42.334-43.332-42.412Q-43.332-42.482-43.285-42.533Q-43.238-42.584-43.156-42.596L-37.843-42.596Q-37.769-42.584-37.722-42.533Q-37.675-42.482-37.675-42.412Q-37.675-42.334-37.724-42.285Q-37.773-42.236-37.843-42.229M-37.843-43.916L-43.156-43.916Q-43.234-43.924-43.283-43.973Q-43.332-44.022-43.332-44.100Q-43.332-44.170-43.285-44.221Q-43.238-44.272-43.156-44.283L-37.843-44.283Q-37.769-44.272-37.722-44.221Q-37.675-44.170-37.675-44.100Q-37.675-44.022-37.724-43.973Q-37.773-43.924-37.843-43.916M-33.601-41.252L-36.394-41.252L-36.394-41.549Q-35.332-41.549-35.332-41.811L-35.332-45.979Q-35.761-45.764-36.441-45.764L-36.441-46.061Q-35.421-46.061-34.906-46.572L-34.761-46.572Q-34.687-46.553-34.667-46.475L-34.667-41.811Q-34.667-41.549-33.601-41.549\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.25 45.457)\">\u003Cpath d=\"M-23.108-43.068L-29.452-43.068Q-29.526-43.068-29.577-43.125Q-29.627-43.182-29.627-43.252Q-29.627-43.322-29.580-43.379Q-29.534-43.436-29.452-43.436L-23.108-43.436Q-23.561-43.764-23.858-44.231Q-24.155-44.697-24.260-45.236Q-24.260-45.338-24.163-45.365L-23.995-45.365Q-23.913-45.346-23.893-45.260Q-23.764-44.584-23.284-44.066Q-22.803-43.549-22.139-43.357Q-22.077-43.334-22.077-43.252Q-22.077-43.170-22.139-43.147Q-22.803-42.959-23.284-42.440Q-23.764-41.920-23.893-41.244Q-23.913-41.158-23.995-41.139L-24.163-41.139Q-24.260-41.166-24.260-41.268Q-24.186-41.635-24.028-41.967Q-23.870-42.299-23.637-42.576Q-23.405-42.854-23.108-43.068\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.25 45.457)\">\u003Cpath d=\"M-17.583-40.986Q-17.583-41.049-17.552-41.092L-13.806-46.350Q-14.263-46.115-14.829-46.115Q-15.482-46.115-16.087-46.436Q-15.943-46.088-15.943-45.643Q-15.943-45.283-16.064-44.912Q-16.185-44.541-16.435-44.285Q-16.685-44.029-17.048-44.029Q-17.435-44.029-17.718-44.273Q-18.001-44.518-18.148-44.891Q-18.294-45.264-18.294-45.643Q-18.294-46.022-18.148-46.393Q-18.001-46.764-17.718-47.008Q-17.435-47.252-17.048-47.252Q-16.732-47.252-16.462-47.014Q-16.126-46.709-15.697-46.537Q-15.267-46.365-14.829-46.365Q-14.337-46.365-13.919-46.578Q-13.501-46.791-13.201-47.190Q-13.158-47.252-13.064-47.252Q-12.990-47.252-12.935-47.197Q-12.880-47.143-12.880-47.068Q-12.880-47.006-12.912-46.963L-17.255-40.869Q-17.302-40.803-17.400-40.803Q-17.482-40.803-17.533-40.854Q-17.583-40.904-17.583-40.986M-17.048-44.283Q-16.775-44.283-16.587-44.508Q-16.400-44.732-16.312-45.055Q-16.224-45.377-16.224-45.643Q-16.224-45.900-16.312-46.223Q-16.400-46.545-16.587-46.770Q-16.775-46.994-17.048-46.994Q-17.435-46.994-17.578-46.566Q-17.720-46.139-17.720-45.643Q-17.720-45.135-17.579-44.709Q-17.439-44.283-17.048-44.283M-13.271-40.803Q-13.658-40.803-13.941-41.049Q-14.224-41.295-14.372-41.668Q-14.521-42.041-14.521-42.420Q-14.521-42.693-14.435-42.981Q-14.349-43.268-14.195-43.502Q-14.040-43.736-13.804-43.883Q-13.568-44.029-13.271-44.029Q-12.990-44.029-12.783-43.877Q-12.576-43.725-12.437-43.482Q-12.298-43.240-12.232-42.959Q-12.165-42.678-12.165-42.420Q-12.165-42.061-12.287-41.688Q-12.408-41.315-12.658-41.059Q-12.908-40.803-13.271-40.803M-13.271-41.061Q-12.997-41.061-12.810-41.285Q-12.622-41.510-12.535-41.832Q-12.447-42.154-12.447-42.420Q-12.447-42.678-12.535-43Q-12.622-43.322-12.810-43.547Q-12.997-43.772-13.271-43.772Q-13.662-43.772-13.802-43.342Q-13.943-42.912-13.943-42.420Q-13.943-41.912-13.806-41.486Q-13.669-41.061-13.271-41.061M-9.443-41.252L-11.423-41.252L-11.423-41.549Q-11.154-41.549-10.986-41.594Q-10.818-41.639-10.818-41.811L-10.818-43.947Q-10.818-44.162-10.880-44.258Q-10.943-44.354-11.060-44.375Q-11.177-44.397-11.423-44.397L-11.423-44.693L-10.255-44.779L-10.255-43.994Q-10.177-44.205-10.025-44.391Q-9.872-44.576-9.673-44.678Q-9.474-44.779-9.247-44.779Q-9.001-44.779-8.810-44.635Q-8.619-44.490-8.619-44.260Q-8.619-44.104-8.724-43.994Q-8.829-43.885-8.986-43.885Q-9.142-43.885-9.251-43.994Q-9.361-44.104-9.361-44.260Q-9.361-44.420-9.255-44.525Q-9.579-44.525-9.794-44.297Q-10.009-44.068-10.105-43.729Q-10.201-43.389-10.201-43.084L-10.201-41.811Q-10.201-41.643-9.974-41.596Q-9.747-41.549-9.443-41.549L-9.443-41.252M-8.025-42.475Q-8.025-42.971-7.699-43.336Q-7.372-43.701-6.849-43.947L-7.119-44.107Q-7.415-44.291-7.599-44.586Q-7.783-44.881-7.783-45.221Q-7.783-45.615-7.564-45.926Q-7.345-46.236-6.992-46.404Q-6.638-46.572-6.255-46.572Q-5.982-46.572-5.708-46.494Q-5.435-46.416-5.218-46.268Q-5.001-46.119-4.865-45.893Q-4.728-45.666-4.728-45.373Q-4.728-44.967-4.997-44.660Q-5.267-44.354-5.689-44.139L-5.240-43.869Q-5.021-43.732-4.853-43.539Q-4.685-43.346-4.587-43.107Q-4.490-42.869-4.490-42.611Q-4.490-42.272-4.640-41.984Q-4.790-41.697-5.037-41.500Q-5.283-41.303-5.607-41.193Q-5.931-41.084-6.255-41.084Q-6.685-41.084-7.091-41.246Q-7.497-41.408-7.761-41.727Q-8.025-42.045-8.025-42.475M-7.537-42.475Q-7.537-41.990-7.146-41.674Q-6.755-41.357-6.255-41.357Q-5.962-41.357-5.663-41.469Q-5.365-41.580-5.171-41.799Q-4.978-42.018-4.978-42.330Q-4.978-42.561-5.119-42.772Q-5.259-42.982-5.466-43.100L-6.576-43.779Q-6.994-43.576-7.265-43.240Q-7.537-42.904-7.537-42.475M-6.951-44.908L-5.962-44.307Q-5.615-44.490-5.388-44.760Q-5.162-45.029-5.162-45.373Q-5.162-45.592-5.253-45.768Q-5.345-45.943-5.499-46.066Q-5.654-46.190-5.855-46.260Q-6.056-46.330-6.255-46.330Q-6.662-46.330-7.007-46.119Q-7.353-45.908-7.353-45.525Q-7.353-45.342-7.242-45.180Q-7.130-45.018-6.951-44.908\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(305.132 45.457)\">\u003Cpath d=\"M-59.017-40.986Q-59.017-41.049-58.986-41.092L-55.240-46.350Q-55.697-46.115-56.264-46.115Q-56.916-46.115-57.521-46.436Q-57.377-46.088-57.377-45.643Q-57.377-45.283-57.498-44.912Q-57.619-44.541-57.869-44.285Q-58.119-44.029-58.482-44.029Q-58.869-44.029-59.152-44.273Q-59.435-44.518-59.582-44.891Q-59.728-45.264-59.728-45.643Q-59.728-46.022-59.582-46.393Q-59.435-46.764-59.152-47.008Q-58.869-47.252-58.482-47.252Q-58.166-47.252-57.896-47.014Q-57.560-46.709-57.131-46.537Q-56.701-46.365-56.264-46.365Q-55.771-46.365-55.353-46.578Q-54.935-46.791-54.635-47.190Q-54.592-47.252-54.498-47.252Q-54.424-47.252-54.369-47.197Q-54.314-47.143-54.314-47.068Q-54.314-47.006-54.346-46.963L-58.689-40.869Q-58.736-40.803-58.834-40.803Q-58.916-40.803-58.967-40.854Q-59.017-40.904-59.017-40.986M-58.482-44.283Q-58.209-44.283-58.021-44.508Q-57.834-44.732-57.746-45.055Q-57.658-45.377-57.658-45.643Q-57.658-45.900-57.746-46.223Q-57.834-46.545-58.021-46.770Q-58.209-46.994-58.482-46.994Q-58.869-46.994-59.012-46.566Q-59.154-46.139-59.154-45.643Q-59.154-45.135-59.014-44.709Q-58.873-44.283-58.482-44.283M-54.705-40.803Q-55.092-40.803-55.375-41.049Q-55.658-41.295-55.806-41.668Q-55.955-42.041-55.955-42.420Q-55.955-42.693-55.869-42.981Q-55.783-43.268-55.629-43.502Q-55.474-43.736-55.238-43.883Q-55.002-44.029-54.705-44.029Q-54.424-44.029-54.217-43.877Q-54.010-43.725-53.871-43.482Q-53.732-43.240-53.666-42.959Q-53.599-42.678-53.599-42.420Q-53.599-42.061-53.721-41.688Q-53.842-41.315-54.092-41.059Q-54.342-40.803-54.705-40.803M-54.705-41.061Q-54.431-41.061-54.244-41.285Q-54.056-41.510-53.969-41.832Q-53.881-42.154-53.881-42.420Q-53.881-42.678-53.969-43Q-54.056-43.322-54.244-43.547Q-54.431-43.772-54.705-43.772Q-55.096-43.772-55.236-43.342Q-55.377-42.912-55.377-42.420Q-55.377-41.912-55.240-41.486Q-55.103-41.061-54.705-41.061M-50.877-41.252L-52.857-41.252L-52.857-41.549Q-52.588-41.549-52.420-41.594Q-52.252-41.639-52.252-41.811L-52.252-43.947Q-52.252-44.162-52.314-44.258Q-52.377-44.354-52.494-44.375Q-52.611-44.397-52.857-44.397L-52.857-44.693L-51.689-44.779L-51.689-43.994Q-51.611-44.205-51.459-44.391Q-51.306-44.576-51.107-44.678Q-50.908-44.779-50.681-44.779Q-50.435-44.779-50.244-44.635Q-50.053-44.490-50.053-44.260Q-50.053-44.104-50.158-43.994Q-50.264-43.885-50.420-43.885Q-50.576-43.885-50.685-43.994Q-50.795-44.104-50.795-44.260Q-50.795-44.420-50.689-44.525Q-51.014-44.525-51.228-44.297Q-51.443-44.068-51.539-43.729Q-51.635-43.389-51.635-43.084L-51.635-41.811Q-51.635-41.643-51.408-41.596Q-51.181-41.549-50.877-41.549L-50.877-41.252M-49.459-42.475Q-49.459-42.971-49.133-43.336Q-48.806-43.701-48.283-43.947L-48.553-44.107Q-48.849-44.291-49.033-44.586Q-49.217-44.881-49.217-45.221Q-49.217-45.615-48.998-45.926Q-48.779-46.236-48.426-46.404Q-48.072-46.572-47.689-46.572Q-47.416-46.572-47.142-46.494Q-46.869-46.416-46.652-46.268Q-46.435-46.119-46.299-45.893Q-46.162-45.666-46.162-45.373Q-46.162-44.967-46.431-44.660Q-46.701-44.354-47.123-44.139L-46.674-43.869Q-46.455-43.732-46.287-43.539Q-46.119-43.346-46.021-43.107Q-45.924-42.869-45.924-42.611Q-45.924-42.272-46.074-41.984Q-46.224-41.697-46.471-41.500Q-46.717-41.303-47.041-41.193Q-47.365-41.084-47.689-41.084Q-48.119-41.084-48.525-41.246Q-48.931-41.408-49.195-41.727Q-49.459-42.045-49.459-42.475M-48.971-42.475Q-48.971-41.990-48.580-41.674Q-48.189-41.357-47.689-41.357Q-47.396-41.357-47.097-41.469Q-46.799-41.580-46.605-41.799Q-46.412-42.018-46.412-42.330Q-46.412-42.561-46.553-42.772Q-46.693-42.982-46.900-43.100L-48.010-43.779Q-48.428-43.576-48.699-43.240Q-48.971-42.904-48.971-42.475M-48.385-44.908L-47.396-44.307Q-47.049-44.490-46.822-44.760Q-46.596-45.029-46.596-45.373Q-46.596-45.592-46.687-45.768Q-46.779-45.943-46.933-46.066Q-47.088-46.190-47.289-46.260Q-47.490-46.330-47.689-46.330Q-48.096-46.330-48.441-46.119Q-48.787-45.908-48.787-45.525Q-48.787-45.342-48.676-45.180Q-48.564-45.018-48.385-44.908M-39.603-42.229L-44.916-42.229Q-44.994-42.236-45.043-42.285Q-45.092-42.334-45.092-42.412Q-45.092-42.482-45.045-42.533Q-44.998-42.584-44.916-42.596L-39.603-42.596Q-39.529-42.584-39.482-42.533Q-39.435-42.482-39.435-42.412Q-39.435-42.334-39.484-42.285Q-39.533-42.236-39.603-42.229M-39.603-43.916L-44.916-43.916Q-44.994-43.924-45.043-43.973Q-45.092-44.022-45.092-44.100Q-45.092-44.170-45.045-44.221Q-44.998-44.272-44.916-44.283L-39.603-44.283Q-39.529-44.272-39.482-44.221Q-39.435-44.170-39.435-44.100Q-39.435-44.022-39.484-43.973Q-39.533-43.924-39.603-43.916M-35.361-41.252L-38.154-41.252L-38.154-41.549Q-37.092-41.549-37.092-41.811L-37.092-45.979Q-37.521-45.764-38.201-45.764L-38.201-46.061Q-37.181-46.061-36.666-46.572L-36.521-46.572Q-36.447-46.553-36.428-46.475L-36.428-41.811Q-36.428-41.549-35.361-41.549\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-68.737 11.954h395.494\"\u002F>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">Cycles 1-3: the three irmovq instructions load the initial registers. Each computes valE = 0 + valC and writes it to dstE = rB; PC advances by 10 each time (valP). No memory, no condition codes. After cycle 3 the loop begins.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:582.684px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 437.013 217.504\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-54.445h423.946\"\u002F>\u003Cg transform=\"translate(-2.157 -23.31)\">\u003Cpath d=\"M-56.539-43.196Q-56.539-43.596-56.383-43.900Q-56.228-44.204-55.951-44.410Q-55.674-44.615-55.334-44.714Q-54.994-44.813-54.604-44.813Q-54.034-44.813-53.627-44.680Q-53.220-44.546-53.220-44.099Q-53.220-43.893-53.364-43.746Q-53.507-43.599-53.716-43.599Q-53.931-43.599-54.076-43.745Q-54.221-43.890-54.221-44.099Q-54.221-44.276-54.129-44.399Q-54.324-44.427-54.597-44.427Q-54.885-44.427-55.067-44.331Q-55.250-44.235-55.353-44.066Q-55.455-43.897-55.496-43.682Q-55.537-43.466-55.537-43.196Q-55.537-42.612-55.255-42.297Q-54.973-41.983-54.396-41.983Q-54.122-41.983-53.900-42.109Q-53.678-42.236-53.582-42.482Q-53.545-42.547-53.480-42.564L-53.234-42.564Q-53.121-42.540-53.121-42.437Q-53.121-42.431-53.128-42.396Q-53.292-41.973-53.690-41.786Q-54.088-41.600-54.604-41.600Q-55.120-41.600-55.561-41.776Q-56.002-41.952-56.271-42.314Q-56.539-42.677-56.539-43.196M-52.632-40.954Q-52.632-41.159-52.495-41.292Q-52.359-41.426-52.160-41.426Q-52.037-41.426-51.928-41.364Q-51.819-41.303-51.755-41.192Q-51.692-41.080-51.692-40.954Q-51.692-40.742-51.853-40.592L-51.812-40.592Q-51.535-40.592-51.297-40.744Q-51.060-40.896-50.937-41.139L-50.684-41.641L-52.106-44.328L-52.581-44.328L-52.581-44.748L-50.810-44.748L-50.810-44.328L-51.118-44.328L-50.202-42.584L-49.320-44.307Q-49.327-44.328-49.628-44.328L-49.628-44.748L-48.312-44.748L-48.312-44.328Q-48.760-44.328-48.794-44.307L-50.410-41.139Q-50.616-40.735-50.993-40.487Q-51.371-40.240-51.812-40.240Q-52.123-40.240-52.377-40.441Q-52.632-40.643-52.632-40.954M-47.731-43.196Q-47.731-43.596-47.575-43.900Q-47.420-44.204-47.143-44.410Q-46.866-44.615-46.526-44.714Q-46.186-44.813-45.796-44.813Q-45.225-44.813-44.819-44.680Q-44.412-44.546-44.412-44.099Q-44.412-43.893-44.555-43.746Q-44.699-43.599-44.908-43.599Q-45.123-43.599-45.268-43.745Q-45.413-43.890-45.413-44.099Q-45.413-44.276-45.321-44.399Q-45.516-44.427-45.789-44.427Q-46.076-44.427-46.259-44.331Q-46.442-44.235-46.545-44.066Q-46.647-43.897-46.688-43.682Q-46.729-43.466-46.729-43.196Q-46.729-42.612-46.447-42.297Q-46.165-41.983-45.588-41.983Q-45.314-41.983-45.092-42.109Q-44.870-42.236-44.774-42.482Q-44.737-42.547-44.672-42.564L-44.426-42.564Q-44.313-42.540-44.313-42.437Q-44.313-42.431-44.320-42.396Q-44.484-41.973-44.882-41.786Q-45.280-41.600-45.796-41.600Q-46.312-41.600-46.753-41.776Q-47.194-41.952-47.462-42.314Q-47.731-42.677-47.731-43.196\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(27.718 -21.784)\">\u003Cpath d=\"M-53.887-41.641L-56.467-41.641L-56.467-42.061L-55.719-42.061L-55.719-46.023L-56.467-46.023L-56.467-46.443L-53.360-46.443Q-52.854-46.443-52.374-46.308Q-51.894-46.173-51.569-45.855Q-51.244-45.537-51.244-45.035Q-51.244-44.536-51.573-44.225Q-51.901-43.914-52.388-43.786Q-52.875-43.658-53.360-43.658L-54.635-43.658L-54.635-42.061L-53.887-42.061L-53.887-41.641M-54.683-46.023L-54.683-44.040L-53.647-44.040Q-53.302-44.040-53.066-44.085Q-52.830-44.129-52.639-44.280Q-52.485-44.399-52.449-44.579Q-52.413-44.758-52.413-45.035Q-52.413-45.308-52.451-45.490Q-52.489-45.671-52.639-45.790Q-52.820-45.941-53.053-45.982Q-53.285-46.023-53.647-46.023L-54.683-46.023M-50.195-44.040Q-50.195-44.864-49.752-45.430Q-49.310-45.995-48.596-46.262Q-47.881-46.529-47.075-46.529Q-46.654-46.529-46.263-46.407Q-45.871-46.286-45.557-46.050L-45.031-46.498Q-45.017-46.505-45.008-46.508Q-45-46.512-44.984-46.518Q-44.969-46.525-44.959-46.529L-44.849-46.529Q-44.757-46.505-44.737-46.416L-44.737-44.686Q-44.757-44.594-44.849-44.574L-45.150-44.574Q-45.239-44.594-45.263-44.686Q-45.297-44.977-45.439-45.242Q-45.581-45.507-45.805-45.702Q-46.029-45.896-46.304-46.002Q-46.579-46.108-46.887-46.108Q-47.584-46.108-48.066-45.886Q-48.548-45.664-48.787-45.203Q-49.026-44.741-49.026-44.040Q-49.026-43.336-48.782-42.875Q-48.537-42.413-48.062-42.195Q-47.587-41.976-46.873-41.976Q-46.470-41.976-46.082-42.133Q-45.694-42.290-45.449-42.595Q-45.205-42.899-45.205-43.312Q-45.184-43.405-45.092-43.425L-44.849-43.425Q-44.737-43.394-44.737-43.285Q-44.737-42.854-44.947-42.530Q-45.157-42.205-45.509-41.985Q-45.861-41.764-46.270-41.660Q-46.678-41.556-47.075-41.556Q-47.881-41.556-48.597-41.822Q-49.313-42.089-49.754-42.653Q-50.195-43.217-50.195-44.040\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(66.129 -21.754)\">\u003Cpath d=\"M-54.649-41.641L-56.412-41.641L-56.412-42.061L-55.944-42.061L-55.944-44.119Q-55.944-44.249-56.065-44.281Q-56.187-44.314-56.392-44.314L-56.392-44.734L-55.076-44.792L-55.076-42.061L-54.649-42.061L-54.649-41.641M-56.187-45.924Q-56.187-46.163-56.013-46.334Q-55.838-46.505-55.599-46.505Q-55.438-46.505-55.307-46.424Q-55.175-46.344-55.096-46.209Q-55.018-46.074-55.018-45.924Q-55.018-45.681-55.190-45.508Q-55.363-45.336-55.599-45.336Q-55.835-45.336-56.011-45.508Q-56.187-45.681-56.187-45.924M-52.037-41.641L-53.893-41.641L-53.893-42.061L-53.425-42.061L-53.425-44.119Q-53.425-44.249-53.557-44.281Q-53.688-44.314-53.893-44.314L-53.893-44.734L-52.598-44.792L-52.598-44.099Q-52.465-44.310-52.248-44.473Q-52.031-44.635-51.778-44.714Q-51.525-44.792-51.268-44.792Q-50.670-44.792-50.351-44.565Q-50.031-44.338-50.031-43.764L-50.031-42.061L-49.559-42.061L-49.559-41.641L-51.415-41.641L-51.415-42.061L-50.947-42.061L-50.947-43.733Q-50.947-43.958-50.969-44.099Q-50.992-44.239-51.087-44.339Q-51.183-44.440-51.381-44.440Q-51.825-44.440-52.167-44.151Q-52.509-43.863-52.509-43.425L-52.509-42.061L-52.037-42.061L-52.037-41.641M-48.975-41.709L-48.975-42.608Q-48.954-42.697-48.862-42.718L-48.616-42.718Q-48.541-42.697-48.513-42.636Q-48.305-41.949-47.512-41.949Q-46.644-41.949-46.644-42.403Q-46.644-42.598-46.840-42.704Q-47.037-42.810-47.273-42.844L-47.854-42.936Q-48.117-42.974-48.378-43.087Q-48.640-43.200-48.807-43.389Q-48.975-43.579-48.975-43.859Q-48.975-44.403-48.546-44.608Q-48.117-44.813-47.512-44.813Q-47.034-44.813-46.763-44.700L-46.531-44.806L-46.504-44.813L-46.391-44.813Q-46.299-44.792-46.278-44.700L-46.278-43.999Q-46.299-43.914-46.391-43.887L-46.637-43.887Q-46.726-43.911-46.746-43.999Q-46.746-44.498-47.533-44.498Q-48.387-44.498-48.387-44.119Q-48.387-43.852-47.799-43.770L-47.211-43.678Q-46.921-43.634-46.656-43.504Q-46.391-43.374-46.223-43.155Q-46.056-42.936-46.056-42.649Q-46.056-42.253-46.264-42.019Q-46.473-41.785-46.803-41.692Q-47.133-41.600-47.512-41.600Q-48.035-41.600-48.387-41.795L-48.695-41.620Q-48.725-41.603-48.749-41.600L-48.862-41.600Q-48.954-41.620-48.975-41.709M-44.904-42.431L-44.904-44.328L-45.523-44.328L-45.523-44.680Q-45.263-44.680-45.056-44.809Q-44.849-44.939-44.721-45.141Q-44.593-45.343-44.525-45.590Q-44.456-45.838-44.456-46.084L-43.988-46.084L-43.988-44.748L-42.860-44.748L-42.860-44.328L-43.988-44.328L-43.988-42.461Q-43.988-41.983-43.588-41.983Q-43.404-41.983-43.294-42.128Q-43.185-42.273-43.185-42.461L-43.185-42.851L-42.713-42.851L-42.713-42.431Q-42.713-42.184-42.858-41.996Q-43.004-41.808-43.236-41.704Q-43.469-41.600-43.708-41.600Q-44.207-41.600-44.555-41.786Q-44.904-41.973-44.904-42.431M-39.887-41.641L-41.811-41.641L-41.811-42.061L-41.343-42.061L-41.343-44.119Q-41.343-44.249-41.474-44.281Q-41.606-44.314-41.811-44.314L-41.811-44.734L-40.567-44.792L-40.567-44.071Q-40.468-44.287-40.326-44.445Q-40.184-44.604-39.996-44.698Q-39.808-44.792-39.579-44.792Q-39.370-44.792-39.176-44.722Q-38.981-44.652-38.849-44.509Q-38.718-44.365-38.718-44.153Q-38.718-44.016-38.783-43.905Q-38.847-43.794-38.964-43.729Q-39.080-43.664-39.210-43.664Q-39.415-43.664-39.557-43.803Q-39.699-43.941-39.699-44.153Q-39.699-44.321-39.613-44.440Q-40.034-44.440-40.254-44.010Q-40.474-43.579-40.474-43.111L-40.474-42.061L-39.887-42.061L-39.887-41.641M-37.542-42.431L-37.542-44.119Q-37.542-44.249-37.673-44.281Q-37.805-44.314-38.010-44.314L-38.010-44.734L-36.626-44.792L-36.626-42.461Q-36.626-42.116-36.547-42.048Q-36.393-41.949-35.980-41.949Q-35.614-41.949-35.339-42.164Q-35.064-42.379-35.064-42.724L-35.064-44.119Q-35.064-44.249-35.195-44.281Q-35.327-44.314-35.532-44.314L-35.532-44.734L-34.148-44.792L-34.148-42.256Q-34.148-42.130-34.014-42.096Q-33.881-42.061-33.676-42.061L-33.676-41.641L-35.013-41.600L-35.013-42.075Q-35.200-41.843-35.488-41.721Q-35.775-41.600-36.079-41.600Q-36.479-41.600-36.785-41.650Q-37.091-41.699-37.316-41.882Q-37.542-42.065-37.542-42.431M-33.092-43.196Q-33.092-43.596-32.936-43.900Q-32.781-44.204-32.504-44.410Q-32.227-44.615-31.887-44.714Q-31.547-44.813-31.157-44.813Q-30.586-44.813-30.179-44.680Q-29.773-44.546-29.773-44.099Q-29.773-43.893-29.916-43.746Q-30.060-43.599-30.268-43.599Q-30.484-43.599-30.629-43.745Q-30.774-43.890-30.774-44.099Q-30.774-44.276-30.682-44.399Q-30.877-44.427-31.150-44.427Q-31.437-44.427-31.620-44.331Q-31.803-44.235-31.906-44.066Q-32.008-43.897-32.049-43.682Q-32.090-43.466-32.090-43.196Q-32.090-42.612-31.808-42.297Q-31.526-41.983-30.949-41.983Q-30.675-41.983-30.453-42.109Q-30.231-42.236-30.135-42.482Q-30.097-42.547-30.033-42.564L-29.786-42.564Q-29.674-42.540-29.674-42.437Q-29.674-42.431-29.680-42.396Q-29.845-41.973-30.243-41.786Q-30.641-41.600-31.157-41.600Q-31.673-41.600-32.114-41.776Q-32.555-41.952-32.823-42.314Q-33.092-42.677-33.092-43.196M-28.573-42.431L-28.573-44.328L-29.192-44.328L-29.192-44.680Q-28.932-44.680-28.725-44.809Q-28.518-44.939-28.390-45.141Q-28.262-45.343-28.194-45.590Q-28.125-45.838-28.125-46.084L-27.657-46.084L-27.657-44.748L-26.529-44.748L-26.529-44.328L-27.657-44.328L-27.657-42.461Q-27.657-41.983-27.257-41.983Q-27.073-41.983-26.963-42.128Q-26.854-42.273-26.854-42.461L-26.854-42.851L-26.382-42.851L-26.382-42.431Q-26.382-42.184-26.527-41.996Q-26.673-41.808-26.905-41.704Q-27.138-41.600-27.377-41.600Q-27.876-41.600-28.224-41.786Q-28.573-41.973-28.573-42.431M-23.634-41.641L-25.398-41.641L-25.398-42.061L-24.929-42.061L-24.929-44.119Q-24.929-44.249-25.051-44.281Q-25.172-44.314-25.377-44.314L-25.377-44.734L-24.061-44.792L-24.061-42.061L-23.634-42.061L-23.634-41.641M-25.172-45.924Q-25.172-46.163-24.998-46.334Q-24.824-46.505-24.584-46.505Q-24.424-46.505-24.292-46.424Q-24.160-46.344-24.082-46.209Q-24.003-46.074-24.003-45.924Q-24.003-45.681-24.176-45.508Q-24.348-45.336-24.584-45.336Q-24.820-45.336-24.996-45.508Q-25.172-45.681-25.172-45.924M-23.033-43.159Q-23.033-43.702-22.757-44.075Q-22.482-44.447-22.029-44.630Q-21.576-44.813-21.050-44.813Q-20.531-44.813-20.076-44.630Q-19.621-44.447-19.346-44.075Q-19.071-43.702-19.071-43.159Q-19.071-42.639-19.351-42.285Q-19.632-41.932-20.086-41.766Q-20.541-41.600-21.050-41.600Q-21.556-41.600-22.014-41.766Q-22.472-41.932-22.752-42.285Q-23.033-42.639-23.033-43.159M-21.050-41.983Q-20.623-41.983-20.409-42.137Q-20.196-42.290-20.134-42.550Q-20.073-42.810-20.073-43.258Q-20.073-43.682-20.139-43.931Q-20.206-44.181-20.418-44.321Q-20.630-44.461-21.050-44.461Q-21.467-44.461-21.682-44.319Q-21.898-44.177-21.964-43.929Q-22.031-43.682-22.031-43.258Q-22.031-42.810-21.970-42.550Q-21.908-42.290-21.693-42.137Q-21.477-41.983-21.050-41.983M-16.494-41.641L-18.350-41.641L-18.350-42.061L-17.882-42.061L-17.882-44.119Q-17.882-44.249-18.013-44.281Q-18.145-44.314-18.350-44.314L-18.350-44.734L-17.054-44.792L-17.054-44.099Q-16.921-44.310-16.704-44.473Q-16.487-44.635-16.234-44.714Q-15.981-44.792-15.725-44.792Q-15.127-44.792-14.807-44.565Q-14.488-44.338-14.488-43.764L-14.488-42.061L-14.016-42.061L-14.016-41.641L-15.872-41.641L-15.872-42.061L-15.404-42.061L-15.404-43.733Q-15.404-43.958-15.426-44.099Q-15.448-44.239-15.544-44.339Q-15.639-44.440-15.838-44.440Q-16.282-44.440-16.624-44.151Q-16.966-43.863-16.966-43.425L-16.966-42.061L-16.494-42.061\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 -22.435)\">\u003Cpath d=\"M-56.539-43.196Q-56.539-43.596-56.383-43.900Q-56.228-44.204-55.951-44.410Q-55.674-44.615-55.334-44.714Q-54.994-44.813-54.604-44.813Q-54.034-44.813-53.627-44.680Q-53.220-44.546-53.220-44.099Q-53.220-43.893-53.364-43.746Q-53.507-43.599-53.716-43.599Q-53.931-43.599-54.076-43.745Q-54.221-43.890-54.221-44.099Q-54.221-44.276-54.129-44.399Q-54.324-44.427-54.597-44.427Q-54.885-44.427-55.067-44.331Q-55.250-44.235-55.353-44.066Q-55.455-43.897-55.496-43.682Q-55.537-43.466-55.537-43.196Q-55.537-42.612-55.255-42.297Q-54.973-41.983-54.396-41.983Q-54.122-41.983-53.900-42.109Q-53.678-42.236-53.582-42.482Q-53.545-42.547-53.480-42.564L-53.234-42.564Q-53.121-42.540-53.121-42.437Q-53.121-42.431-53.128-42.396Q-53.292-41.973-53.690-41.786Q-54.088-41.600-54.604-41.600Q-55.120-41.600-55.561-41.776Q-56.002-41.952-56.271-42.314Q-56.539-42.677-56.539-43.196M-52.554-43.159Q-52.554-43.702-52.278-44.075Q-52.003-44.447-51.550-44.630Q-51.097-44.813-50.571-44.813Q-50.052-44.813-49.597-44.630Q-49.142-44.447-48.867-44.075Q-48.592-43.702-48.592-43.159Q-48.592-42.639-48.872-42.285Q-49.153-41.932-49.607-41.766Q-50.062-41.600-50.571-41.600Q-51.077-41.600-51.535-41.766Q-51.993-41.932-52.273-42.285Q-52.554-42.639-52.554-43.159M-50.571-41.983Q-50.144-41.983-49.930-42.137Q-49.717-42.290-49.655-42.550Q-49.594-42.810-49.594-43.258Q-49.594-43.682-49.660-43.931Q-49.727-44.181-49.939-44.321Q-50.151-44.461-50.571-44.461Q-50.988-44.461-51.203-44.319Q-51.419-44.177-51.485-43.929Q-51.552-43.682-51.552-43.258Q-51.552-42.810-51.491-42.550Q-51.429-42.290-51.214-42.137Q-50.998-41.983-50.571-41.983M-46.015-41.641L-47.871-41.641L-47.871-42.061L-47.403-42.061L-47.403-44.119Q-47.403-44.249-47.534-44.281Q-47.666-44.314-47.871-44.314L-47.871-44.734L-46.575-44.792L-46.575-44.099Q-46.374-44.423-46.006-44.608Q-45.639-44.792-45.239-44.792Q-44.784-44.792-44.472-44.661Q-44.159-44.529-44.056-44.153Q-43.913-44.351-43.704-44.498Q-43.496-44.645-43.253-44.719Q-43.011-44.792-42.754-44.792Q-42.163-44.792-41.838-44.568Q-41.513-44.345-41.513-43.764L-41.513-42.061L-41.045-42.061L-41.045-41.641L-42.901-41.641L-42.901-42.061L-42.433-42.061L-42.433-43.733Q-42.433-43.962-42.455-44.102Q-42.477-44.242-42.575-44.341Q-42.672-44.440-42.867-44.440Q-43.158-44.440-43.421-44.310Q-43.684-44.181-43.841-43.950Q-43.998-43.719-43.998-43.425L-43.998-42.061L-43.530-42.061L-43.530-41.641L-45.386-41.641L-45.386-42.061L-44.918-42.061L-44.918-43.733Q-44.918-43.962-44.940-44.102Q-44.962-44.242-45.060-44.341Q-45.157-44.440-45.352-44.440Q-45.642-44.440-45.907-44.310Q-46.172-44.181-46.329-43.950Q-46.487-43.719-46.487-43.425L-46.487-42.061L-46.015-42.061L-46.015-41.641M-38.567-40.284L-40.420-40.284L-40.420-40.704L-39.951-40.704L-39.951-44.181Q-39.951-44.314-40.420-44.314L-40.420-44.734L-39.083-44.792L-39.083-44.481Q-38.567-44.792-37.873-44.792Q-37.494-44.792-37.178-44.686Q-36.862-44.580-36.617-44.377Q-36.373-44.174-36.238-43.876Q-36.103-43.579-36.103-43.196Q-36.103-42.793-36.258-42.492Q-36.414-42.191-36.694-41.990Q-36.974-41.788-37.316-41.694Q-37.658-41.600-38.041-41.600Q-38.598-41.600-39.035-41.894L-39.035-40.704L-38.567-40.704L-38.567-40.284M-39.035-43.999L-39.035-42.431Q-38.882-42.208-38.639-42.078Q-38.396-41.949-38.133-41.949Q-37.795-41.949-37.561-42.121Q-37.326-42.294-37.215-42.579Q-37.104-42.865-37.104-43.196Q-37.104-43.511-37.200-43.784Q-37.296-44.058-37.506-44.232Q-37.716-44.406-38.034-44.406Q-38.325-44.406-38.588-44.304Q-38.851-44.201-39.035-43.999M-34.866-42.431L-34.866-44.119Q-34.866-44.249-34.997-44.281Q-35.129-44.314-35.334-44.314L-35.334-44.734L-33.950-44.792L-33.950-42.461Q-33.950-42.116-33.871-42.048Q-33.717-41.949-33.304-41.949Q-32.938-41.949-32.663-42.164Q-32.388-42.379-32.388-42.724L-32.388-44.119Q-32.388-44.249-32.519-44.281Q-32.651-44.314-32.856-44.314L-32.856-44.734L-31.471-44.792L-31.471-42.256Q-31.471-42.130-31.338-42.096Q-31.205-42.061-31-42.061L-31-41.641L-32.336-41.600L-32.336-42.075Q-32.524-41.843-32.811-41.721Q-33.098-41.600-33.403-41.600Q-33.803-41.600-34.108-41.650Q-34.414-41.699-34.640-41.882Q-34.866-42.065-34.866-42.431M-29.930-42.431L-29.930-44.328L-30.549-44.328L-30.549-44.680Q-30.289-44.680-30.082-44.809Q-29.875-44.939-29.747-45.141Q-29.619-45.343-29.551-45.590Q-29.482-45.838-29.482-46.084L-29.014-46.084L-29.014-44.748L-27.886-44.748L-27.886-44.328L-29.014-44.328L-29.014-42.461Q-29.014-41.983-28.614-41.983Q-28.429-41.983-28.320-42.128Q-28.211-42.273-28.211-42.461L-28.211-42.851L-27.739-42.851L-27.739-42.431Q-27.739-42.184-27.884-41.996Q-28.030-41.808-28.262-41.704Q-28.494-41.600-28.734-41.600Q-29.233-41.600-29.581-41.786Q-29.930-41.973-29.930-42.431M-26.929-42.475Q-26.929-42.899-26.480-43.135Q-26.030-43.370-25.461-43.447Q-24.892-43.524-24.417-43.524L-24.417-43.733Q-24.417-43.965-24.518-44.129Q-24.618-44.293-24.796-44.377Q-24.974-44.461-25.200-44.461Q-25.538-44.461-25.746-44.427Q-25.634-44.293-25.634-44.099Q-25.634-43.893-25.777-43.746Q-25.921-43.599-26.133-43.599Q-26.348-43.599-26.492-43.746Q-26.635-43.893-26.635-44.099Q-26.635-44.420-26.401-44.577Q-26.167-44.734-25.873-44.774Q-25.579-44.813-25.200-44.813Q-24.820-44.813-24.432-44.717Q-24.044-44.621-23.773-44.386Q-23.501-44.150-23.501-43.764L-23.501-42.161Q-23.470-42.061-22.981-42.061Q-22.862-42.041-22.841-41.921L-22.841-41.781Q-22.862-41.662-22.981-41.641L-23.477-41.641Q-24.277-41.641-24.277-42.082Q-24.458-41.836-24.779-41.718Q-25.100-41.600-25.459-41.600Q-26.020-41.600-26.474-41.797Q-26.929-41.993-26.929-42.475M-26.020-42.475Q-26.020-42.225-25.803-42.087Q-25.586-41.949-25.319-41.949Q-24.988-41.949-24.702-42.094Q-24.417-42.239-24.417-42.543L-24.417-43.224Q-24.690-43.224-25.071-43.157Q-25.452-43.090-25.736-42.921Q-26.020-42.752-26.020-42.475M-21.993-42.431L-21.993-44.328L-22.612-44.328L-22.612-44.680Q-22.352-44.680-22.146-44.809Q-21.939-44.939-21.811-45.141Q-21.682-45.343-21.614-45.590Q-21.546-45.838-21.546-46.084L-21.077-46.084L-21.077-44.748L-19.950-44.748L-19.950-44.328L-21.077-44.328L-21.077-42.461Q-21.077-41.983-20.678-41.983Q-20.493-41.983-20.384-42.128Q-20.274-42.273-20.274-42.461L-20.274-42.851L-19.803-42.851L-19.803-42.431Q-19.803-42.184-19.948-41.996Q-20.093-41.808-20.325-41.704Q-20.558-41.600-20.797-41.600Q-21.296-41.600-21.645-41.786Q-21.993-41.973-21.993-42.431M-17.054-41.641L-18.818-41.641L-18.818-42.061L-18.350-42.061L-18.350-44.119Q-18.350-44.249-18.471-44.281Q-18.593-44.314-18.798-44.314L-18.798-44.734L-17.482-44.792L-17.482-42.061L-17.054-42.061L-17.054-41.641M-18.593-45.924Q-18.593-46.163-18.418-46.334Q-18.244-46.505-18.005-46.505Q-17.844-46.505-17.712-46.424Q-17.581-46.344-17.502-46.209Q-17.424-46.074-17.424-45.924Q-17.424-45.681-17.596-45.508Q-17.769-45.336-18.005-45.336Q-18.241-45.336-18.417-45.508Q-18.593-45.681-18.593-45.924M-16.453-43.159Q-16.453-43.702-16.178-44.075Q-15.903-44.447-15.450-44.630Q-14.997-44.813-14.471-44.813Q-13.951-44.813-13.496-44.630Q-13.042-44.447-12.767-44.075Q-12.492-43.702-12.492-43.159Q-12.492-42.639-12.772-42.285Q-13.052-41.932-13.507-41.766Q-13.961-41.600-14.471-41.600Q-14.976-41.600-15.434-41.766Q-15.892-41.932-16.173-42.285Q-16.453-42.639-16.453-43.159M-14.471-41.983Q-14.043-41.983-13.830-42.137Q-13.616-42.290-13.554-42.550Q-13.493-42.810-13.493-43.258Q-13.493-43.682-13.560-43.931Q-13.626-44.181-13.838-44.321Q-14.050-44.461-14.471-44.461Q-14.888-44.461-15.103-44.319Q-15.318-44.177-15.385-43.929Q-15.451-43.682-15.451-43.258Q-15.451-42.810-15.390-42.550Q-15.328-42.290-15.113-42.137Q-14.898-41.983-14.471-41.983M-9.914-41.641L-11.770-41.641L-11.770-42.061L-11.302-42.061L-11.302-44.119Q-11.302-44.249-11.434-44.281Q-11.565-44.314-11.770-44.314L-11.770-44.734L-10.475-44.792L-10.475-44.099Q-10.342-44.310-10.125-44.473Q-9.908-44.635-9.655-44.714Q-9.402-44.792-9.145-44.792Q-8.547-44.792-8.228-44.565Q-7.908-44.338-7.908-43.764L-7.908-42.061L-7.436-42.061L-7.436-41.641L-9.292-41.641L-9.292-42.061L-8.824-42.061L-8.824-43.733Q-8.824-43.958-8.846-44.099Q-8.868-44.239-8.964-44.339Q-9.060-44.440-9.258-44.440Q-9.702-44.440-10.044-44.151Q-10.386-43.863-10.386-43.425L-10.386-42.061L-9.914-42.061\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmbx7\" font-size=\"7\">\u003Cg transform=\"translate(259.608 -21.754)\">\u003Cpath d=\"M-56.341-44.040Q-56.341-44.864-55.898-45.430Q-55.455-45.995-54.741-46.262Q-54.027-46.529-53.220-46.529Q-52.800-46.529-52.408-46.407Q-52.017-46.286-51.702-46.050L-51.176-46.498Q-51.162-46.505-51.154-46.508Q-51.145-46.512-51.130-46.518Q-51.115-46.525-51.104-46.529L-50.995-46.529Q-50.903-46.505-50.882-46.416L-50.882-44.686Q-50.903-44.594-50.995-44.574L-51.296-44.574Q-51.385-44.594-51.409-44.686Q-51.443-44.977-51.585-45.242Q-51.726-45.507-51.950-45.702Q-52.174-45.896-52.449-46.002Q-52.724-46.108-53.032-46.108Q-53.729-46.108-54.211-45.886Q-54.693-45.664-54.932-45.203Q-55.172-44.741-55.172-44.040Q-55.172-43.336-54.927-42.875Q-54.683-42.413-54.208-42.195Q-53.733-41.976-53.018-41.976Q-52.615-41.976-52.227-42.133Q-51.839-42.290-51.595-42.595Q-51.350-42.899-51.350-43.312Q-51.330-43.405-51.238-43.425L-50.995-43.425Q-50.882-43.394-50.882-43.285Q-50.882-42.854-51.092-42.530Q-51.303-42.205-51.655-41.985Q-52.007-41.764-52.415-41.660Q-52.824-41.556-53.220-41.556Q-54.027-41.556-54.743-41.822Q-55.459-42.089-55.900-42.653Q-56.341-43.217-56.341-44.040M-49.823-44.040Q-49.823-44.864-49.380-45.430Q-48.937-45.995-48.223-46.262Q-47.509-46.529-46.702-46.529Q-46.282-46.529-45.890-46.407Q-45.499-46.286-45.184-46.050L-44.658-46.498Q-44.644-46.505-44.636-46.508Q-44.627-46.512-44.612-46.518Q-44.596-46.525-44.586-46.529L-44.477-46.529Q-44.385-46.505-44.364-46.416L-44.364-44.686Q-44.385-44.594-44.477-44.574L-44.778-44.574Q-44.867-44.594-44.890-44.686Q-44.925-44.977-45.066-45.242Q-45.208-45.507-45.432-45.702Q-45.656-45.896-45.931-46.002Q-46.206-46.108-46.514-46.108Q-47.211-46.108-47.693-45.886Q-48.175-45.664-48.414-45.203Q-48.654-44.741-48.654-44.040Q-48.654-43.336-48.409-42.875Q-48.165-42.413-47.690-42.195Q-47.215-41.976-46.500-41.976Q-46.097-41.976-45.709-42.133Q-45.321-42.290-45.077-42.595Q-44.832-42.899-44.832-43.312Q-44.812-43.405-44.720-43.425L-44.477-43.425Q-44.364-43.394-44.364-43.285Q-44.364-42.854-44.574-42.530Q-44.784-42.205-45.137-41.985Q-45.489-41.764-45.897-41.660Q-46.305-41.556-46.702-41.556Q-47.509-41.556-48.225-41.822Q-48.941-42.089-49.382-42.653Q-49.823-43.217-49.823-44.040\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(259.608 -21.754)\">\u003Cpath d=\"M-40.510-42.475Q-40.510-42.899-40.060-43.135Q-39.611-43.370-39.042-43.447Q-38.473-43.524-37.998-43.524L-37.998-43.733Q-37.998-43.965-38.098-44.129Q-38.199-44.293-38.377-44.377Q-38.555-44.461-38.780-44.461Q-39.119-44.461-39.327-44.427Q-39.214-44.293-39.214-44.099Q-39.214-43.893-39.358-43.746Q-39.501-43.599-39.713-43.599Q-39.929-43.599-40.072-43.746Q-40.216-43.893-40.216-44.099Q-40.216-44.420-39.982-44.577Q-39.748-44.734-39.454-44.774Q-39.160-44.813-38.780-44.813Q-38.401-44.813-38.013-44.717Q-37.625-44.621-37.353-44.386Q-37.082-44.150-37.082-43.764L-37.082-42.161Q-37.051-42.061-36.562-42.061Q-36.442-42.041-36.422-41.921L-36.422-41.781Q-36.442-41.662-36.562-41.641L-37.058-41.641Q-37.857-41.641-37.857-42.082Q-38.039-41.836-38.360-41.718Q-38.681-41.600-39.040-41.600Q-39.601-41.600-40.055-41.797Q-40.510-41.993-40.510-42.475M-39.601-42.475Q-39.601-42.225-39.384-42.087Q-39.166-41.949-38.900-41.949Q-38.568-41.949-38.283-42.094Q-37.998-42.239-37.998-42.543L-37.998-43.224Q-38.271-43.224-38.652-43.157Q-39.033-43.090-39.317-42.921Q-39.601-42.752-39.601-42.475M-34.002-41.641L-35.926-41.641L-35.926-42.061L-35.458-42.061L-35.458-44.328L-36.025-44.328L-36.025-44.748L-35.458-44.748L-35.458-45.462Q-35.458-45.852-35.186-46.096Q-34.915-46.341-34.525-46.442Q-34.135-46.542-33.742-46.542Q-33.544-46.542-33.352-46.460Q-33.161-46.378-33.041-46.224Q-32.922-46.071-32.922-45.869Q-32.922-45.661-33.065-45.517Q-33.209-45.373-33.414-45.373Q-33.623-45.373-33.766-45.517Q-33.910-45.661-33.910-45.869Q-33.910-46.054-33.797-46.190L-33.848-46.190Q-34.204-46.190-34.421-45.987Q-34.638-45.784-34.638-45.435L-34.638-44.748L-33.708-44.748L-33.708-44.328L-34.590-44.328L-34.590-42.061L-34.002-42.061L-34.002-41.641M-32.789-42.431L-32.789-44.328L-33.407-44.328L-33.407-44.680Q-33.147-44.680-32.941-44.809Q-32.734-44.939-32.606-45.141Q-32.477-45.343-32.409-45.590Q-32.341-45.838-32.341-46.084L-31.873-46.084L-31.873-44.748L-30.745-44.748L-30.745-44.328L-31.873-44.328L-31.873-42.461Q-31.873-41.983-31.473-41.983Q-31.288-41.983-31.179-42.128Q-31.069-42.273-31.069-42.461L-31.069-42.851L-30.598-42.851L-30.598-42.431Q-30.598-42.184-30.743-41.996Q-30.888-41.808-31.121-41.704Q-31.353-41.600-31.592-41.600Q-32.091-41.600-32.440-41.786Q-32.789-41.973-32.789-42.431M-29.788-43.217Q-29.788-43.610-29.629-43.916Q-29.470-44.222-29.201-44.420Q-28.933-44.618-28.593-44.715Q-28.253-44.813-27.877-44.813Q-27.098-44.813-26.655-44.425Q-26.212-44.037-26.212-43.265Q-26.212-43.128-26.352-43.097L-28.786-43.097Q-28.786-42.530-28.482-42.256Q-28.178-41.983-27.603-41.983Q-27.306-41.983-27.040-42.111Q-26.773-42.239-26.667-42.495Q-26.626-42.571-26.540-42.595L-26.352-42.595Q-26.212-42.564-26.212-42.437Q-26.212-42.403-26.219-42.383Q-26.301-42.171-26.465-42.017Q-26.629-41.863-26.841-41.773Q-27.053-41.682-27.280-41.641Q-27.508-41.600-27.750-41.600Q-28.280-41.600-28.743-41.773Q-29.207-41.945-29.497-42.313Q-29.788-42.680-29.788-43.217M-28.786-43.418L-26.930-43.418Q-26.930-43.887-27.173-44.174Q-27.415-44.461-27.877-44.461Q-28.335-44.461-28.561-44.174Q-28.786-43.887-28.786-43.418M-23.628-41.641L-25.553-41.641L-25.553-42.061L-25.084-42.061L-25.084-44.119Q-25.084-44.249-25.216-44.281Q-25.348-44.314-25.553-44.314L-25.553-44.734L-24.309-44.792L-24.309-44.071Q-24.209-44.287-24.068-44.445Q-23.926-44.604-23.738-44.698Q-23.550-44.792-23.321-44.792Q-23.112-44.792-22.917-44.722Q-22.723-44.652-22.591-44.509Q-22.459-44.365-22.459-44.153Q-22.459-44.016-22.524-43.905Q-22.589-43.794-22.706-43.729Q-22.822-43.664-22.952-43.664Q-23.157-43.664-23.299-43.803Q-23.440-43.941-23.440-44.153Q-23.440-44.321-23.355-44.440Q-23.775-44.440-23.996-44.010Q-24.216-43.579-24.216-43.111L-24.216-42.061L-23.628-42.061\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(316.513 -21.784)\">\u003Cpath d=\"M-54.577-41.641L-56.433-41.641L-56.433-42.061L-55.965-42.061L-55.965-44.119Q-55.965-44.249-56.096-44.281Q-56.228-44.314-56.433-44.314L-56.433-44.734L-55.138-44.792L-55.138-44.099Q-55.004-44.310-54.787-44.473Q-54.570-44.635-54.317-44.714Q-54.064-44.792-53.808-44.792Q-53.210-44.792-52.890-44.565Q-52.571-44.338-52.571-43.764L-52.571-42.061L-52.099-42.061L-52.099-41.641L-53.955-41.641L-53.955-42.061L-53.487-42.061L-53.487-43.733Q-53.487-43.958-53.509-44.099Q-53.531-44.239-53.627-44.339Q-53.722-44.440-53.921-44.440Q-54.365-44.440-54.707-44.151Q-55.049-43.863-55.049-43.425L-55.049-42.061L-54.577-42.061L-54.577-41.641M-51.562-43.217Q-51.562-43.610-51.403-43.916Q-51.244-44.222-50.976-44.420Q-50.708-44.618-50.368-44.715Q-50.028-44.813-49.652-44.813Q-48.872-44.813-48.430-44.425Q-47.987-44.037-47.987-43.265Q-47.987-43.128-48.127-43.097L-50.561-43.097Q-50.561-42.530-50.257-42.256Q-49.952-41.983-49.378-41.983Q-49.081-41.983-48.814-42.111Q-48.548-42.239-48.442-42.495Q-48.401-42.571-48.315-42.595L-48.127-42.595Q-47.987-42.564-47.987-42.437Q-47.987-42.403-47.994-42.383Q-48.076-42.171-48.240-42.017Q-48.404-41.863-48.616-41.773Q-48.828-41.682-49.055-41.641Q-49.283-41.600-49.525-41.600Q-50.055-41.600-50.518-41.773Q-50.981-41.945-51.272-42.313Q-51.562-42.680-51.562-43.217M-50.561-43.418L-48.705-43.418Q-48.705-43.887-48.948-44.174Q-49.190-44.461-49.652-44.461Q-50.110-44.461-50.335-44.174Q-50.561-43.887-50.561-43.418M-45.923-41.754L-47.034-44.328L-47.468-44.328L-47.468-44.748L-45.748-44.748L-45.748-44.328L-46.090-44.328L-45.355-42.636L-44.696-44.153L-44.774-44.328L-45.208-44.328L-45.208-44.748L-43.639-44.748L-43.639-44.328L-43.985-44.328L-43.171-42.454L-42.371-44.300Q-42.395-44.328-42.758-44.328L-42.758-44.748L-41.421-44.748L-41.421-44.328Q-41.848-44.328-41.862-44.300L-42.970-41.754Q-42.997-41.682-43.064-41.641Q-43.130-41.600-43.199-41.600L-43.431-41.600Q-43.496-41.600-43.564-41.643Q-43.633-41.685-43.660-41.754L-44.446-43.565L-45.229-41.754Q-45.256-41.685-45.325-41.643Q-45.393-41.600-45.461-41.600L-45.690-41.600Q-45.759-41.600-45.827-41.643Q-45.895-41.685-45.923-41.754M-38.201-41.641L-40.782-41.641L-40.782-42.061L-40.034-42.061L-40.034-46.023L-40.782-46.023L-40.782-46.443L-37.675-46.443Q-37.169-46.443-36.689-46.308Q-36.209-46.173-35.884-45.855Q-35.559-45.537-35.559-45.035Q-35.559-44.536-35.888-44.225Q-36.216-43.914-36.703-43.786Q-37.190-43.658-37.675-43.658L-38.950-43.658L-38.950-42.061L-38.201-42.061L-38.201-41.641M-38.998-46.023L-38.998-44.040L-37.962-44.040Q-37.617-44.040-37.381-44.085Q-37.145-44.129-36.954-44.280Q-36.800-44.399-36.764-44.579Q-36.728-44.758-36.728-45.035Q-36.728-45.308-36.766-45.490Q-36.804-45.671-36.954-45.790Q-37.135-45.941-37.367-45.982Q-37.600-46.023-37.962-46.023L-38.998-46.023M-34.510-44.040Q-34.510-44.864-34.067-45.430Q-33.625-45.995-32.910-46.262Q-32.196-46.529-31.389-46.529Q-30.969-46.529-30.578-46.407Q-30.186-46.286-29.872-46.050L-29.346-46.498Q-29.332-46.505-29.323-46.508Q-29.315-46.512-29.299-46.518Q-29.284-46.525-29.274-46.529L-29.164-46.529Q-29.072-46.505-29.052-46.416L-29.052-44.686Q-29.072-44.594-29.164-44.574L-29.465-44.574Q-29.554-44.594-29.578-44.686Q-29.612-44.977-29.754-45.242Q-29.896-45.507-30.120-45.702Q-30.344-45.896-30.619-46.002Q-30.894-46.108-31.201-46.108Q-31.899-46.108-32.381-45.886Q-32.863-45.664-33.102-45.203Q-33.341-44.741-33.341-44.040Q-33.341-43.336-33.097-42.875Q-32.852-42.413-32.377-42.195Q-31.902-41.976-31.188-41.976Q-30.784-41.976-30.397-42.133Q-30.009-42.290-29.764-42.595Q-29.520-42.899-29.520-43.312Q-29.499-43.405-29.407-43.425L-29.164-43.425Q-29.052-43.394-29.052-43.285Q-29.052-42.854-29.262-42.530Q-29.472-42.205-29.824-41.985Q-30.176-41.764-30.585-41.660Q-30.993-41.556-31.389-41.556Q-32.196-41.556-32.912-41.822Q-33.628-42.089-34.069-42.653Q-34.510-43.217-34.510-44.040\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(362.038 -21.963)\">\u003Cpath d=\"M-56.539-41.709L-56.539-42.608Q-56.518-42.697-56.426-42.718L-56.180-42.718Q-56.105-42.697-56.077-42.636Q-55.869-41.949-55.076-41.949Q-54.208-41.949-54.208-42.403Q-54.208-42.598-54.404-42.704Q-54.601-42.810-54.837-42.844L-55.418-42.936Q-55.681-42.974-55.942-43.087Q-56.204-43.200-56.371-43.389Q-56.539-43.579-56.539-43.859Q-56.539-44.403-56.110-44.608Q-55.681-44.813-55.076-44.813Q-54.597-44.813-54.327-44.700L-54.095-44.806L-54.068-44.813L-53.955-44.813Q-53.863-44.792-53.842-44.700L-53.842-43.999Q-53.863-43.914-53.955-43.887L-54.201-43.887Q-54.290-43.911-54.310-43.999Q-54.310-44.498-55.096-44.498Q-55.951-44.498-55.951-44.119Q-55.951-43.852-55.363-43.770L-54.775-43.678Q-54.485-43.634-54.220-43.504Q-53.955-43.374-53.787-43.155Q-53.620-42.936-53.620-42.649Q-53.620-42.253-53.828-42.019Q-54.037-41.785-54.367-41.692Q-54.697-41.600-55.076-41.600Q-55.599-41.600-55.951-41.795L-56.259-41.620Q-56.289-41.603-56.313-41.600L-56.426-41.600Q-56.518-41.620-56.539-41.709M-52.468-42.431L-52.468-44.328L-53.087-44.328L-53.087-44.680Q-52.827-44.680-52.620-44.809Q-52.413-44.939-52.285-45.141Q-52.157-45.343-52.089-45.590Q-52.020-45.838-52.020-46.084L-51.552-46.084L-51.552-44.748L-50.424-44.748L-50.424-44.328L-51.552-44.328L-51.552-42.461Q-51.552-41.983-51.152-41.983Q-50.968-41.983-50.858-42.128Q-50.749-42.273-50.749-42.461L-50.749-42.851L-50.277-42.851L-50.277-42.431Q-50.277-42.184-50.422-41.996Q-50.568-41.808-50.800-41.704Q-51.033-41.600-51.272-41.600Q-51.771-41.600-52.119-41.786Q-52.468-41.973-52.468-42.431M-49.467-42.475Q-49.467-42.899-49.018-43.135Q-48.568-43.370-47.999-43.447Q-47.430-43.524-46.955-43.524L-46.955-43.733Q-46.955-43.965-47.056-44.129Q-47.157-44.293-47.334-44.377Q-47.512-44.461-47.738-44.461Q-48.076-44.461-48.284-44.427Q-48.172-44.293-48.172-44.099Q-48.172-43.893-48.315-43.746Q-48.459-43.599-48.671-43.599Q-48.886-43.599-49.030-43.746Q-49.173-43.893-49.173-44.099Q-49.173-44.420-48.939-44.577Q-48.705-44.734-48.411-44.774Q-48.117-44.813-47.738-44.813Q-47.358-44.813-46.970-44.717Q-46.582-44.621-46.311-44.386Q-46.039-44.150-46.039-43.764L-46.039-42.161Q-46.008-42.061-45.519-42.061Q-45.400-42.041-45.379-41.921L-45.379-41.781Q-45.400-41.662-45.519-41.641L-46.015-41.641Q-46.815-41.641-46.815-42.082Q-46.996-41.836-47.317-41.718Q-47.638-41.600-47.997-41.600Q-48.558-41.600-49.013-41.797Q-49.467-41.993-49.467-42.475M-48.558-42.475Q-48.558-42.225-48.341-42.087Q-48.124-41.949-47.857-41.949Q-47.526-41.949-47.240-42.094Q-46.955-42.239-46.955-42.543L-46.955-43.224Q-47.228-43.224-47.609-43.157Q-47.991-43.090-48.274-42.921Q-48.558-42.752-48.558-42.475M-44.532-42.431L-44.532-44.328L-45.150-44.328L-45.150-44.680Q-44.890-44.680-44.684-44.809Q-44.477-44.939-44.349-45.141Q-44.221-45.343-44.152-45.590Q-44.084-45.838-44.084-46.084L-43.616-46.084L-43.616-44.748L-42.488-44.748L-42.488-44.328L-43.616-44.328L-43.616-42.461Q-43.616-41.983-43.216-41.983Q-43.031-41.983-42.922-42.128Q-42.812-42.273-42.812-42.461L-42.812-42.851L-42.341-42.851L-42.341-42.431Q-42.341-42.184-42.486-41.996Q-42.631-41.808-42.864-41.704Q-43.096-41.600-43.335-41.600Q-43.834-41.600-44.183-41.786Q-44.532-41.973-44.532-42.431M-41.531-43.217Q-41.531-43.610-41.372-43.916Q-41.213-44.222-40.944-44.420Q-40.676-44.618-40.336-44.715Q-39.996-44.813-39.620-44.813Q-38.841-44.813-38.398-44.425Q-37.955-44.037-37.955-43.265Q-37.955-43.128-38.096-43.097L-40.529-43.097Q-40.529-42.530-40.225-42.256Q-39.921-41.983-39.346-41.983Q-39.049-41.983-38.783-42.111Q-38.516-42.239-38.410-42.495Q-38.369-42.571-38.284-42.595L-38.096-42.595Q-37.955-42.564-37.955-42.437Q-37.955-42.403-37.962-42.383Q-38.044-42.171-38.208-42.017Q-38.372-41.863-38.584-41.773Q-38.796-41.682-39.023-41.641Q-39.251-41.600-39.493-41.600Q-40.023-41.600-40.486-41.773Q-40.950-41.945-41.240-42.313Q-41.531-42.680-41.531-43.217M-40.529-43.418L-38.673-43.418Q-38.673-43.887-38.916-44.174Q-39.159-44.461-39.620-44.461Q-40.078-44.461-40.304-44.174Q-40.529-43.887-40.529-43.418\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-2.157 2.578)\">\u003Cpath d=\"M-54.387-42.953L-56.629-42.953L-56.629-43.250L-54.058-46.907Q-54.019-46.961-53.957-46.961L-53.812-46.961Q-53.762-46.961-53.730-46.930Q-53.699-46.899-53.699-46.848L-53.699-43.250L-52.867-43.250L-52.867-42.953L-53.699-42.953L-53.699-42.200Q-53.699-41.938-52.875-41.938L-52.875-41.641L-55.211-41.641L-55.211-41.938Q-54.387-41.938-54.387-42.200L-54.387-42.953M-54.332-46.055L-56.301-43.250L-54.332-43.250\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(27.718 3.056)\">\u003Cpath d=\"M-54.245-41.529Q-54.933-41.529-55.424-42.034Q-55.915-42.539-56.152-43.289Q-56.388-44.038-56.388-44.703Q-56.388-45.362-56.152-46.104Q-55.915-46.846-55.424-47.354Q-54.933-47.862-54.245-47.862Q-53.718-47.862-53.305-47.559Q-52.892-47.256-52.631-46.773Q-52.370-46.289-52.238-45.747Q-52.106-45.205-52.106-44.703Q-52.106-44.195-52.238-43.653Q-52.370-43.111-52.634-42.622Q-52.897-42.134-53.307-41.831Q-53.718-41.529-54.245-41.529M-54.245-42.183Q-53.859-42.183-53.588-42.459Q-53.317-42.735-53.154-43.150Q-52.990-43.565-52.914-44.012Q-52.839-44.458-52.839-44.820Q-52.839-45.142-52.917-45.559Q-52.995-45.977-53.159-46.348Q-53.322-46.719-53.598-46.966Q-53.874-47.212-54.245-47.212Q-54.616-47.212-54.885-46.973Q-55.153-46.734-55.322-46.360Q-55.490-45.987-55.573-45.564Q-55.656-45.142-55.656-44.820Q-55.656-44.341-55.517-43.721Q-55.378-43.101-55.055-42.642Q-54.733-42.183-54.245-42.183M-49.587-41.641L-51.047-41.641Q-51.301-41.670-51.330-41.919L-51.330-42.012Q-51.301-42.261-51.047-42.290L-50.519-42.290L-49.318-43.863L-50.446-45.303L-50.988-45.303Q-51.237-45.332-51.266-45.581L-51.266-45.669Q-51.252-45.791-51.183-45.865Q-51.115-45.938-50.988-45.953L-49.528-45.953Q-49.294-45.923-49.250-45.669L-49.250-45.581Q-49.294-45.332-49.528-45.303L-49.719-45.303L-49.030-44.370L-48.346-45.303L-48.556-45.303Q-48.796-45.332-48.840-45.581L-48.840-45.669Q-48.820-45.787-48.744-45.862Q-48.669-45.938-48.556-45.953L-47.096-45.953Q-46.979-45.938-46.906-45.865Q-46.833-45.791-46.818-45.669L-46.818-45.581Q-46.847-45.332-47.096-45.303L-47.629-45.303L-48.727-43.863L-47.497-42.290L-46.960-42.290Q-46.838-42.276-46.764-42.207Q-46.691-42.139-46.677-42.012L-46.677-41.919Q-46.691-41.802-46.764-41.729Q-46.838-41.656-46.960-41.641L-48.420-41.641Q-48.649-41.670-48.698-41.919L-48.698-42.012Q-48.654-42.261-48.420-42.290L-48.200-42.290L-49.030-43.453L-49.816-42.290L-49.587-42.290Q-49.352-42.261-49.308-42.012L-49.308-41.919Q-49.352-41.670-49.587-41.641M-45.280-41.919L-45.280-42.012Q-45.251-42.261-44.997-42.290L-43.967-42.290L-43.967-46.412Q-44.460-45.992-45.021-45.992Q-45.138-45.992-45.231-46.067Q-45.324-46.143-45.339-46.270L-45.339-46.363Q-45.304-46.612-45.060-46.641Q-44.645-46.641-44.328-46.951Q-44.011-47.261-43.849-47.681Q-43.771-47.832-43.591-47.862L-43.517-47.862Q-43.400-47.847-43.327-47.774Q-43.254-47.701-43.239-47.583L-43.239-42.290L-42.209-42.290Q-41.960-42.261-41.930-42.012L-41.930-41.919Q-41.960-41.670-42.209-41.641L-44.997-41.641Q-45.251-41.670-45.280-41.919M-36.760-43.531L-39.831-43.531Q-39.723-42.959-39.255-42.596Q-38.786-42.232-38.190-42.232Q-37.878-42.232-37.597-42.376Q-37.316-42.520-37.209-42.779Q-37.131-43.008-36.930-43.033L-36.760-43.033Q-36.633-43.018-36.557-42.933Q-36.481-42.847-36.481-42.730Q-36.481-42.701-36.484-42.683Q-36.486-42.666-36.491-42.642Q-36.681-42.115-37.177-41.849Q-37.673-41.582-38.268-41.582Q-38.874-41.582-39.413-41.878Q-39.953-42.173-40.270-42.681Q-40.588-43.189-40.588-43.809Q-40.588-44.258-40.422-44.659Q-40.256-45.059-39.960-45.374Q-39.665-45.689-39.267-45.865Q-38.869-46.040-38.420-46.040Q-37.795-46.040-37.355-45.755Q-36.916-45.469-36.699-44.974Q-36.481-44.478-36.481-43.853Q-36.481-43.721-36.559-43.633Q-36.638-43.545-36.760-43.531M-39.821-44.170L-37.228-44.170Q-37.267-44.522-37.409-44.798Q-37.551-45.074-37.804-45.232Q-38.058-45.391-38.420-45.391Q-38.752-45.391-39.052-45.225Q-39.352-45.059-39.555-44.776Q-39.758-44.493-39.821-44.170\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(66.129 1.889)\">\u003Cpath d=\"M-56.461-42.754Q-56.461-43.200-56.047-43.457Q-55.633-43.715-55.092-43.815Q-54.551-43.914-54.043-43.922Q-54.043-44.137-54.178-44.289Q-54.312-44.442-54.519-44.518Q-54.726-44.594-54.937-44.594Q-55.281-44.594-55.441-44.571L-55.441-44.512Q-55.441-44.344-55.560-44.229Q-55.679-44.114-55.844-44.114Q-56.019-44.114-56.135-44.237Q-56.250-44.360-56.250-44.528Q-56.250-44.934-55.869-45.043Q-55.488-45.153-54.929-45.153Q-54.660-45.153-54.392-45.075Q-54.125-44.996-53.900-44.846Q-53.676-44.696-53.539-44.475Q-53.402-44.254-53.402-43.977L-53.402-42.258Q-53.402-42.200-52.875-42.200Q-52.679-42.180-52.629-41.969L-52.629-41.879Q-52.679-41.664-52.875-41.641L-53.019-41.641Q-53.363-41.641-53.592-41.688Q-53.820-41.735-53.965-41.922Q-54.426-41.602-55.133-41.602Q-55.469-41.602-55.773-41.743Q-56.078-41.883-56.269-42.145Q-56.461-42.407-56.461-42.754M-55.820-42.746Q-55.820-42.473-55.578-42.317Q-55.336-42.161-55.051-42.161Q-54.832-42.161-54.599-42.219Q-54.367-42.278-54.205-42.416Q-54.043-42.555-54.043-42.778L-54.043-43.368Q-54.324-43.368-54.740-43.311Q-55.156-43.254-55.488-43.116Q-55.820-42.977-55.820-42.746M-50.758-41.602Q-51.222-41.602-51.588-41.852Q-51.953-42.102-52.158-42.506Q-52.363-42.911-52.363-43.368Q-52.363-43.711-52.238-44.032Q-52.113-44.352-51.881-44.602Q-51.648-44.852-51.344-44.991Q-51.039-45.129-50.683-45.129Q-50.172-45.129-49.765-44.809L-49.765-45.969L-50.187-45.969Q-50.398-45.993-50.437-46.207L-50.437-46.297Q-50.398-46.504-50.187-46.528L-49.375-46.528Q-49.176-46.504-49.125-46.297L-49.125-42.200L-48.699-42.200Q-48.492-42.176-48.453-41.969L-48.453-41.879Q-48.492-41.664-48.699-41.641L-49.515-41.641Q-49.715-41.664-49.765-41.879L-49.765-42.008Q-49.961-41.817-50.222-41.709Q-50.484-41.602-50.758-41.602M-50.719-42.161Q-50.359-42.161-50.107-42.430Q-49.855-42.700-49.765-43.075L-49.765-43.907Q-49.824-44.094-49.951-44.245Q-50.078-44.395-50.256-44.483Q-50.433-44.571-50.629-44.571Q-50.937-44.571-51.187-44.401Q-51.437-44.231-51.582-43.946Q-51.726-43.661-51.726-43.360Q-51.726-42.911-51.441-42.536Q-51.156-42.161-50.719-42.161M-46.512-41.602Q-46.976-41.602-47.342-41.852Q-47.707-42.102-47.912-42.506Q-48.117-42.911-48.117-43.368Q-48.117-43.711-47.992-44.032Q-47.867-44.352-47.635-44.602Q-47.402-44.852-47.097-44.991Q-46.793-45.129-46.437-45.129Q-45.926-45.129-45.519-44.809L-45.519-45.969L-45.941-45.969Q-46.152-45.993-46.191-46.207L-46.191-46.297Q-46.152-46.504-45.941-46.528L-45.129-46.528Q-44.929-46.504-44.879-46.297L-44.879-42.200L-44.453-42.200Q-44.246-42.176-44.207-41.969L-44.207-41.879Q-44.246-41.664-44.453-41.641L-45.269-41.641Q-45.469-41.664-45.519-41.879L-45.519-42.008Q-45.715-41.817-45.976-41.709Q-46.238-41.602-46.512-41.602M-46.472-42.161Q-46.113-42.161-45.861-42.430Q-45.609-42.700-45.519-43.075L-45.519-43.907Q-45.578-44.094-45.705-44.245Q-45.832-44.395-46.010-44.483Q-46.187-44.571-46.383-44.571Q-46.691-44.571-46.941-44.401Q-47.191-44.231-47.336-43.946Q-47.480-43.661-47.480-43.360Q-47.480-42.911-47.195-42.536Q-46.910-42.161-46.472-42.161M-41.816-40.098L-41.816-40.184Q-41.765-40.403-41.570-40.426L-41.105-40.426L-41.105-42.024Q-41.558-41.602-42.168-41.602Q-42.523-41.602-42.828-41.745Q-43.133-41.887-43.365-42.137Q-43.597-42.387-43.722-42.709Q-43.847-43.032-43.847-43.368Q-43.847-43.852-43.609-44.252Q-43.371-44.653-42.965-44.891Q-42.558-45.129-42.082-45.129Q-41.519-45.129-41.105-44.739L-41.105-44.899Q-41.054-45.110-40.855-45.129L-40.715-45.129Q-40.515-45.106-40.465-44.899L-40.465-40.426L-40-40.426Q-39.804-40.403-39.754-40.184L-39.754-40.098Q-39.804-39.887-40-39.864L-41.570-39.864Q-41.765-39.887-41.816-40.098M-42.121-42.161Q-41.750-42.161-41.474-42.414Q-41.199-42.668-41.105-43.032L-41.105-43.649Q-41.148-43.887-41.271-44.100Q-41.394-44.313-41.592-44.442Q-41.789-44.571-42.031-44.571Q-42.347-44.571-42.619-44.405Q-42.890-44.239-43.049-43.957Q-43.207-43.676-43.207-43.360Q-43.207-42.895-42.892-42.528Q-42.578-42.161-42.121-42.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(66.129 1.889)\">\u003Cpath d=\"M-34.937-41.282Q-34.937-41.336-34.914-41.403L-32.648-47.008Q-32.554-47.192-32.359-47.192Q-32.234-47.192-32.146-47.104Q-32.058-47.016-32.058-46.887Q-32.058-46.828-32.082-46.770L-34.344-41.161Q-34.445-40.977-34.625-40.977Q-34.750-40.977-34.844-41.067Q-34.937-41.157-34.937-41.282M-32.359-40.977Q-32.711-40.977-32.892-41.317Q-33.074-41.657-33.074-42.039Q-33.074-42.426-32.894-42.766Q-32.715-43.106-32.359-43.106Q-32.121-43.106-31.963-42.936Q-31.804-42.766-31.730-42.522Q-31.656-42.278-31.656-42.039Q-31.656-41.805-31.730-41.561Q-31.804-41.317-31.963-41.147Q-32.121-40.977-32.359-40.977M-32.359-41.536Q-32.277-41.567-32.230-41.735Q-32.183-41.903-32.183-42.039Q-32.183-42.176-32.230-42.346Q-32.277-42.516-32.359-42.543Q-32.445-42.516-32.496-42.348Q-32.547-42.180-32.547-42.039Q-32.547-41.911-32.496-41.739Q-32.445-41.567-32.359-41.536M-34.625-45.055Q-34.867-45.055-35.027-45.225Q-35.187-45.395-35.262-45.641Q-35.336-45.887-35.336-46.129Q-35.336-46.512-35.156-46.852Q-34.976-47.192-34.625-47.192Q-34.387-47.192-34.228-47.022Q-34.070-46.852-33.996-46.608Q-33.922-46.364-33.922-46.129Q-33.922-45.887-33.996-45.641Q-34.070-45.395-34.228-45.225Q-34.387-45.055-34.625-45.055M-34.625-45.618Q-34.535-45.661-34.492-45.817Q-34.449-45.973-34.449-46.129Q-34.449-46.258-34.496-46.434Q-34.543-46.610-34.633-46.633Q-34.648-46.633-34.678-46.598Q-34.707-46.563-34.715-46.543Q-34.808-46.356-34.808-46.129Q-34.808-45.993-34.760-45.821Q-34.711-45.649-34.625-45.618M-31.148-41.879L-31.148-41.969Q-31.090-42.176-30.898-42.200L-30.187-42.200L-30.187-44.528L-30.898-44.528Q-31.094-44.551-31.148-44.770L-31.148-44.856Q-31.090-45.067-30.898-45.090L-29.797-45.090Q-29.597-45.071-29.547-44.856L-29.547-44.528Q-29.285-44.813-28.929-44.971Q-28.574-45.129-28.187-45.129Q-27.894-45.129-27.660-44.995Q-27.426-44.860-27.426-44.594Q-27.426-44.426-27.535-44.309Q-27.644-44.192-27.812-44.192Q-27.965-44.192-28.080-44.303Q-28.195-44.414-28.195-44.571Q-28.570-44.571-28.885-44.370Q-29.199-44.168-29.373-43.834Q-29.547-43.500-29.547-43.121L-29.547-42.200L-28.601-42.200Q-28.394-42.176-28.355-41.969L-28.355-41.879Q-28.394-41.664-28.601-41.641L-30.898-41.641Q-31.090-41.664-31.148-41.879M-25.262-41.602Q-25.726-41.602-26.092-41.852Q-26.457-42.102-26.662-42.506Q-26.867-42.911-26.867-43.368Q-26.867-43.711-26.742-44.032Q-26.617-44.352-26.385-44.602Q-26.152-44.852-25.847-44.991Q-25.543-45.129-25.187-45.129Q-24.676-45.129-24.269-44.809L-24.269-45.969L-24.691-45.969Q-24.902-45.993-24.941-46.207L-24.941-46.297Q-24.902-46.504-24.691-46.528L-23.879-46.528Q-23.679-46.504-23.629-46.297L-23.629-42.200L-23.203-42.200Q-22.996-42.176-22.957-41.969L-22.957-41.879Q-22.996-41.664-23.203-41.641L-24.019-41.641Q-24.219-41.664-24.269-41.879L-24.269-42.008Q-24.465-41.817-24.726-41.709Q-24.988-41.602-25.262-41.602M-25.222-42.161Q-24.863-42.161-24.611-42.430Q-24.359-42.700-24.269-43.075L-24.269-43.907Q-24.328-44.094-24.455-44.245Q-24.582-44.395-24.760-44.483Q-24.937-44.571-25.133-44.571Q-25.441-44.571-25.691-44.401Q-25.941-44.231-26.086-43.946Q-26.230-43.661-26.230-43.360Q-26.230-42.911-25.945-42.536Q-25.660-42.161-25.222-42.161M-22.262-41.879L-22.262-41.969Q-22.211-42.176-22.015-42.200L-20.976-42.200L-20.976-44.528L-21.949-44.528Q-22.148-44.551-22.199-44.770L-22.199-44.856Q-22.148-45.067-21.949-45.090L-20.582-45.090Q-20.387-45.071-20.336-44.856L-20.336-42.200L-19.422-42.200Q-19.226-42.176-19.176-41.969L-19.176-41.879Q-19.226-41.664-19.422-41.641L-22.015-41.641Q-22.211-41.664-22.262-41.879M-21.230-46.067L-21.230-46.121Q-21.230-46.293-21.094-46.414Q-20.957-46.536-20.781-46.536Q-20.609-46.536-20.472-46.414Q-20.336-46.293-20.336-46.121L-20.336-46.067Q-20.336-45.891-20.472-45.770Q-20.609-45.649-20.781-45.649Q-20.957-45.649-21.094-45.770Q-21.230-45.891-21.230-46.067M-16.914-40.528Q-17.027-40.528-17.117-40.618Q-17.207-40.707-17.207-40.817Q-17.207-40.993-17.015-41.067Q-16.797-41.118-16.625-41.276Q-16.453-41.434-16.387-41.657Q-16.410-41.657-16.441-41.641L-16.504-41.641Q-16.734-41.641-16.900-41.803Q-17.066-41.965-17.066-42.200Q-17.066-42.434-16.902-42.594Q-16.738-42.754-16.504-42.754Q-16.293-42.754-16.129-42.633Q-15.965-42.512-15.875-42.319Q-15.785-42.125-15.785-41.914Q-15.785-41.438-16.084-41.049Q-16.383-40.661-16.847-40.536Q-16.871-40.528-16.914-40.528M-13.707-41.282Q-13.707-41.336-13.683-41.403L-11.418-47.008Q-11.324-47.192-11.129-47.192Q-11.004-47.192-10.916-47.104Q-10.828-47.016-10.828-46.887Q-10.828-46.828-10.851-46.770L-13.113-41.161Q-13.215-40.977-13.394-40.977Q-13.519-40.977-13.613-41.067Q-13.707-41.157-13.707-41.282M-11.129-40.977Q-11.480-40.977-11.662-41.317Q-11.844-41.657-11.844-42.039Q-11.844-42.426-11.664-42.766Q-11.484-43.106-11.129-43.106Q-10.890-43.106-10.732-42.936Q-10.574-42.766-10.500-42.522Q-10.426-42.278-10.426-42.039Q-10.426-41.805-10.500-41.561Q-10.574-41.317-10.732-41.147Q-10.890-40.977-11.129-40.977M-11.129-41.536Q-11.047-41.567-11-41.735Q-10.953-41.903-10.953-42.039Q-10.953-42.176-11-42.346Q-11.047-42.516-11.129-42.543Q-11.215-42.516-11.265-42.348Q-11.316-42.180-11.316-42.039Q-11.316-41.911-11.265-41.739Q-11.215-41.567-11.129-41.536M-13.394-45.055Q-13.637-45.055-13.797-45.225Q-13.957-45.395-14.031-45.641Q-14.105-45.887-14.105-46.129Q-14.105-46.512-13.926-46.852Q-13.746-47.192-13.394-47.192Q-13.156-47.192-12.998-47.022Q-12.840-46.852-12.765-46.608Q-12.691-46.364-12.691-46.129Q-12.691-45.887-12.765-45.641Q-12.840-45.395-12.998-45.225Q-13.156-45.055-13.394-45.055M-13.394-45.618Q-13.304-45.661-13.262-45.817Q-13.219-45.973-13.219-46.129Q-13.219-46.258-13.265-46.434Q-13.312-46.610-13.402-46.633Q-13.418-46.633-13.447-46.598Q-13.476-46.563-13.484-46.543Q-13.578-46.356-13.578-46.129Q-13.578-45.993-13.529-45.821Q-13.480-45.649-13.394-45.618M-9.918-41.879L-9.918-41.969Q-9.859-42.176-9.668-42.200L-8.957-42.200L-8.957-44.528L-9.668-44.528Q-9.863-44.551-9.918-44.770L-9.918-44.856Q-9.859-45.067-9.668-45.090L-8.566-45.090Q-8.367-45.071-8.316-44.856L-8.316-44.528Q-8.054-44.813-7.699-44.971Q-7.344-45.129-6.957-45.129Q-6.664-45.129-6.429-44.995Q-6.195-44.860-6.195-44.594Q-6.195-44.426-6.304-44.309Q-6.414-44.192-6.582-44.192Q-6.734-44.192-6.849-44.303Q-6.965-44.414-6.965-44.571Q-7.340-44.571-7.654-44.370Q-7.969-44.168-8.142-43.834Q-8.316-43.500-8.316-43.121L-8.316-42.200L-7.371-42.200Q-7.164-42.176-7.125-41.969L-7.125-41.879Q-7.164-41.664-7.371-41.641L-9.668-41.641Q-9.859-41.664-9.918-41.879M-5.488-42.754Q-5.488-43.200-5.074-43.457Q-4.660-43.715-4.119-43.815Q-3.578-43.914-3.070-43.922Q-3.070-44.137-3.205-44.289Q-3.340-44.442-3.547-44.518Q-3.754-44.594-3.965-44.594Q-4.308-44.594-4.469-44.571L-4.469-44.512Q-4.469-44.344-4.588-44.229Q-4.707-44.114-4.871-44.114Q-5.047-44.114-5.162-44.237Q-5.277-44.360-5.277-44.528Q-5.277-44.934-4.896-45.043Q-4.515-45.153-3.957-45.153Q-3.687-45.153-3.420-45.075Q-3.152-44.996-2.928-44.846Q-2.703-44.696-2.566-44.475Q-2.429-44.254-2.429-43.977L-2.429-42.258Q-2.429-42.200-1.902-42.200Q-1.707-42.180-1.656-41.969L-1.656-41.879Q-1.707-41.664-1.902-41.641L-2.047-41.641Q-2.390-41.641-2.619-41.688Q-2.847-41.735-2.992-41.922Q-3.453-41.602-4.160-41.602Q-4.496-41.602-4.801-41.743Q-5.105-41.883-5.297-42.145Q-5.488-42.407-5.488-42.754M-4.847-42.746Q-4.847-42.473-4.605-42.317Q-4.363-42.161-4.078-42.161Q-3.859-42.161-3.627-42.219Q-3.394-42.278-3.232-42.416Q-3.070-42.555-3.070-42.778L-3.070-43.368Q-3.351-43.368-3.767-43.311Q-4.183-43.254-4.515-43.116Q-4.847-42.977-4.847-42.746M-1.390-41.879L-1.390-41.969Q-1.351-42.176-1.144-42.200L-0.738-42.200L0.192-43.418L-0.679-44.528L-1.097-44.528Q-1.293-44.547-1.344-44.770L-1.344-44.856Q-1.293-45.067-1.097-45.090L0.063-45.090Q0.262-45.067 0.313-44.856L0.313-44.770Q0.262-44.551 0.063-44.528L-0.047-44.528L0.449-43.871L0.926-44.528L0.809-44.528Q0.610-44.551 0.559-44.770L0.559-44.856Q0.610-45.067 0.809-45.090L1.969-45.090Q2.164-45.071 2.215-44.856L2.215-44.770Q2.164-44.551 1.969-44.528L1.559-44.528L0.711-43.418L1.672-42.200L2.078-42.200Q2.278-42.176 2.328-41.969L2.328-41.879Q2.289-41.664 2.078-41.641L0.926-41.641Q0.719-41.664 0.680-41.879L0.680-41.969Q0.719-42.176 0.926-42.200L1.055-42.200L0.449-43.055L-0.137-42.200L0.008-42.200Q0.215-42.176 0.254-41.969L0.254-41.879Q0.215-41.664 0.008-41.641L-1.144-41.641Q-1.340-41.661-1.390-41.879\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 2.583)\">\u003Cpath d=\"M-55.683-41.375Q-55.683-41.438-55.652-41.481L-51.906-46.739Q-52.363-46.504-52.929-46.504Q-53.582-46.504-54.187-46.825Q-54.043-46.477-54.043-46.032Q-54.043-45.672-54.164-45.301Q-54.285-44.930-54.535-44.674Q-54.785-44.418-55.148-44.418Q-55.535-44.418-55.818-44.662Q-56.101-44.907-56.248-45.280Q-56.394-45.653-56.394-46.032Q-56.394-46.411-56.248-46.782Q-56.101-47.153-55.818-47.397Q-55.535-47.641-55.148-47.641Q-54.832-47.641-54.562-47.403Q-54.226-47.098-53.797-46.926Q-53.367-46.754-52.929-46.754Q-52.437-46.754-52.019-46.967Q-51.601-47.180-51.301-47.578Q-51.258-47.641-51.164-47.641Q-51.090-47.641-51.035-47.586Q-50.980-47.532-50.980-47.457Q-50.980-47.395-51.012-47.352L-55.355-41.258Q-55.402-41.192-55.500-41.192Q-55.582-41.192-55.633-41.243Q-55.683-41.293-55.683-41.375M-55.148-44.672Q-54.875-44.672-54.687-44.897Q-54.500-45.121-54.412-45.444Q-54.324-45.766-54.324-46.032Q-54.324-46.289-54.412-46.612Q-54.500-46.934-54.687-47.159Q-54.875-47.383-55.148-47.383Q-55.535-47.383-55.678-46.955Q-55.820-46.528-55.820-46.032Q-55.820-45.524-55.679-45.098Q-55.539-44.672-55.148-44.672M-51.371-41.192Q-51.758-41.192-52.041-41.438Q-52.324-41.684-52.472-42.057Q-52.621-42.430-52.621-42.809Q-52.621-43.082-52.535-43.370Q-52.449-43.657-52.295-43.891Q-52.140-44.125-51.904-44.272Q-51.668-44.418-51.371-44.418Q-51.090-44.418-50.883-44.266Q-50.676-44.114-50.537-43.871Q-50.398-43.629-50.332-43.348Q-50.265-43.067-50.265-42.809Q-50.265-42.450-50.387-42.077Q-50.508-41.703-50.758-41.448Q-51.008-41.192-51.371-41.192M-51.371-41.450Q-51.097-41.450-50.910-41.674Q-50.722-41.899-50.635-42.221Q-50.547-42.543-50.547-42.809Q-50.547-43.067-50.635-43.389Q-50.722-43.711-50.910-43.936Q-51.097-44.161-51.371-44.161Q-51.762-44.161-51.902-43.731Q-52.043-43.301-52.043-42.809Q-52.043-42.301-51.906-41.875Q-51.769-41.450-51.371-41.450M-47.543-41.641L-49.523-41.641L-49.523-41.938Q-49.254-41.938-49.086-41.983Q-48.918-42.028-48.918-42.200L-48.918-44.336Q-48.918-44.551-48.980-44.647Q-49.043-44.743-49.160-44.764Q-49.277-44.786-49.523-44.786L-49.523-45.082L-48.355-45.168L-48.355-44.383Q-48.277-44.594-48.125-44.780Q-47.972-44.965-47.773-45.067Q-47.574-45.168-47.347-45.168Q-47.101-45.168-46.910-45.024Q-46.719-44.879-46.719-44.649Q-46.719-44.493-46.824-44.383Q-46.929-44.274-47.086-44.274Q-47.242-44.274-47.351-44.383Q-47.461-44.493-47.461-44.649Q-47.461-44.809-47.355-44.914Q-47.679-44.914-47.894-44.686Q-48.109-44.457-48.205-44.118Q-48.301-43.778-48.301-43.473L-48.301-42.200Q-48.301-42.032-48.074-41.985Q-47.847-41.938-47.543-41.938L-47.543-41.641M-46.140-42.473Q-46.140-42.957-45.738-43.252Q-45.336-43.547-44.785-43.666Q-44.234-43.786-43.742-43.786L-43.742-44.075Q-43.742-44.301-43.857-44.508Q-43.972-44.715-44.170-44.834Q-44.367-44.953-44.597-44.953Q-45.023-44.953-45.308-44.848Q-45.238-44.821-45.191-44.766Q-45.144-44.711-45.119-44.641Q-45.094-44.571-45.094-44.496Q-45.094-44.391-45.144-44.299Q-45.195-44.207-45.287-44.157Q-45.379-44.106-45.484-44.106Q-45.590-44.106-45.681-44.157Q-45.773-44.207-45.824-44.299Q-45.875-44.391-45.875-44.496Q-45.875-44.914-45.486-45.061Q-45.097-45.207-44.597-45.207Q-44.265-45.207-43.912-45.077Q-43.558-44.946-43.330-44.692Q-43.101-44.438-43.101-44.090L-43.101-42.289Q-43.101-42.157-43.029-42.047Q-42.957-41.938-42.828-41.938Q-42.703-41.938-42.635-42.043Q-42.566-42.149-42.566-42.289L-42.566-42.801L-42.285-42.801L-42.285-42.289Q-42.285-42.086-42.402-41.928Q-42.519-41.770-42.701-41.686Q-42.883-41.602-43.086-41.602Q-43.316-41.602-43.469-41.774Q-43.621-41.946-43.652-42.176Q-43.812-41.895-44.121-41.729Q-44.429-41.563-44.781-41.563Q-45.293-41.563-45.717-41.786Q-46.140-42.008-46.140-42.473M-45.453-42.473Q-45.453-42.188-45.226-42.002Q-45-41.817-44.707-41.817Q-44.461-41.817-44.236-41.934Q-44.012-42.051-43.877-42.254Q-43.742-42.457-43.742-42.711L-43.742-43.543Q-44.008-43.543-44.293-43.489Q-44.578-43.434-44.849-43.305Q-45.121-43.176-45.287-42.969Q-45.453-42.762-45.453-42.473M-40.605-41.641L-42.101-41.641L-42.101-41.938Q-41.469-41.938-41.047-42.418L-40.277-43.328L-41.269-44.528Q-41.426-44.707-41.588-44.750Q-41.750-44.793-42.054-44.793L-42.054-45.090L-40.367-45.090L-40.367-44.793Q-40.461-44.793-40.537-44.750Q-40.613-44.707-40.613-44.618Q-40.613-44.575-40.582-44.528L-39.926-43.739L-39.445-44.313Q-39.328-44.450-39.328-44.586Q-39.328-44.676-39.379-44.735Q-39.429-44.793-39.512-44.793L-39.512-45.090L-38.023-45.090L-38.023-44.793Q-38.660-44.793-39.070-44.313L-39.750-43.512L-38.664-42.200Q-38.504-42.024-38.344-41.981Q-38.183-41.938-37.879-41.938L-37.879-41.641L-39.566-41.641L-39.566-41.938Q-39.476-41.938-39.398-41.981Q-39.320-42.024-39.320-42.114Q-39.320-42.137-39.351-42.200L-40.094-43.106L-40.679-42.418Q-40.797-42.282-40.797-42.145Q-40.797-42.059-40.746-41.998Q-40.695-41.938-40.605-41.938L-40.605-41.641M-31.789-42.618L-37.101-42.618Q-37.179-42.625-37.228-42.674Q-37.277-42.723-37.277-42.801Q-37.277-42.871-37.230-42.922Q-37.183-42.973-37.101-42.985L-31.789-42.985Q-31.715-42.973-31.668-42.922Q-31.621-42.871-31.621-42.801Q-31.621-42.723-31.670-42.674Q-31.719-42.625-31.789-42.618M-31.789-44.305L-37.101-44.305Q-37.179-44.313-37.228-44.362Q-37.277-44.411-37.277-44.489Q-37.277-44.559-37.230-44.610Q-37.183-44.661-37.101-44.672L-31.789-44.672Q-31.715-44.661-31.668-44.610Q-31.621-44.559-31.621-44.489Q-31.621-44.411-31.670-44.362Q-31.719-44.313-31.789-44.305M-29.019-41.473Q-29.722-41.473-30.123-41.873Q-30.523-42.274-30.668-42.883Q-30.812-43.493-30.812-44.192Q-30.812-44.715-30.742-45.178Q-30.672-45.641-30.478-46.053Q-30.285-46.465-29.928-46.713Q-29.570-46.961-29.019-46.961Q-28.469-46.961-28.111-46.713Q-27.754-46.465-27.562-46.055Q-27.371-45.645-27.301-45.176Q-27.230-44.707-27.230-44.192Q-27.230-43.493-27.373-42.885Q-27.515-42.278-27.916-41.875Q-28.316-41.473-29.019-41.473M-29.019-41.731Q-28.547-41.731-28.314-42.166Q-28.082-42.602-28.027-43.141Q-27.972-43.680-27.972-44.321Q-27.972-45.317-28.156-46.010Q-28.340-46.703-29.019-46.703Q-29.387-46.703-29.607-46.465Q-29.828-46.227-29.924-45.870Q-30.019-45.512-30.045-45.141Q-30.070-44.770-30.070-44.321Q-30.070-43.680-30.015-43.141Q-29.961-42.602-29.728-42.166Q-29.496-41.731-29.019-41.731M-23.773-43.457L-26.246-43.457Q-26.324-43.469-26.373-43.518Q-26.422-43.567-26.422-43.641Q-26.422-43.715-26.373-43.764Q-26.324-43.813-26.246-43.825L-23.773-43.825L-23.773-46.305Q-23.746-46.473-23.590-46.473Q-23.515-46.473-23.467-46.424Q-23.418-46.375-23.406-46.305L-23.406-43.825L-20.933-43.825Q-20.765-43.793-20.765-43.641Q-20.765-43.489-20.933-43.457L-23.406-43.457L-23.406-40.977Q-23.418-40.907-23.467-40.858Q-23.515-40.809-23.590-40.809Q-23.746-40.809-23.773-40.977L-23.773-43.457M-19.492-42.274Q-19.301-42-18.945-41.873Q-18.590-41.746-18.207-41.746Q-17.871-41.746-17.662-41.932Q-17.453-42.118-17.357-42.411Q-17.262-42.703-17.262-43.016Q-17.262-43.340-17.359-43.635Q-17.457-43.930-17.670-44.114Q-17.883-44.297-18.215-44.297L-18.781-44.297Q-18.812-44.297-18.842-44.327Q-18.871-44.356-18.871-44.383L-18.871-44.465Q-18.871-44.500-18.842-44.526Q-18.812-44.551-18.781-44.551L-18.301-44.586Q-18.015-44.586-17.818-44.791Q-17.621-44.996-17.525-45.291Q-17.429-45.586-17.429-45.864Q-17.429-46.243-17.629-46.481Q-17.828-46.719-18.207-46.719Q-18.527-46.719-18.816-46.612Q-19.105-46.504-19.269-46.282Q-19.090-46.282-18.967-46.155Q-18.844-46.028-18.844-45.856Q-18.844-45.684-18.969-45.559Q-19.094-45.434-19.269-45.434Q-19.441-45.434-19.566-45.559Q-19.691-45.684-19.691-45.856Q-19.691-46.223-19.467-46.471Q-19.242-46.719-18.902-46.840Q-18.562-46.961-18.207-46.961Q-17.859-46.961-17.496-46.840Q-17.133-46.719-16.885-46.469Q-16.637-46.219-16.637-45.864Q-16.637-45.379-16.955-44.996Q-17.273-44.614-17.750-44.442Q-17.199-44.332-16.799-43.946Q-16.398-43.559-16.398-43.024Q-16.398-42.567-16.662-42.211Q-16.926-41.856-17.347-41.664Q-17.769-41.473-18.207-41.473Q-18.617-41.473-19.010-41.608Q-19.402-41.743-19.668-42.028Q-19.933-42.313-19.933-42.731Q-19.933-42.926-19.801-43.055Q-19.668-43.184-19.476-43.184Q-19.351-43.184-19.248-43.125Q-19.144-43.067-19.082-42.961Q-19.019-42.856-19.019-42.731Q-19.019-42.536-19.154-42.405Q-19.289-42.274-19.492-42.274\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(259.608 2.733)\">\u003Cpath d=\"M-52.250-41.641L-56.281-41.641Q-56.332-41.641-56.363-41.672Q-56.394-41.703-56.394-41.754L-56.394-41.856Q-56.394-41.883-56.363-41.930L-53.066-46.809L-54.242-46.809Q-54.679-46.809-55.002-46.743Q-55.324-46.676-55.554-46.465Q-55.781-46.250-55.888-45.928Q-55.996-45.606-55.996-45.258L-56.273-45.258L-56.179-47.106L-52.265-47.106Q-52.219-47.106-52.187-47.073Q-52.156-47.039-52.156-46.993L-52.156-46.907Q-52.156-46.903-52.179-46.832L-55.484-41.961L-54.250-41.961Q-53.957-41.961-53.709-41.987Q-53.461-42.012-53.232-42.094Q-53.004-42.176-52.820-42.352Q-52.582-42.590-52.500-42.944Q-52.418-43.297-52.387-43.825L-52.105-43.825L-52.250-41.641M-48.754-41.641L-51.340-41.641L-51.340-41.938Q-51.019-41.938-50.775-41.985Q-50.531-42.032-50.531-42.200L-50.531-46.543Q-50.531-46.715-50.775-46.762Q-51.019-46.809-51.340-46.809L-51.340-47.106L-46.722-47.106L-46.492-45.258L-46.773-45.258Q-46.859-45.942-47.021-46.262Q-47.183-46.582-47.523-46.696Q-47.863-46.809-48.554-46.809L-49.363-46.809Q-49.582-46.809-49.674-46.766Q-49.765-46.723-49.765-46.543L-49.765-44.520L-49.156-44.520Q-48.730-44.520-48.533-44.586Q-48.336-44.653-48.254-44.846Q-48.172-45.039-48.172-45.457L-47.890-45.457L-47.890-43.289L-48.172-43.289Q-48.172-43.707-48.254-43.901Q-48.336-44.094-48.533-44.161Q-48.730-44.227-49.156-44.227L-49.765-44.227L-49.765-42.200Q-49.765-42.036-49.447-41.987Q-49.129-41.938-48.754-41.938L-48.754-41.641M-44.012-41.473Q-44.715-41.473-45.115-41.873Q-45.515-42.274-45.660-42.883Q-45.804-43.493-45.804-44.192Q-45.804-44.715-45.734-45.178Q-45.664-45.641-45.471-46.053Q-45.277-46.465-44.920-46.713Q-44.562-46.961-44.012-46.961Q-43.461-46.961-43.103-46.713Q-42.746-46.465-42.554-46.055Q-42.363-45.645-42.293-45.176Q-42.222-44.707-42.222-44.192Q-42.222-43.493-42.365-42.885Q-42.508-42.278-42.908-41.875Q-43.308-41.473-44.012-41.473M-44.012-41.731Q-43.539-41.731-43.306-42.166Q-43.074-42.602-43.019-43.141Q-42.965-43.680-42.965-44.321Q-42.965-45.317-43.148-46.010Q-43.332-46.703-44.012-46.703Q-44.379-46.703-44.599-46.465Q-44.820-46.227-44.916-45.870Q-45.012-45.512-45.037-45.141Q-45.062-44.770-45.062-44.321Q-45.062-43.680-45.008-43.141Q-44.953-42.602-44.721-42.166Q-44.488-41.731-44.012-41.731\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(259.608 2.733)\">\u003Cpath d=\"M-38.572-41.563L-38.572-43.368Q-38.572-43.395-38.541-43.426Q-38.510-43.457-38.486-43.457L-38.381-43.457Q-38.350-43.457-38.320-43.428Q-38.291-43.399-38.291-43.368Q-38.291-42.586-37.775-42.178Q-37.260-41.770-36.451-41.770Q-36.154-41.770-35.899-41.920Q-35.643-42.071-35.492-42.327Q-35.342-42.582-35.342-42.879Q-35.342-43.278-35.588-43.582Q-35.834-43.887-36.205-43.969L-37.326-44.227Q-37.666-44.301-37.953-44.522Q-38.240-44.743-38.406-45.061Q-38.572-45.379-38.572-45.731Q-38.572-46.161-38.342-46.516Q-38.111-46.871-37.731-47.073Q-37.350-47.274-36.924-47.274Q-36.674-47.274-36.428-47.215Q-36.182-47.157-35.963-47.034Q-35.744-46.911-35.580-46.731L-35.252-47.227Q-35.221-47.274-35.182-47.274L-35.135-47.274Q-35.108-47.274-35.076-47.243Q-35.045-47.211-35.045-47.184L-35.045-45.375Q-35.045-45.352-35.076-45.321Q-35.108-45.289-35.135-45.289L-35.236-45.289Q-35.268-45.289-35.297-45.319Q-35.326-45.348-35.326-45.375Q-35.326-45.508-35.369-45.694Q-35.412-45.879-35.477-46.034Q-35.541-46.188-35.641-46.346Q-35.740-46.504-35.830-46.594Q-36.260-47-36.924-47Q-37.201-47-37.461-46.868Q-37.721-46.735-37.879-46.500Q-38.037-46.266-38.037-45.985Q-38.037-45.629-37.797-45.358Q-37.557-45.086-37.190-45L-36.076-44.746Q-35.799-44.680-35.566-44.526Q-35.334-44.371-35.164-44.153Q-34.994-43.934-34.900-43.676Q-34.807-43.418-34.807-43.129Q-34.807-42.801-34.932-42.498Q-35.057-42.196-35.291-41.959Q-35.525-41.723-35.818-41.598Q-36.111-41.473-36.451-41.473Q-37.467-41.473-38.037-42.016L-38.365-41.520Q-38.397-41.473-38.436-41.473L-38.486-41.473Q-38.510-41.473-38.541-41.504Q-38.572-41.536-38.572-41.563M-31.404-41.641L-33.990-41.641L-33.990-41.938Q-33.670-41.938-33.426-41.985Q-33.182-42.032-33.182-42.200L-33.182-46.543Q-33.182-46.715-33.426-46.762Q-33.670-46.809-33.990-46.809L-33.990-47.106L-29.373-47.106L-29.143-45.258L-29.424-45.258Q-29.510-45.942-29.672-46.262Q-29.834-46.582-30.174-46.696Q-30.514-46.809-31.205-46.809L-32.014-46.809Q-32.233-46.809-32.324-46.766Q-32.416-46.723-32.416-46.543L-32.416-44.520L-31.807-44.520Q-31.381-44.520-31.184-44.586Q-30.986-44.653-30.904-44.846Q-30.822-45.039-30.822-45.457L-30.541-45.457L-30.541-43.289L-30.822-43.289Q-30.822-43.707-30.904-43.901Q-30.986-44.094-31.184-44.161Q-31.381-44.227-31.807-44.227L-32.416-44.227L-32.416-42.200Q-32.416-42.036-32.098-41.987Q-31.779-41.938-31.404-41.938L-31.404-41.641M-26.662-41.473Q-27.365-41.473-27.766-41.873Q-28.166-42.274-28.311-42.883Q-28.455-43.493-28.455-44.192Q-28.455-44.715-28.385-45.178Q-28.315-45.641-28.121-46.053Q-27.928-46.465-27.570-46.713Q-27.213-46.961-26.662-46.961Q-26.111-46.961-25.754-46.713Q-25.397-46.465-25.205-46.055Q-25.014-45.645-24.943-45.176Q-24.873-44.707-24.873-44.192Q-24.873-43.493-25.016-42.885Q-25.158-42.278-25.559-41.875Q-25.959-41.473-26.662-41.473M-26.662-41.731Q-26.190-41.731-25.957-42.166Q-25.725-42.602-25.670-43.141Q-25.615-43.680-25.615-44.321Q-25.615-45.317-25.799-46.010Q-25.983-46.703-26.662-46.703Q-27.029-46.703-27.250-46.465Q-27.471-46.227-27.566-45.870Q-27.662-45.512-27.688-45.141Q-27.713-44.770-27.713-44.321Q-27.713-43.680-27.658-43.141Q-27.604-42.602-27.371-42.166Q-27.139-41.731-26.662-41.731\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(316.513 3.056)\">\u003Cpath d=\"M-54.245-41.529Q-54.933-41.529-55.424-42.034Q-55.915-42.539-56.152-43.289Q-56.388-44.038-56.388-44.703Q-56.388-45.362-56.152-46.104Q-55.915-46.846-55.424-47.354Q-54.933-47.862-54.245-47.862Q-53.718-47.862-53.305-47.559Q-52.892-47.256-52.631-46.773Q-52.370-46.289-52.238-45.747Q-52.106-45.205-52.106-44.703Q-52.106-44.195-52.238-43.653Q-52.370-43.111-52.634-42.622Q-52.897-42.134-53.307-41.831Q-53.718-41.529-54.245-41.529M-54.245-42.183Q-53.859-42.183-53.588-42.459Q-53.317-42.735-53.154-43.150Q-52.990-43.565-52.914-44.012Q-52.839-44.458-52.839-44.820Q-52.839-45.142-52.917-45.559Q-52.995-45.977-53.159-46.348Q-53.322-46.719-53.598-46.966Q-53.874-47.212-54.245-47.212Q-54.616-47.212-54.885-46.973Q-55.153-46.734-55.322-46.360Q-55.490-45.987-55.573-45.564Q-55.656-45.142-55.656-44.820Q-55.656-44.341-55.517-43.721Q-55.378-43.101-55.055-42.642Q-54.733-42.183-54.245-42.183M-49.587-41.641L-51.047-41.641Q-51.301-41.670-51.330-41.919L-51.330-42.012Q-51.301-42.261-51.047-42.290L-50.519-42.290L-49.318-43.863L-50.446-45.303L-50.988-45.303Q-51.237-45.332-51.266-45.581L-51.266-45.669Q-51.252-45.791-51.183-45.865Q-51.115-45.938-50.988-45.953L-49.528-45.953Q-49.294-45.923-49.250-45.669L-49.250-45.581Q-49.294-45.332-49.528-45.303L-49.719-45.303L-49.030-44.370L-48.346-45.303L-48.556-45.303Q-48.796-45.332-48.840-45.581L-48.840-45.669Q-48.820-45.787-48.744-45.862Q-48.669-45.938-48.556-45.953L-47.096-45.953Q-46.979-45.938-46.906-45.865Q-46.833-45.791-46.818-45.669L-46.818-45.581Q-46.847-45.332-47.096-45.303L-47.629-45.303L-48.727-43.863L-47.497-42.290L-46.960-42.290Q-46.838-42.276-46.764-42.207Q-46.691-42.139-46.677-42.012L-46.677-41.919Q-46.691-41.802-46.764-41.729Q-46.838-41.656-46.960-41.641L-48.420-41.641Q-48.649-41.670-48.698-41.919L-48.698-42.012Q-48.654-42.261-48.420-42.290L-48.200-42.290L-49.030-43.453L-49.816-42.290L-49.587-42.290Q-49.352-42.261-49.308-42.012L-49.308-41.919Q-49.352-41.670-49.587-41.641M-45.851-41.919L-45.851-42.012Q-45.851-42.129-45.710-42.251L-44.098-43.589Q-44.025-43.648-43.615-43.992Q-43.205-44.336-42.951-44.617Q-42.697-44.898-42.538-45.223Q-42.380-45.547-42.380-45.899Q-42.380-46.319-42.604-46.617Q-42.829-46.914-43.198-47.063Q-43.566-47.212-43.967-47.212Q-44.318-47.212-44.628-47.027Q-44.938-46.841-45.060-46.509Q-44.919-46.377-44.919-46.182Q-44.919-45.996-45.055-45.855Q-45.192-45.713-45.378-45.713Q-45.588-45.713-45.720-45.857Q-45.851-46.001-45.851-46.202Q-45.851-46.690-45.566-47.071Q-45.280-47.452-44.831-47.657Q-44.382-47.862-43.898-47.862Q-43.454-47.862-43.049-47.732Q-42.643-47.603-42.324-47.344Q-42.004-47.085-41.825-46.719Q-41.647-46.353-41.647-45.899Q-41.647-45.332-41.933-44.849Q-42.219-44.366-42.565-44.046Q-42.912-43.726-43.610-43.160L-44.660-42.290L-42.380-42.290L-42.380-42.481Q-42.350-42.730-42.101-42.759L-41.930-42.759Q-41.808-42.745-41.735-42.676Q-41.662-42.608-41.647-42.481L-41.647-41.919Q-41.662-41.802-41.735-41.729Q-41.808-41.656-41.930-41.641L-45.568-41.641Q-45.812-41.670-45.851-41.919M-38.498-41.529Q-39.186-41.529-39.677-42.034Q-40.168-42.539-40.405-43.289Q-40.641-44.038-40.641-44.703Q-40.641-45.362-40.405-46.104Q-40.168-46.846-39.677-47.354Q-39.186-47.862-38.498-47.862Q-37.971-47.862-37.558-47.559Q-37.145-47.256-36.884-46.773Q-36.623-46.289-36.491-45.747Q-36.359-45.205-36.359-44.703Q-36.359-44.195-36.491-43.653Q-36.623-43.111-36.887-42.622Q-37.150-42.134-37.560-41.831Q-37.971-41.529-38.498-41.529M-38.498-42.183Q-38.112-42.183-37.841-42.459Q-37.570-42.735-37.407-43.150Q-37.243-43.565-37.167-44.012Q-37.092-44.458-37.092-44.820Q-37.092-45.142-37.170-45.559Q-37.248-45.977-37.411-46.348Q-37.575-46.719-37.851-46.966Q-38.127-47.212-38.498-47.212Q-38.869-47.212-39.138-46.973Q-39.406-46.734-39.575-46.360Q-39.743-45.987-39.826-45.564Q-39.909-45.142-39.909-44.820Q-39.909-44.341-39.770-43.721Q-39.631-43.101-39.308-42.642Q-38.986-42.183-38.498-42.183\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(362.038 2.778)\">\u003Cpath d=\"M-55.683-41.375Q-55.683-41.438-55.652-41.481L-51.906-46.739Q-52.363-46.504-52.929-46.504Q-53.582-46.504-54.187-46.825Q-54.043-46.477-54.043-46.032Q-54.043-45.672-54.164-45.301Q-54.285-44.930-54.535-44.674Q-54.785-44.418-55.148-44.418Q-55.535-44.418-55.818-44.662Q-56.101-44.907-56.248-45.280Q-56.394-45.653-56.394-46.032Q-56.394-46.411-56.248-46.782Q-56.101-47.153-55.818-47.397Q-55.535-47.641-55.148-47.641Q-54.832-47.641-54.562-47.403Q-54.226-47.098-53.797-46.926Q-53.367-46.754-52.929-46.754Q-52.437-46.754-52.019-46.967Q-51.601-47.180-51.301-47.578Q-51.258-47.641-51.164-47.641Q-51.090-47.641-51.035-47.586Q-50.980-47.532-50.980-47.457Q-50.980-47.395-51.012-47.352L-55.355-41.258Q-55.402-41.192-55.500-41.192Q-55.582-41.192-55.633-41.243Q-55.683-41.293-55.683-41.375M-55.148-44.672Q-54.875-44.672-54.687-44.897Q-54.500-45.121-54.412-45.444Q-54.324-45.766-54.324-46.032Q-54.324-46.289-54.412-46.612Q-54.500-46.934-54.687-47.159Q-54.875-47.383-55.148-47.383Q-55.535-47.383-55.678-46.955Q-55.820-46.528-55.820-46.032Q-55.820-45.524-55.679-45.098Q-55.539-44.672-55.148-44.672M-51.371-41.192Q-51.758-41.192-52.041-41.438Q-52.324-41.684-52.472-42.057Q-52.621-42.430-52.621-42.809Q-52.621-43.082-52.535-43.370Q-52.449-43.657-52.295-43.891Q-52.140-44.125-51.904-44.272Q-51.668-44.418-51.371-44.418Q-51.090-44.418-50.883-44.266Q-50.676-44.114-50.537-43.871Q-50.398-43.629-50.332-43.348Q-50.265-43.067-50.265-42.809Q-50.265-42.450-50.387-42.077Q-50.508-41.703-50.758-41.448Q-51.008-41.192-51.371-41.192M-51.371-41.450Q-51.097-41.450-50.910-41.674Q-50.722-41.899-50.635-42.221Q-50.547-42.543-50.547-42.809Q-50.547-43.067-50.635-43.389Q-50.722-43.711-50.910-43.936Q-51.097-44.161-51.371-44.161Q-51.762-44.161-51.902-43.731Q-52.043-43.301-52.043-42.809Q-52.043-42.301-51.906-41.875Q-51.769-41.450-51.371-41.450M-47.543-41.641L-49.523-41.641L-49.523-41.938Q-49.254-41.938-49.086-41.983Q-48.918-42.028-48.918-42.200L-48.918-44.336Q-48.918-44.551-48.980-44.647Q-49.043-44.743-49.160-44.764Q-49.277-44.786-49.523-44.786L-49.523-45.082L-48.355-45.168L-48.355-44.383Q-48.277-44.594-48.125-44.780Q-47.972-44.965-47.773-45.067Q-47.574-45.168-47.347-45.168Q-47.101-45.168-46.910-45.024Q-46.719-44.879-46.719-44.649Q-46.719-44.493-46.824-44.383Q-46.929-44.274-47.086-44.274Q-47.242-44.274-47.351-44.383Q-47.461-44.493-47.461-44.649Q-47.461-44.809-47.355-44.914Q-47.679-44.914-47.894-44.686Q-48.109-44.457-48.205-44.118Q-48.301-43.778-48.301-43.473L-48.301-42.200Q-48.301-42.032-48.074-41.985Q-47.847-41.938-47.543-41.938L-47.543-41.641M-46.140-42.473Q-46.140-42.957-45.738-43.252Q-45.336-43.547-44.785-43.666Q-44.234-43.786-43.742-43.786L-43.742-44.075Q-43.742-44.301-43.857-44.508Q-43.972-44.715-44.170-44.834Q-44.367-44.953-44.597-44.953Q-45.023-44.953-45.308-44.848Q-45.238-44.821-45.191-44.766Q-45.144-44.711-45.119-44.641Q-45.094-44.571-45.094-44.496Q-45.094-44.391-45.144-44.299Q-45.195-44.207-45.287-44.157Q-45.379-44.106-45.484-44.106Q-45.590-44.106-45.681-44.157Q-45.773-44.207-45.824-44.299Q-45.875-44.391-45.875-44.496Q-45.875-44.914-45.486-45.061Q-45.097-45.207-44.597-45.207Q-44.265-45.207-43.912-45.077Q-43.558-44.946-43.330-44.692Q-43.101-44.438-43.101-44.090L-43.101-42.289Q-43.101-42.157-43.029-42.047Q-42.957-41.938-42.828-41.938Q-42.703-41.938-42.635-42.043Q-42.566-42.149-42.566-42.289L-42.566-42.801L-42.285-42.801L-42.285-42.289Q-42.285-42.086-42.402-41.928Q-42.519-41.770-42.701-41.686Q-42.883-41.602-43.086-41.602Q-43.316-41.602-43.469-41.774Q-43.621-41.946-43.652-42.176Q-43.812-41.895-44.121-41.729Q-44.429-41.563-44.781-41.563Q-45.293-41.563-45.717-41.786Q-46.140-42.008-46.140-42.473M-45.453-42.473Q-45.453-42.188-45.226-42.002Q-45-41.817-44.707-41.817Q-44.461-41.817-44.236-41.934Q-44.012-42.051-43.877-42.254Q-43.742-42.457-43.742-42.711L-43.742-43.543Q-44.008-43.543-44.293-43.489Q-44.578-43.434-44.849-43.305Q-45.121-43.176-45.287-42.969Q-45.453-42.762-45.453-42.473M-40.605-41.641L-42.101-41.641L-42.101-41.938Q-41.469-41.938-41.047-42.418L-40.277-43.328L-41.269-44.528Q-41.426-44.707-41.588-44.750Q-41.750-44.793-42.054-44.793L-42.054-45.090L-40.367-45.090L-40.367-44.793Q-40.461-44.793-40.537-44.750Q-40.613-44.707-40.613-44.618Q-40.613-44.575-40.582-44.528L-39.926-43.739L-39.445-44.313Q-39.328-44.450-39.328-44.586Q-39.328-44.676-39.379-44.735Q-39.429-44.793-39.512-44.793L-39.512-45.090L-38.023-45.090L-38.023-44.793Q-38.660-44.793-39.070-44.313L-39.750-43.512L-38.664-42.200Q-38.504-42.024-38.344-41.981Q-38.183-41.938-37.879-41.938L-37.879-41.641L-39.566-41.641L-39.566-41.938Q-39.476-41.938-39.398-41.981Q-39.320-42.024-39.320-42.114Q-39.320-42.137-39.351-42.200L-40.094-43.106L-40.679-42.418Q-40.797-42.282-40.797-42.145Q-40.797-42.059-40.746-41.998Q-40.695-41.938-40.605-41.938L-40.605-41.641M-31.789-42.618L-37.101-42.618Q-37.179-42.625-37.228-42.674Q-37.277-42.723-37.277-42.801Q-37.277-42.871-37.230-42.922Q-37.183-42.973-37.101-42.985L-31.789-42.985Q-31.715-42.973-31.668-42.922Q-31.621-42.871-31.621-42.801Q-31.621-42.723-31.670-42.674Q-31.719-42.625-31.789-42.618M-31.789-44.305L-37.101-44.305Q-37.179-44.313-37.228-44.362Q-37.277-44.411-37.277-44.489Q-37.277-44.559-37.230-44.610Q-37.183-44.661-37.101-44.672L-31.789-44.672Q-31.715-44.661-31.668-44.610Q-31.621-44.559-31.621-44.489Q-31.621-44.411-31.670-44.362Q-31.719-44.313-31.789-44.305M-30.347-42.274Q-30.156-42-29.801-41.873Q-29.445-41.746-29.062-41.746Q-28.726-41.746-28.517-41.932Q-28.308-42.118-28.213-42.411Q-28.117-42.703-28.117-43.016Q-28.117-43.340-28.215-43.635Q-28.312-43.930-28.525-44.114Q-28.738-44.297-29.070-44.297L-29.637-44.297Q-29.668-44.297-29.697-44.327Q-29.726-44.356-29.726-44.383L-29.726-44.465Q-29.726-44.500-29.697-44.526Q-29.668-44.551-29.637-44.551L-29.156-44.586Q-28.871-44.586-28.674-44.791Q-28.476-44.996-28.381-45.291Q-28.285-45.586-28.285-45.864Q-28.285-46.243-28.484-46.481Q-28.683-46.719-29.062-46.719Q-29.383-46.719-29.672-46.612Q-29.961-46.504-30.125-46.282Q-29.945-46.282-29.822-46.155Q-29.699-46.028-29.699-45.856Q-29.699-45.684-29.824-45.559Q-29.949-45.434-30.125-45.434Q-30.297-45.434-30.422-45.559Q-30.547-45.684-30.547-45.856Q-30.547-46.223-30.322-46.471Q-30.097-46.719-29.758-46.840Q-29.418-46.961-29.062-46.961Q-28.715-46.961-28.351-46.840Q-27.988-46.719-27.740-46.469Q-27.492-46.219-27.492-45.864Q-27.492-45.379-27.810-44.996Q-28.129-44.614-28.605-44.442Q-28.054-44.332-27.654-43.946Q-27.254-43.559-27.254-43.024Q-27.254-42.567-27.517-42.211Q-27.781-41.856-28.203-41.664Q-28.625-41.473-29.062-41.473Q-29.472-41.473-29.865-41.608Q-30.258-41.743-30.523-42.028Q-30.789-42.313-30.789-42.731Q-30.789-42.926-30.656-43.055Q-30.523-43.184-30.332-43.184Q-30.207-43.184-30.103-43.125Q-30-43.067-29.937-42.961Q-29.875-42.856-29.875-42.731Q-29.875-42.536-30.010-42.405Q-30.144-42.274-30.347-42.274\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-31.682h423.946\"\u002F>\u003Cg transform=\"translate(-2.157 22.495)\">\u003Cpath d=\"M-56.027-42.520L-56.090-42.520Q-55.949-42.168-55.625-41.957Q-55.301-41.746-54.914-41.746Q-54.320-41.746-54.070-42.180Q-53.820-42.614-53.820-43.250Q-53.820-43.844-53.990-44.291Q-54.160-44.739-54.660-44.739Q-54.957-44.739-55.162-44.659Q-55.367-44.578-55.469-44.487Q-55.570-44.395-55.685-44.262Q-55.801-44.129-55.851-44.114L-55.922-44.114Q-56.008-44.137-56.027-44.215L-56.027-46.864Q-55.996-46.961-55.922-46.961Q-55.906-46.961-55.898-46.959Q-55.890-46.957-55.883-46.953Q-55.297-46.703-54.699-46.703Q-54.117-46.703-53.500-46.961L-53.476-46.961Q-53.433-46.961-53.406-46.936Q-53.379-46.911-53.379-46.871L-53.379-46.793Q-53.379-46.762-53.402-46.739Q-53.699-46.387-54.121-46.190Q-54.543-45.993-55.004-45.993Q-55.351-45.993-55.730-46.098L-55.730-44.602Q-55.512-44.797-55.236-44.895Q-54.961-44.993-54.660-44.993Q-54.203-44.993-53.834-44.745Q-53.465-44.496-53.258-44.092Q-53.051-43.688-53.051-43.243Q-53.051-42.754-53.306-42.346Q-53.562-41.938-53.994-41.705Q-54.426-41.473-54.914-41.473Q-55.308-41.473-55.664-41.664Q-56.019-41.856-56.230-42.190Q-56.441-42.524-56.441-42.938Q-56.441-43.118-56.324-43.231Q-56.207-43.344-56.027-43.344Q-55.910-43.344-55.818-43.291Q-55.726-43.239-55.674-43.147Q-55.621-43.055-55.621-42.938Q-55.621-42.754-55.734-42.637Q-55.847-42.520-56.027-42.520\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(27.718 22.972)\">\u003Cpath d=\"M-54.245-41.529Q-54.933-41.529-55.424-42.034Q-55.915-42.539-56.152-43.289Q-56.388-44.038-56.388-44.703Q-56.388-45.362-56.152-46.104Q-55.915-46.846-55.424-47.354Q-54.933-47.862-54.245-47.862Q-53.718-47.862-53.305-47.559Q-52.892-47.256-52.631-46.773Q-52.370-46.289-52.238-45.747Q-52.106-45.205-52.106-44.703Q-52.106-44.195-52.238-43.653Q-52.370-43.111-52.634-42.622Q-52.897-42.134-53.307-41.831Q-53.718-41.529-54.245-41.529M-54.245-42.183Q-53.859-42.183-53.588-42.459Q-53.317-42.735-53.154-43.150Q-52.990-43.565-52.914-44.012Q-52.839-44.458-52.839-44.820Q-52.839-45.142-52.917-45.559Q-52.995-45.977-53.159-46.348Q-53.322-46.719-53.598-46.966Q-53.874-47.212-54.245-47.212Q-54.616-47.212-54.885-46.973Q-55.153-46.734-55.322-46.360Q-55.490-45.987-55.573-45.564Q-55.656-45.142-55.656-44.820Q-55.656-44.341-55.517-43.721Q-55.378-43.101-55.055-42.642Q-54.733-42.183-54.245-42.183M-49.587-41.641L-51.047-41.641Q-51.301-41.670-51.330-41.919L-51.330-42.012Q-51.301-42.261-51.047-42.290L-50.519-42.290L-49.318-43.863L-50.446-45.303L-50.988-45.303Q-51.237-45.332-51.266-45.581L-51.266-45.669Q-51.252-45.791-51.183-45.865Q-51.115-45.938-50.988-45.953L-49.528-45.953Q-49.294-45.923-49.250-45.669L-49.250-45.581Q-49.294-45.332-49.528-45.303L-49.719-45.303L-49.030-44.370L-48.346-45.303L-48.556-45.303Q-48.796-45.332-48.840-45.581L-48.840-45.669Q-48.820-45.787-48.744-45.862Q-48.669-45.938-48.556-45.953L-47.096-45.953Q-46.979-45.938-46.906-45.865Q-46.833-45.791-46.818-45.669L-46.818-45.581Q-46.847-45.332-47.096-45.303L-47.629-45.303L-48.727-43.863L-47.497-42.290L-46.960-42.290Q-46.838-42.276-46.764-42.207Q-46.691-42.139-46.677-42.012L-46.677-41.919Q-46.691-41.802-46.764-41.729Q-46.838-41.656-46.960-41.641L-48.420-41.641Q-48.649-41.670-48.698-41.919L-48.698-42.012Q-48.654-42.261-48.420-42.290L-48.200-42.290L-49.030-43.453L-49.816-42.290L-49.587-42.290Q-49.352-42.261-49.308-42.012L-49.308-41.919Q-49.352-41.670-49.587-41.641M-45.851-41.919L-45.851-42.012Q-45.851-42.129-45.710-42.251L-44.098-43.589Q-44.025-43.648-43.615-43.992Q-43.205-44.336-42.951-44.617Q-42.697-44.898-42.538-45.223Q-42.380-45.547-42.380-45.899Q-42.380-46.319-42.604-46.617Q-42.829-46.914-43.198-47.063Q-43.566-47.212-43.967-47.212Q-44.318-47.212-44.628-47.027Q-44.938-46.841-45.060-46.509Q-44.919-46.377-44.919-46.182Q-44.919-45.996-45.055-45.855Q-45.192-45.713-45.378-45.713Q-45.588-45.713-45.720-45.857Q-45.851-46.001-45.851-46.202Q-45.851-46.690-45.566-47.071Q-45.280-47.452-44.831-47.657Q-44.382-47.862-43.898-47.862Q-43.454-47.862-43.049-47.732Q-42.643-47.603-42.324-47.344Q-42.004-47.085-41.825-46.719Q-41.647-46.353-41.647-45.899Q-41.647-45.332-41.933-44.849Q-42.219-44.366-42.565-44.046Q-42.912-43.726-43.610-43.160L-44.660-42.290L-42.380-42.290L-42.380-42.481Q-42.350-42.730-42.101-42.759L-41.930-42.759Q-41.808-42.745-41.735-42.676Q-41.662-42.608-41.647-42.481L-41.647-41.919Q-41.662-41.802-41.735-41.729Q-41.808-41.656-41.930-41.641L-45.568-41.641Q-45.812-41.670-45.851-41.919M-38.498-41.529Q-39.186-41.529-39.677-42.034Q-40.168-42.539-40.405-43.289Q-40.641-44.038-40.641-44.703Q-40.641-45.362-40.405-46.104Q-40.168-46.846-39.677-47.354Q-39.186-47.862-38.498-47.862Q-37.971-47.862-37.558-47.559Q-37.145-47.256-36.884-46.773Q-36.623-46.289-36.491-45.747Q-36.359-45.205-36.359-44.703Q-36.359-44.195-36.491-43.653Q-36.623-43.111-36.887-42.622Q-37.150-42.134-37.560-41.831Q-37.971-41.529-38.498-41.529M-38.498-42.183Q-38.112-42.183-37.841-42.459Q-37.570-42.735-37.407-43.150Q-37.243-43.565-37.167-44.012Q-37.092-44.458-37.092-44.820Q-37.092-45.142-37.170-45.559Q-37.248-45.977-37.411-46.348Q-37.575-46.719-37.851-46.966Q-38.127-47.212-38.498-47.212Q-38.869-47.212-39.138-46.973Q-39.406-46.734-39.575-46.360Q-39.743-45.987-39.826-45.564Q-39.909-45.142-39.909-44.820Q-39.909-44.341-39.770-43.721Q-39.631-43.101-39.308-42.642Q-38.986-42.183-38.498-42.183\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(66.129 21.806)\">\u003Cpath d=\"M-56.281-41.840L-56.281-42.754Q-56.254-42.961-56.043-42.985L-55.875-42.985Q-55.711-42.961-55.652-42.801Q-55.449-42.161-54.722-42.161Q-54.515-42.161-54.287-42.196Q-54.058-42.231-53.890-42.346Q-53.722-42.461-53.722-42.664Q-53.722-42.875-53.945-42.989Q-54.168-43.102-54.441-43.145L-55.140-43.258Q-56.281-43.469-56.281-44.192Q-56.281-44.481-56.137-44.670Q-55.992-44.860-55.752-44.967Q-55.512-45.075-55.256-45.114Q-55-45.153-54.722-45.153Q-54.472-45.153-54.279-45.123Q-54.086-45.094-53.922-45.016Q-53.844-45.133-53.715-45.153L-53.637-45.153Q-53.539-45.141-53.476-45.078Q-53.414-45.016-53.402-44.922L-53.402-44.215Q-53.414-44.121-53.476-44.055Q-53.539-43.989-53.637-43.977L-53.804-43.977Q-53.898-43.989-53.965-44.055Q-54.031-44.121-54.043-44.215Q-54.043-44.594-54.738-44.594Q-55.086-44.594-55.404-44.512Q-55.722-44.430-55.722-44.184Q-55.722-43.918-55.051-43.809L-54.347-43.688Q-53.863-43.606-53.513-43.358Q-53.164-43.110-53.164-42.664Q-53.164-42.274-53.400-42.032Q-53.637-41.789-53.986-41.696Q-54.336-41.602-54.722-41.602Q-55.301-41.602-55.699-41.856Q-55.769-41.731-55.818-41.674Q-55.867-41.618-55.972-41.602L-56.043-41.602Q-56.258-41.625-56.281-41.840M-51.879-42.496L-51.879-44.528L-52.301-44.528Q-52.508-44.551-52.551-44.770L-52.551-44.856Q-52.504-45.067-52.301-45.090L-51.484-45.090Q-51.289-45.067-51.238-44.856L-51.238-42.528Q-51.238-42.293-51.068-42.227Q-50.898-42.161-50.613-42.161Q-50.406-42.161-50.211-42.237Q-50.015-42.313-49.890-42.463Q-49.765-42.614-49.765-42.825L-49.765-44.528L-50.187-44.528Q-50.398-44.551-50.437-44.770L-50.437-44.856Q-50.398-45.067-50.187-45.090L-49.375-45.090Q-49.176-45.067-49.125-44.856L-49.125-42.200L-48.699-42.200Q-48.492-42.176-48.453-41.969L-48.453-41.879Q-48.492-41.664-48.699-41.641L-49.515-41.641Q-49.715-41.664-49.765-41.864Q-50.168-41.602-50.676-41.602Q-50.910-41.602-51.125-41.643Q-51.340-41.684-51.506-41.786Q-51.672-41.887-51.775-42.065Q-51.879-42.243-51.879-42.496M-47.633-41.879L-47.633-45.969L-48.054-45.969Q-48.262-45.993-48.304-46.207L-48.304-46.297Q-48.262-46.504-48.054-46.528L-47.238-46.528Q-47.043-46.504-46.992-46.297L-46.992-44.786Q-46.781-44.953-46.517-45.041Q-46.254-45.129-45.984-45.129Q-45.644-45.129-45.347-44.985Q-45.051-44.840-44.836-44.588Q-44.621-44.336-44.506-44.024Q-44.390-43.711-44.390-43.368Q-44.390-42.903-44.617-42.493Q-44.844-42.082-45.230-41.842Q-45.617-41.602-46.086-41.602Q-46.605-41.602-46.992-41.969L-46.992-41.879Q-47.043-41.661-47.238-41.641L-47.383-41.641Q-47.574-41.664-47.633-41.879M-46.129-42.161Q-45.820-42.161-45.570-42.330Q-45.320-42.500-45.176-42.782Q-45.031-43.063-45.031-43.368Q-45.031-43.657-45.156-43.936Q-45.281-44.215-45.513-44.393Q-45.746-44.571-46.047-44.571Q-46.367-44.571-46.629-44.385Q-46.890-44.200-46.992-43.899L-46.992-43.047Q-46.902-42.680-46.681-42.420Q-46.461-42.161-46.129-42.161M-41.816-40.098L-41.816-40.184Q-41.765-40.403-41.570-40.426L-41.105-40.426L-41.105-42.024Q-41.558-41.602-42.168-41.602Q-42.523-41.602-42.828-41.745Q-43.133-41.887-43.365-42.137Q-43.597-42.387-43.722-42.709Q-43.847-43.032-43.847-43.368Q-43.847-43.852-43.609-44.252Q-43.371-44.653-42.965-44.891Q-42.558-45.129-42.082-45.129Q-41.519-45.129-41.105-44.739L-41.105-44.899Q-41.054-45.110-40.855-45.129L-40.715-45.129Q-40.515-45.106-40.465-44.899L-40.465-40.426L-40-40.426Q-39.804-40.403-39.754-40.184L-39.754-40.098Q-39.804-39.887-40-39.864L-41.570-39.864Q-41.765-39.887-41.816-40.098M-42.121-42.161Q-41.750-42.161-41.474-42.414Q-41.199-42.668-41.105-43.032L-41.105-43.649Q-41.148-43.887-41.271-44.100Q-41.394-44.313-41.592-44.442Q-41.789-44.571-42.031-44.571Q-42.347-44.571-42.619-44.405Q-42.890-44.239-43.049-43.957Q-43.207-43.676-43.207-43.360Q-43.207-42.895-42.892-42.528Q-42.578-42.161-42.121-42.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(66.129 21.806)\">\u003Cpath d=\"M-34.937-41.282Q-34.937-41.336-34.914-41.403L-32.648-47.008Q-32.554-47.192-32.359-47.192Q-32.234-47.192-32.146-47.104Q-32.058-47.016-32.058-46.887Q-32.058-46.828-32.082-46.770L-34.344-41.161Q-34.445-40.977-34.625-40.977Q-34.750-40.977-34.844-41.067Q-34.937-41.157-34.937-41.282M-32.359-40.977Q-32.711-40.977-32.892-41.317Q-33.074-41.657-33.074-42.039Q-33.074-42.426-32.894-42.766Q-32.715-43.106-32.359-43.106Q-32.121-43.106-31.963-42.936Q-31.804-42.766-31.730-42.522Q-31.656-42.278-31.656-42.039Q-31.656-41.805-31.730-41.561Q-31.804-41.317-31.963-41.147Q-32.121-40.977-32.359-40.977M-32.359-41.536Q-32.277-41.567-32.230-41.735Q-32.183-41.903-32.183-42.039Q-32.183-42.176-32.230-42.346Q-32.277-42.516-32.359-42.543Q-32.445-42.516-32.496-42.348Q-32.547-42.180-32.547-42.039Q-32.547-41.911-32.496-41.739Q-32.445-41.567-32.359-41.536M-34.625-45.055Q-34.867-45.055-35.027-45.225Q-35.187-45.395-35.262-45.641Q-35.336-45.887-35.336-46.129Q-35.336-46.512-35.156-46.852Q-34.976-47.192-34.625-47.192Q-34.387-47.192-34.228-47.022Q-34.070-46.852-33.996-46.608Q-33.922-46.364-33.922-46.129Q-33.922-45.887-33.996-45.641Q-34.070-45.395-34.228-45.225Q-34.387-45.055-34.625-45.055M-34.625-45.618Q-34.535-45.661-34.492-45.817Q-34.449-45.973-34.449-46.129Q-34.449-46.258-34.496-46.434Q-34.543-46.610-34.633-46.633Q-34.648-46.633-34.678-46.598Q-34.707-46.563-34.715-46.543Q-34.808-46.356-34.808-46.129Q-34.808-45.993-34.760-45.821Q-34.711-45.649-34.625-45.618M-31.148-41.879L-31.148-41.969Q-31.090-42.176-30.898-42.200L-30.187-42.200L-30.187-44.528L-30.898-44.528Q-31.094-44.551-31.148-44.770L-31.148-44.856Q-31.090-45.067-30.898-45.090L-29.797-45.090Q-29.597-45.071-29.547-44.856L-29.547-44.528Q-29.285-44.813-28.929-44.971Q-28.574-45.129-28.187-45.129Q-27.894-45.129-27.660-44.995Q-27.426-44.860-27.426-44.594Q-27.426-44.426-27.535-44.309Q-27.644-44.192-27.812-44.192Q-27.965-44.192-28.080-44.303Q-28.195-44.414-28.195-44.571Q-28.570-44.571-28.885-44.370Q-29.199-44.168-29.373-43.834Q-29.547-43.500-29.547-43.121L-29.547-42.200L-28.601-42.200Q-28.394-42.176-28.355-41.969L-28.355-41.879Q-28.394-41.664-28.601-41.641L-30.898-41.641Q-31.090-41.664-31.148-41.879M-26.773-43.055Q-26.773-43.340-26.617-43.594Q-26.461-43.848-26.211-44.022Q-25.961-44.196-25.676-44.282Q-25.914-44.356-26.140-44.498Q-26.367-44.641-26.510-44.850Q-26.652-45.059-26.652-45.305Q-26.652-45.703-26.406-45.998Q-26.160-46.293-25.777-46.452Q-25.394-46.610-25.004-46.610Q-24.613-46.610-24.230-46.452Q-23.847-46.293-23.601-45.995Q-23.355-45.696-23.355-45.305Q-23.355-45.059-23.498-44.852Q-23.640-44.645-23.867-44.500Q-24.094-44.356-24.332-44.282Q-23.879-44.145-23.558-43.819Q-23.238-43.493-23.238-43.055Q-23.238-42.618-23.496-42.274Q-23.754-41.930-24.164-41.746Q-24.574-41.563-25.004-41.563Q-25.433-41.563-25.844-41.745Q-26.254-41.926-26.513-42.270Q-26.773-42.614-26.773-43.055M-26.133-43.055Q-26.133-42.782-25.967-42.567Q-25.801-42.352-25.539-42.237Q-25.277-42.121-25.004-42.121Q-24.730-42.121-24.471-42.237Q-24.211-42.352-24.045-42.569Q-23.879-42.786-23.879-43.055Q-23.879-43.332-24.045-43.549Q-24.211-43.766-24.471-43.883Q-24.730-44-25.004-44Q-25.277-44-25.539-43.883Q-25.801-43.766-25.967-43.551Q-26.133-43.336-26.133-43.055M-26.012-45.305Q-26.012-45.067-25.855-44.899Q-25.699-44.731-25.463-44.647Q-25.226-44.563-25.004-44.563Q-24.785-44.563-24.547-44.647Q-24.308-44.731-24.152-44.901Q-23.996-45.071-23.996-45.305Q-23.996-45.539-24.152-45.709Q-24.308-45.879-24.547-45.963Q-24.785-46.047-25.004-46.047Q-25.226-46.047-25.463-45.963Q-25.699-45.879-25.855-45.711Q-26.012-45.543-26.012-45.305M-21.160-40.528Q-21.273-40.528-21.363-40.618Q-21.453-40.707-21.453-40.817Q-21.453-40.993-21.262-41.067Q-21.043-41.118-20.871-41.276Q-20.699-41.434-20.633-41.657Q-20.656-41.657-20.687-41.641L-20.750-41.641Q-20.980-41.641-21.146-41.803Q-21.312-41.965-21.312-42.200Q-21.312-42.434-21.148-42.594Q-20.984-42.754-20.750-42.754Q-20.539-42.754-20.375-42.633Q-20.211-42.512-20.121-42.319Q-20.031-42.125-20.031-41.914Q-20.031-41.438-20.330-41.049Q-20.629-40.661-21.094-40.536Q-21.117-40.528-21.160-40.528M-17.953-41.282Q-17.953-41.336-17.929-41.403L-15.664-47.008Q-15.570-47.192-15.375-47.192Q-15.250-47.192-15.162-47.104Q-15.074-47.016-15.074-46.887Q-15.074-46.828-15.097-46.770L-17.359-41.161Q-17.461-40.977-17.640-40.977Q-17.765-40.977-17.859-41.067Q-17.953-41.157-17.953-41.282M-15.375-40.977Q-15.726-40.977-15.908-41.317Q-16.090-41.657-16.090-42.039Q-16.090-42.426-15.910-42.766Q-15.730-43.106-15.375-43.106Q-15.137-43.106-14.978-42.936Q-14.820-42.766-14.746-42.522Q-14.672-42.278-14.672-42.039Q-14.672-41.805-14.746-41.561Q-14.820-41.317-14.978-41.147Q-15.137-40.977-15.375-40.977M-15.375-41.536Q-15.293-41.567-15.246-41.735Q-15.199-41.903-15.199-42.039Q-15.199-42.176-15.246-42.346Q-15.293-42.516-15.375-42.543Q-15.461-42.516-15.512-42.348Q-15.562-42.180-15.562-42.039Q-15.562-41.911-15.512-41.739Q-15.461-41.567-15.375-41.536M-17.640-45.055Q-17.883-45.055-18.043-45.225Q-18.203-45.395-18.277-45.641Q-18.351-45.887-18.351-46.129Q-18.351-46.512-18.172-46.852Q-17.992-47.192-17.640-47.192Q-17.402-47.192-17.244-47.022Q-17.086-46.852-17.012-46.608Q-16.937-46.364-16.937-46.129Q-16.937-45.887-17.012-45.641Q-17.086-45.395-17.244-45.225Q-17.402-45.055-17.640-45.055M-17.640-45.618Q-17.551-45.661-17.508-45.817Q-17.465-45.973-17.465-46.129Q-17.465-46.258-17.512-46.434Q-17.558-46.610-17.648-46.633Q-17.664-46.633-17.693-46.598Q-17.722-46.563-17.730-46.543Q-17.824-46.356-17.824-46.129Q-17.824-45.993-17.775-45.821Q-17.726-45.649-17.640-45.618M-14.164-41.879L-14.164-41.969Q-14.105-42.176-13.914-42.200L-13.203-42.200L-13.203-44.528L-13.914-44.528Q-14.109-44.551-14.164-44.770L-14.164-44.856Q-14.105-45.067-13.914-45.090L-12.812-45.090Q-12.613-45.071-12.562-44.856L-12.562-44.528Q-12.301-44.813-11.945-44.971Q-11.590-45.129-11.203-45.129Q-10.910-45.129-10.676-44.995Q-10.441-44.860-10.441-44.594Q-10.441-44.426-10.551-44.309Q-10.660-44.192-10.828-44.192Q-10.980-44.192-11.096-44.303Q-11.211-44.414-11.211-44.571Q-11.586-44.571-11.900-44.370Q-12.215-44.168-12.388-43.834Q-12.562-43.500-12.562-43.121L-12.562-42.200L-11.617-42.200Q-11.410-42.176-11.371-41.969L-11.371-41.879Q-11.410-41.664-11.617-41.641L-13.914-41.641Q-14.105-41.664-14.164-41.879M-8.277-41.602Q-8.742-41.602-9.107-41.852Q-9.472-42.102-9.678-42.506Q-9.883-42.911-9.883-43.368Q-9.883-43.711-9.758-44.032Q-9.633-44.352-9.400-44.602Q-9.168-44.852-8.863-44.991Q-8.558-45.129-8.203-45.129Q-7.691-45.129-7.285-44.809L-7.285-45.969L-7.707-45.969Q-7.918-45.993-7.957-46.207L-7.957-46.297Q-7.918-46.504-7.707-46.528L-6.894-46.528Q-6.695-46.504-6.644-46.297L-6.644-42.200L-6.219-42.200Q-6.012-42.176-5.972-41.969L-5.972-41.879Q-6.012-41.664-6.219-41.641L-7.035-41.641Q-7.234-41.664-7.285-41.879L-7.285-42.008Q-7.480-41.817-7.742-41.709Q-8.004-41.602-8.277-41.602M-8.238-42.161Q-7.879-42.161-7.627-42.430Q-7.375-42.700-7.285-43.075L-7.285-43.907Q-7.344-44.094-7.471-44.245Q-7.597-44.395-7.775-44.483Q-7.953-44.571-8.148-44.571Q-8.457-44.571-8.707-44.401Q-8.957-44.231-9.101-43.946Q-9.246-43.661-9.246-43.360Q-9.246-42.911-8.961-42.536Q-8.676-42.161-8.238-42.161M-5.277-41.879L-5.277-41.969Q-5.226-42.176-5.031-42.200L-3.992-42.200L-3.992-44.528L-4.965-44.528Q-5.164-44.551-5.215-44.770L-5.215-44.856Q-5.164-45.067-4.965-45.090L-3.597-45.090Q-3.402-45.071-3.351-44.856L-3.351-42.200L-2.437-42.200Q-2.242-42.176-2.191-41.969L-2.191-41.879Q-2.242-41.664-2.437-41.641L-5.031-41.641Q-5.226-41.664-5.277-41.879M-4.246-46.067L-4.246-46.121Q-4.246-46.293-4.109-46.414Q-3.972-46.536-3.797-46.536Q-3.625-46.536-3.488-46.414Q-3.351-46.293-3.351-46.121L-3.351-46.067Q-3.351-45.891-3.488-45.770Q-3.625-45.649-3.797-45.649Q-3.972-45.649-4.109-45.770Q-4.246-45.891-4.246-46.067\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(157.178 22.695)\">\u003Cpath d=\"M-55.683-41.375Q-55.683-41.438-55.652-41.481L-51.906-46.739Q-52.363-46.504-52.929-46.504Q-53.582-46.504-54.187-46.825Q-54.043-46.477-54.043-46.032Q-54.043-45.672-54.164-45.301Q-54.285-44.930-54.535-44.674Q-54.785-44.418-55.148-44.418Q-55.535-44.418-55.818-44.662Q-56.101-44.907-56.248-45.280Q-56.394-45.653-56.394-46.032Q-56.394-46.411-56.248-46.782Q-56.101-47.153-55.818-47.397Q-55.535-47.641-55.148-47.641Q-54.832-47.641-54.562-47.403Q-54.226-47.098-53.797-46.926Q-53.367-46.754-52.929-46.754Q-52.437-46.754-52.019-46.967Q-51.601-47.180-51.301-47.578Q-51.258-47.641-51.164-47.641Q-51.090-47.641-51.035-47.586Q-50.980-47.532-50.980-47.457Q-50.980-47.395-51.012-47.352L-55.355-41.258Q-55.402-41.192-55.500-41.192Q-55.582-41.192-55.633-41.243Q-55.683-41.293-55.683-41.375M-55.148-44.672Q-54.875-44.672-54.687-44.897Q-54.500-45.121-54.412-45.444Q-54.324-45.766-54.324-46.032Q-54.324-46.289-54.412-46.612Q-54.500-46.934-54.687-47.159Q-54.875-47.383-55.148-47.383Q-55.535-47.383-55.678-46.955Q-55.820-46.528-55.820-46.032Q-55.820-45.524-55.679-45.098Q-55.539-44.672-55.148-44.672M-51.371-41.192Q-51.758-41.192-52.041-41.438Q-52.324-41.684-52.472-42.057Q-52.621-42.430-52.621-42.809Q-52.621-43.082-52.535-43.370Q-52.449-43.657-52.295-43.891Q-52.140-44.125-51.904-44.272Q-51.668-44.418-51.371-44.418Q-51.090-44.418-50.883-44.266Q-50.676-44.114-50.537-43.871Q-50.398-43.629-50.332-43.348Q-50.265-43.067-50.265-42.809Q-50.265-42.450-50.387-42.077Q-50.508-41.703-50.758-41.448Q-51.008-41.192-51.371-41.192M-51.371-41.450Q-51.097-41.450-50.910-41.674Q-50.722-41.899-50.635-42.221Q-50.547-42.543-50.547-42.809Q-50.547-43.067-50.635-43.389Q-50.722-43.711-50.910-43.936Q-51.097-44.161-51.371-44.161Q-51.762-44.161-51.902-43.731Q-52.043-43.301-52.043-42.809Q-52.043-42.301-51.906-41.875Q-51.769-41.450-51.371-41.450M-47.543-41.641L-49.523-41.641L-49.523-41.938Q-49.254-41.938-49.086-41.983Q-48.918-42.028-48.918-42.200L-48.918-44.336Q-48.918-44.551-48.980-44.647Q-49.043-44.743-49.160-44.764Q-49.277-44.786-49.523-44.786L-49.523-45.082L-48.355-45.168L-48.355-44.383Q-48.277-44.594-48.125-44.780Q-47.972-44.965-47.773-45.067Q-47.574-45.168-47.347-45.168Q-47.101-45.168-46.910-45.024Q-46.719-44.879-46.719-44.649Q-46.719-44.493-46.824-44.383Q-46.929-44.274-47.086-44.274Q-47.242-44.274-47.351-44.383Q-47.461-44.493-47.461-44.649Q-47.461-44.809-47.355-44.914Q-47.679-44.914-47.894-44.686Q-48.109-44.457-48.205-44.118Q-48.301-43.778-48.301-43.473L-48.301-42.200Q-48.301-42.032-48.074-41.985Q-47.847-41.938-47.543-41.938L-47.543-41.641M-44.422-41.563Q-44.902-41.563-45.310-41.807Q-45.719-42.051-45.957-42.465Q-46.195-42.879-46.195-43.368Q-46.195-43.860-45.937-44.276Q-45.679-44.692-45.248-44.930Q-44.816-45.168-44.324-45.168Q-43.703-45.168-43.254-44.731L-43.254-46.360Q-43.254-46.575-43.316-46.670Q-43.379-46.766-43.496-46.787Q-43.613-46.809-43.859-46.809L-43.859-47.106L-42.637-47.192L-42.637-42.383Q-42.637-42.172-42.574-42.077Q-42.512-41.981-42.394-41.959Q-42.277-41.938-42.027-41.938L-42.027-41.641L-43.277-41.563L-43.277-42.047Q-43.742-41.563-44.422-41.563M-44.355-41.817Q-44.015-41.817-43.722-42.008Q-43.429-42.200-43.277-42.496L-43.277-44.328Q-43.426-44.602-43.687-44.758Q-43.949-44.914-44.262-44.914Q-44.887-44.914-45.170-44.467Q-45.453-44.020-45.453-43.360Q-45.453-42.715-45.201-42.266Q-44.949-41.817-44.355-41.817M-39.660-41.641L-41.437-41.641L-41.437-41.938Q-41.164-41.938-40.996-41.985Q-40.828-42.032-40.828-42.200L-40.828-44.336Q-40.828-44.551-40.885-44.647Q-40.941-44.743-41.054-44.764Q-41.168-44.786-41.414-44.786L-41.414-45.082L-40.215-45.168L-40.215-42.200Q-40.215-42.032-40.068-41.985Q-39.922-41.938-39.660-41.938L-39.660-41.641M-41.101-46.563Q-41.101-46.754-40.967-46.885Q-40.832-47.016-40.637-47.016Q-40.515-47.016-40.412-46.953Q-40.308-46.891-40.246-46.787Q-40.183-46.684-40.183-46.563Q-40.183-46.368-40.314-46.233Q-40.445-46.098-40.637-46.098Q-40.836-46.098-40.969-46.231Q-41.101-46.364-41.101-46.563M-33.437-42.618L-38.750-42.618Q-38.828-42.625-38.877-42.674Q-38.926-42.723-38.926-42.801Q-38.926-42.871-38.879-42.922Q-38.832-42.973-38.750-42.985L-33.437-42.985Q-33.363-42.973-33.316-42.922Q-33.269-42.871-33.269-42.801Q-33.269-42.723-33.318-42.674Q-33.367-42.625-33.437-42.618M-33.437-44.305L-38.750-44.305Q-38.828-44.313-38.877-44.362Q-38.926-44.411-38.926-44.489Q-38.926-44.559-38.879-44.610Q-38.832-44.661-38.750-44.672L-33.437-44.672Q-33.363-44.661-33.316-44.610Q-33.269-44.559-33.269-44.489Q-33.269-44.411-33.318-44.362Q-33.367-44.313-33.437-44.305M-31.996-42.274Q-31.804-42-31.449-41.873Q-31.094-41.746-30.711-41.746Q-30.375-41.746-30.166-41.932Q-29.957-42.118-29.861-42.411Q-29.765-42.703-29.765-43.016Q-29.765-43.340-29.863-43.635Q-29.961-43.930-30.174-44.114Q-30.387-44.297-30.719-44.297L-31.285-44.297Q-31.316-44.297-31.346-44.327Q-31.375-44.356-31.375-44.383L-31.375-44.465Q-31.375-44.500-31.346-44.526Q-31.316-44.551-31.285-44.551L-30.804-44.586Q-30.519-44.586-30.322-44.791Q-30.125-44.996-30.029-45.291Q-29.933-45.586-29.933-45.864Q-29.933-46.243-30.133-46.481Q-30.332-46.719-30.711-46.719Q-31.031-46.719-31.320-46.612Q-31.609-46.504-31.773-46.282Q-31.594-46.282-31.471-46.155Q-31.347-46.028-31.347-45.856Q-31.347-45.684-31.472-45.559Q-31.597-45.434-31.773-45.434Q-31.945-45.434-32.070-45.559Q-32.195-45.684-32.195-45.856Q-32.195-46.223-31.971-46.471Q-31.746-46.719-31.406-46.840Q-31.066-46.961-30.711-46.961Q-30.363-46.961-30-46.840Q-29.637-46.719-29.388-46.469Q-29.140-46.219-29.140-45.864Q-29.140-45.379-29.459-44.996Q-29.777-44.614-30.254-44.442Q-29.703-44.332-29.303-43.946Q-28.902-43.559-28.902-43.024Q-28.902-42.567-29.166-42.211Q-29.429-41.856-29.851-41.664Q-30.273-41.473-30.711-41.473Q-31.121-41.473-31.513-41.608Q-31.906-41.743-32.172-42.028Q-32.437-42.313-32.437-42.731Q-32.437-42.926-32.304-43.055Q-32.172-43.184-31.980-43.184Q-31.855-43.184-31.752-43.125Q-31.648-43.067-31.586-42.961Q-31.523-42.856-31.523-42.731Q-31.523-42.536-31.658-42.405Q-31.793-42.274-31.996-42.274\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 22.695)\">\u003Cpath d=\"M-23.341-43.090L-25.595-43.090L-25.595-43.641L-23.341-43.641\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 22.695)\">\u003Cpath d=\"M-16.433-41.641L-19.226-41.641L-19.226-41.938Q-18.164-41.938-18.164-42.200L-18.164-46.368Q-18.593-46.153-19.273-46.153L-19.273-46.450Q-18.254-46.450-17.738-46.961L-17.593-46.961Q-17.519-46.942-17.500-46.864L-17.500-42.200Q-17.500-41.938-16.433-41.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(259.608 22.65)\">\u003Cpath d=\"M-52.250-41.641L-56.281-41.641Q-56.332-41.641-56.363-41.672Q-56.394-41.703-56.394-41.754L-56.394-41.856Q-56.394-41.883-56.363-41.930L-53.066-46.809L-54.242-46.809Q-54.679-46.809-55.002-46.743Q-55.324-46.676-55.554-46.465Q-55.781-46.250-55.888-45.928Q-55.996-45.606-55.996-45.258L-56.273-45.258L-56.179-47.106L-52.265-47.106Q-52.219-47.106-52.187-47.073Q-52.156-47.039-52.156-46.993L-52.156-46.907Q-52.156-46.903-52.179-46.832L-55.484-41.961L-54.250-41.961Q-53.957-41.961-53.709-41.987Q-53.461-42.012-53.232-42.094Q-53.004-42.176-52.820-42.352Q-52.582-42.590-52.500-42.944Q-52.418-43.297-52.387-43.825L-52.105-43.825L-52.250-41.641M-48.754-41.641L-51.340-41.641L-51.340-41.938Q-51.019-41.938-50.775-41.985Q-50.531-42.032-50.531-42.200L-50.531-46.543Q-50.531-46.715-50.775-46.762Q-51.019-46.809-51.340-46.809L-51.340-47.106L-46.722-47.106L-46.492-45.258L-46.773-45.258Q-46.859-45.942-47.021-46.262Q-47.183-46.582-47.523-46.696Q-47.863-46.809-48.554-46.809L-49.363-46.809Q-49.582-46.809-49.674-46.766Q-49.765-46.723-49.765-46.543L-49.765-44.520L-49.156-44.520Q-48.730-44.520-48.533-44.586Q-48.336-44.653-48.254-44.846Q-48.172-45.039-48.172-45.457L-47.890-45.457L-47.890-43.289L-48.172-43.289Q-48.172-43.707-48.254-43.901Q-48.336-44.094-48.533-44.161Q-48.730-44.227-49.156-44.227L-49.765-44.227L-49.765-42.200Q-49.765-42.036-49.447-41.987Q-49.129-41.938-48.754-41.938L-48.754-41.641M-44.012-41.473Q-44.715-41.473-45.115-41.873Q-45.515-42.274-45.660-42.883Q-45.804-43.493-45.804-44.192Q-45.804-44.715-45.734-45.178Q-45.664-45.641-45.471-46.053Q-45.277-46.465-44.920-46.713Q-44.562-46.961-44.012-46.961Q-43.461-46.961-43.103-46.713Q-42.746-46.465-42.554-46.055Q-42.363-45.645-42.293-45.176Q-42.222-44.707-42.222-44.192Q-42.222-43.493-42.365-42.885Q-42.508-42.278-42.908-41.875Q-43.308-41.473-44.012-41.473M-44.012-41.731Q-43.539-41.731-43.306-42.166Q-43.074-42.602-43.019-43.141Q-42.965-43.680-42.965-44.321Q-42.965-45.317-43.148-46.010Q-43.332-46.703-44.012-46.703Q-44.379-46.703-44.599-46.465Q-44.820-46.227-44.916-45.870Q-45.012-45.512-45.037-45.141Q-45.062-44.770-45.062-44.321Q-45.062-43.680-45.008-43.141Q-44.953-42.602-44.721-42.166Q-44.488-41.731-44.012-41.731\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(259.608 22.65)\">\u003Cpath d=\"M-38.572-41.563L-38.572-43.368Q-38.572-43.395-38.541-43.426Q-38.510-43.457-38.486-43.457L-38.381-43.457Q-38.350-43.457-38.320-43.428Q-38.291-43.399-38.291-43.368Q-38.291-42.586-37.775-42.178Q-37.260-41.770-36.451-41.770Q-36.154-41.770-35.899-41.920Q-35.643-42.071-35.492-42.327Q-35.342-42.582-35.342-42.879Q-35.342-43.278-35.588-43.582Q-35.834-43.887-36.205-43.969L-37.326-44.227Q-37.666-44.301-37.953-44.522Q-38.240-44.743-38.406-45.061Q-38.572-45.379-38.572-45.731Q-38.572-46.161-38.342-46.516Q-38.111-46.871-37.731-47.073Q-37.350-47.274-36.924-47.274Q-36.674-47.274-36.428-47.215Q-36.182-47.157-35.963-47.034Q-35.744-46.911-35.580-46.731L-35.252-47.227Q-35.221-47.274-35.182-47.274L-35.135-47.274Q-35.108-47.274-35.076-47.243Q-35.045-47.211-35.045-47.184L-35.045-45.375Q-35.045-45.352-35.076-45.321Q-35.108-45.289-35.135-45.289L-35.236-45.289Q-35.268-45.289-35.297-45.319Q-35.326-45.348-35.326-45.375Q-35.326-45.508-35.369-45.694Q-35.412-45.879-35.477-46.034Q-35.541-46.188-35.641-46.346Q-35.740-46.504-35.830-46.594Q-36.260-47-36.924-47Q-37.201-47-37.461-46.868Q-37.721-46.735-37.879-46.500Q-38.037-46.266-38.037-45.985Q-38.037-45.629-37.797-45.358Q-37.557-45.086-37.190-45L-36.076-44.746Q-35.799-44.680-35.566-44.526Q-35.334-44.371-35.164-44.153Q-34.994-43.934-34.900-43.676Q-34.807-43.418-34.807-43.129Q-34.807-42.801-34.932-42.498Q-35.057-42.196-35.291-41.959Q-35.525-41.723-35.818-41.598Q-36.111-41.473-36.451-41.473Q-37.467-41.473-38.037-42.016L-38.365-41.520Q-38.397-41.473-38.436-41.473L-38.486-41.473Q-38.510-41.473-38.541-41.504Q-38.572-41.536-38.572-41.563M-31.404-41.641L-33.990-41.641L-33.990-41.938Q-33.670-41.938-33.426-41.985Q-33.182-42.032-33.182-42.200L-33.182-46.543Q-33.182-46.715-33.426-46.762Q-33.670-46.809-33.990-46.809L-33.990-47.106L-29.373-47.106L-29.143-45.258L-29.424-45.258Q-29.510-45.942-29.672-46.262Q-29.834-46.582-30.174-46.696Q-30.514-46.809-31.205-46.809L-32.014-46.809Q-32.233-46.809-32.324-46.766Q-32.416-46.723-32.416-46.543L-32.416-44.520L-31.807-44.520Q-31.381-44.520-31.184-44.586Q-30.986-44.653-30.904-44.846Q-30.822-45.039-30.822-45.457L-30.541-45.457L-30.541-43.289L-30.822-43.289Q-30.822-43.707-30.904-43.901Q-30.986-44.094-31.184-44.161Q-31.381-44.227-31.807-44.227L-32.416-44.227L-32.416-42.200Q-32.416-42.036-32.098-41.987Q-31.779-41.938-31.404-41.938L-31.404-41.641M-26.662-41.473Q-27.365-41.473-27.766-41.873Q-28.166-42.274-28.311-42.883Q-28.455-43.493-28.455-44.192Q-28.455-44.715-28.385-45.178Q-28.315-45.641-28.121-46.053Q-27.928-46.465-27.570-46.713Q-27.213-46.961-26.662-46.961Q-26.111-46.961-25.754-46.713Q-25.397-46.465-25.205-46.055Q-25.014-45.645-24.943-45.176Q-24.873-44.707-24.873-44.192Q-24.873-43.493-25.016-42.885Q-25.158-42.278-25.559-41.875Q-25.959-41.473-26.662-41.473M-26.662-41.731Q-26.190-41.731-25.957-42.166Q-25.725-42.602-25.670-43.141Q-25.615-43.680-25.615-44.321Q-25.615-45.317-25.799-46.010Q-25.983-46.703-26.662-46.703Q-27.029-46.703-27.250-46.465Q-27.471-46.227-27.566-45.870Q-27.662-45.512-27.688-45.141Q-27.713-44.770-27.713-44.321Q-27.713-43.680-27.658-43.141Q-27.604-42.602-27.371-42.166Q-27.139-41.731-26.662-41.731\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(316.513 22.972)\">\u003Cpath d=\"M-54.245-41.529Q-54.933-41.529-55.424-42.034Q-55.915-42.539-56.152-43.289Q-56.388-44.038-56.388-44.703Q-56.388-45.362-56.152-46.104Q-55.915-46.846-55.424-47.354Q-54.933-47.862-54.245-47.862Q-53.718-47.862-53.305-47.559Q-52.892-47.256-52.631-46.773Q-52.370-46.289-52.238-45.747Q-52.106-45.205-52.106-44.703Q-52.106-44.195-52.238-43.653Q-52.370-43.111-52.634-42.622Q-52.897-42.134-53.307-41.831Q-53.718-41.529-54.245-41.529M-54.245-42.183Q-53.859-42.183-53.588-42.459Q-53.317-42.735-53.154-43.150Q-52.990-43.565-52.914-44.012Q-52.839-44.458-52.839-44.820Q-52.839-45.142-52.917-45.559Q-52.995-45.977-53.159-46.348Q-53.322-46.719-53.598-46.966Q-53.874-47.212-54.245-47.212Q-54.616-47.212-54.885-46.973Q-55.153-46.734-55.322-46.360Q-55.490-45.987-55.573-45.564Q-55.656-45.142-55.656-44.820Q-55.656-44.341-55.517-43.721Q-55.378-43.101-55.055-42.642Q-54.733-42.183-54.245-42.183M-49.587-41.641L-51.047-41.641Q-51.301-41.670-51.330-41.919L-51.330-42.012Q-51.301-42.261-51.047-42.290L-50.519-42.290L-49.318-43.863L-50.446-45.303L-50.988-45.303Q-51.237-45.332-51.266-45.581L-51.266-45.669Q-51.252-45.791-51.183-45.865Q-51.115-45.938-50.988-45.953L-49.528-45.953Q-49.294-45.923-49.250-45.669L-49.250-45.581Q-49.294-45.332-49.528-45.303L-49.719-45.303L-49.030-44.370L-48.346-45.303L-48.556-45.303Q-48.796-45.332-48.840-45.581L-48.840-45.669Q-48.820-45.787-48.744-45.862Q-48.669-45.938-48.556-45.953L-47.096-45.953Q-46.979-45.938-46.906-45.865Q-46.833-45.791-46.818-45.669L-46.818-45.581Q-46.847-45.332-47.096-45.303L-47.629-45.303L-48.727-43.863L-47.497-42.290L-46.960-42.290Q-46.838-42.276-46.764-42.207Q-46.691-42.139-46.677-42.012L-46.677-41.919Q-46.691-41.802-46.764-41.729Q-46.838-41.656-46.960-41.641L-48.420-41.641Q-48.649-41.670-48.698-41.919L-48.698-42.012Q-48.654-42.261-48.420-42.290L-48.200-42.290L-49.030-43.453L-49.816-42.290L-49.587-42.290Q-49.352-42.261-49.308-42.012L-49.308-41.919Q-49.352-41.670-49.587-41.641M-45.851-41.919L-45.851-42.012Q-45.851-42.129-45.710-42.251L-44.098-43.589Q-44.025-43.648-43.615-43.992Q-43.205-44.336-42.951-44.617Q-42.697-44.898-42.538-45.223Q-42.380-45.547-42.380-45.899Q-42.380-46.319-42.604-46.617Q-42.829-46.914-43.198-47.063Q-43.566-47.212-43.967-47.212Q-44.318-47.212-44.628-47.027Q-44.938-46.841-45.060-46.509Q-44.919-46.377-44.919-46.182Q-44.919-45.996-45.055-45.855Q-45.192-45.713-45.378-45.713Q-45.588-45.713-45.720-45.857Q-45.851-46.001-45.851-46.202Q-45.851-46.690-45.566-47.071Q-45.280-47.452-44.831-47.657Q-44.382-47.862-43.898-47.862Q-43.454-47.862-43.049-47.732Q-42.643-47.603-42.324-47.344Q-42.004-47.085-41.825-46.719Q-41.647-46.353-41.647-45.899Q-41.647-45.332-41.933-44.849Q-42.219-44.366-42.565-44.046Q-42.912-43.726-43.610-43.160L-44.660-42.290L-42.380-42.290L-42.380-42.481Q-42.350-42.730-42.101-42.759L-41.930-42.759Q-41.808-42.745-41.735-42.676Q-41.662-42.608-41.647-42.481L-41.647-41.919Q-41.662-41.802-41.735-41.729Q-41.808-41.656-41.930-41.641L-45.568-41.641Q-45.812-41.670-45.851-41.919M-40.602-41.919L-40.602-42.012Q-40.602-42.129-40.461-42.251L-38.849-43.589Q-38.776-43.648-38.366-43.992Q-37.956-44.336-37.702-44.617Q-37.448-44.898-37.289-45.223Q-37.131-45.547-37.131-45.899Q-37.131-46.319-37.355-46.617Q-37.580-46.914-37.949-47.063Q-38.317-47.212-38.718-47.212Q-39.069-47.212-39.379-47.027Q-39.689-46.841-39.811-46.509Q-39.670-46.377-39.670-46.182Q-39.670-45.996-39.806-45.855Q-39.943-45.713-40.129-45.713Q-40.339-45.713-40.471-45.857Q-40.602-46.001-40.602-46.202Q-40.602-46.690-40.317-47.071Q-40.031-47.452-39.582-47.657Q-39.133-47.862-38.649-47.862Q-38.205-47.862-37.800-47.732Q-37.394-47.603-37.075-47.344Q-36.755-47.085-36.576-46.719Q-36.398-46.353-36.398-45.899Q-36.398-45.332-36.684-44.849Q-36.970-44.366-37.316-44.046Q-37.663-43.726-38.361-43.160L-39.411-42.290L-37.131-42.290L-37.131-42.481Q-37.101-42.730-36.852-42.759L-36.681-42.759Q-36.559-42.745-36.486-42.676Q-36.413-42.608-36.398-42.481L-36.398-41.919Q-36.413-41.802-36.486-41.729Q-36.559-41.656-36.681-41.641L-40.319-41.641Q-40.563-41.670-40.602-41.919\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(362.038 22.695)\">\u003Cpath d=\"M-55.683-41.375Q-55.683-41.438-55.652-41.481L-51.906-46.739Q-52.363-46.504-52.929-46.504Q-53.582-46.504-54.187-46.825Q-54.043-46.477-54.043-46.032Q-54.043-45.672-54.164-45.301Q-54.285-44.930-54.535-44.674Q-54.785-44.418-55.148-44.418Q-55.535-44.418-55.818-44.662Q-56.101-44.907-56.248-45.280Q-56.394-45.653-56.394-46.032Q-56.394-46.411-56.248-46.782Q-56.101-47.153-55.818-47.397Q-55.535-47.641-55.148-47.641Q-54.832-47.641-54.562-47.403Q-54.226-47.098-53.797-46.926Q-53.367-46.754-52.929-46.754Q-52.437-46.754-52.019-46.967Q-51.601-47.180-51.301-47.578Q-51.258-47.641-51.164-47.641Q-51.090-47.641-51.035-47.586Q-50.980-47.532-50.980-47.457Q-50.980-47.395-51.012-47.352L-55.355-41.258Q-55.402-41.192-55.500-41.192Q-55.582-41.192-55.633-41.243Q-55.683-41.293-55.683-41.375M-55.148-44.672Q-54.875-44.672-54.687-44.897Q-54.500-45.121-54.412-45.444Q-54.324-45.766-54.324-46.032Q-54.324-46.289-54.412-46.612Q-54.500-46.934-54.687-47.159Q-54.875-47.383-55.148-47.383Q-55.535-47.383-55.678-46.955Q-55.820-46.528-55.820-46.032Q-55.820-45.524-55.679-45.098Q-55.539-44.672-55.148-44.672M-51.371-41.192Q-51.758-41.192-52.041-41.438Q-52.324-41.684-52.472-42.057Q-52.621-42.430-52.621-42.809Q-52.621-43.082-52.535-43.370Q-52.449-43.657-52.295-43.891Q-52.140-44.125-51.904-44.272Q-51.668-44.418-51.371-44.418Q-51.090-44.418-50.883-44.266Q-50.676-44.114-50.537-43.871Q-50.398-43.629-50.332-43.348Q-50.265-43.067-50.265-42.809Q-50.265-42.450-50.387-42.077Q-50.508-41.703-50.758-41.448Q-51.008-41.192-51.371-41.192M-51.371-41.450Q-51.097-41.450-50.910-41.674Q-50.722-41.899-50.635-42.221Q-50.547-42.543-50.547-42.809Q-50.547-43.067-50.635-43.389Q-50.722-43.711-50.910-43.936Q-51.097-44.161-51.371-44.161Q-51.762-44.161-51.902-43.731Q-52.043-43.301-52.043-42.809Q-52.043-42.301-51.906-41.875Q-51.769-41.450-51.371-41.450M-47.543-41.641L-49.523-41.641L-49.523-41.938Q-49.254-41.938-49.086-41.983Q-48.918-42.028-48.918-42.200L-48.918-44.336Q-48.918-44.551-48.980-44.647Q-49.043-44.743-49.160-44.764Q-49.277-44.786-49.523-44.786L-49.523-45.082L-48.355-45.168L-48.355-44.383Q-48.277-44.594-48.125-44.780Q-47.972-44.965-47.773-45.067Q-47.574-45.168-47.347-45.168Q-47.101-45.168-46.910-45.024Q-46.719-44.879-46.719-44.649Q-46.719-44.493-46.824-44.383Q-46.929-44.274-47.086-44.274Q-47.242-44.274-47.351-44.383Q-47.461-44.493-47.461-44.649Q-47.461-44.809-47.355-44.914Q-47.679-44.914-47.894-44.686Q-48.109-44.457-48.205-44.118Q-48.301-43.778-48.301-43.473L-48.301-42.200Q-48.301-42.032-48.074-41.985Q-47.847-41.938-47.543-41.938L-47.543-41.641M-44.422-41.563Q-44.902-41.563-45.310-41.807Q-45.719-42.051-45.957-42.465Q-46.195-42.879-46.195-43.368Q-46.195-43.860-45.937-44.276Q-45.679-44.692-45.248-44.930Q-44.816-45.168-44.324-45.168Q-43.703-45.168-43.254-44.731L-43.254-46.360Q-43.254-46.575-43.316-46.670Q-43.379-46.766-43.496-46.787Q-43.613-46.809-43.859-46.809L-43.859-47.106L-42.637-47.192L-42.637-42.383Q-42.637-42.172-42.574-42.077Q-42.512-41.981-42.394-41.959Q-42.277-41.938-42.027-41.938L-42.027-41.641L-43.277-41.563L-43.277-42.047Q-43.742-41.563-44.422-41.563M-44.355-41.817Q-44.015-41.817-43.722-42.008Q-43.429-42.200-43.277-42.496L-43.277-44.328Q-43.426-44.602-43.687-44.758Q-43.949-44.914-44.262-44.914Q-44.887-44.914-45.170-44.467Q-45.453-44.020-45.453-43.360Q-45.453-42.715-45.201-42.266Q-44.949-41.817-44.355-41.817M-39.660-41.641L-41.437-41.641L-41.437-41.938Q-41.164-41.938-40.996-41.985Q-40.828-42.032-40.828-42.200L-40.828-44.336Q-40.828-44.551-40.885-44.647Q-40.941-44.743-41.054-44.764Q-41.168-44.786-41.414-44.786L-41.414-45.082L-40.215-45.168L-40.215-42.200Q-40.215-42.032-40.068-41.985Q-39.922-41.938-39.660-41.938L-39.660-41.641M-41.101-46.563Q-41.101-46.754-40.967-46.885Q-40.832-47.016-40.637-47.016Q-40.515-47.016-40.412-46.953Q-40.308-46.891-40.246-46.787Q-40.183-46.684-40.183-46.563Q-40.183-46.368-40.314-46.233Q-40.445-46.098-40.637-46.098Q-40.836-46.098-40.969-46.231Q-41.101-46.364-41.101-46.563M-33.437-42.618L-38.750-42.618Q-38.828-42.625-38.877-42.674Q-38.926-42.723-38.926-42.801Q-38.926-42.871-38.879-42.922Q-38.832-42.973-38.750-42.985L-33.437-42.985Q-33.363-42.973-33.316-42.922Q-33.269-42.871-33.269-42.801Q-33.269-42.723-33.318-42.674Q-33.367-42.625-33.437-42.618M-33.437-44.305L-38.750-44.305Q-38.828-44.313-38.877-44.362Q-38.926-44.411-38.926-44.489Q-38.926-44.559-38.879-44.610Q-38.832-44.661-38.750-44.672L-33.437-44.672Q-33.363-44.661-33.316-44.610Q-33.269-44.559-33.269-44.489Q-33.269-44.411-33.318-44.362Q-33.367-44.313-33.437-44.305M-29.203-41.641L-32.363-41.641L-32.363-41.848Q-32.363-41.875-32.340-41.907L-30.988-43.305Q-30.609-43.692-30.361-43.981Q-30.113-44.270-29.939-44.627Q-29.765-44.985-29.765-45.375Q-29.765-45.723-29.898-46.016Q-30.031-46.309-30.285-46.487Q-30.539-46.664-30.894-46.664Q-31.254-46.664-31.545-46.469Q-31.836-46.274-31.980-45.946L-31.926-45.946Q-31.742-45.946-31.617-45.825Q-31.492-45.703-31.492-45.512Q-31.492-45.332-31.617-45.203Q-31.742-45.075-31.926-45.075Q-32.105-45.075-32.234-45.203Q-32.363-45.332-32.363-45.512Q-32.363-45.914-32.142-46.250Q-31.922-46.586-31.556-46.774Q-31.191-46.961-30.789-46.961Q-30.308-46.961-29.892-46.774Q-29.476-46.586-29.224-46.225Q-28.972-45.864-28.972-45.375Q-28.972-45.016-29.127-44.713Q-29.281-44.411-29.533-44.151Q-29.785-43.891-30.135-43.606Q-30.484-43.321-30.652-43.168L-31.582-42.328L-30.867-42.328Q-29.492-42.328-29.453-42.368Q-29.383-42.446-29.340-42.631Q-29.297-42.817-29.254-43.106L-28.972-43.106\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-11.765h423.946\"\u002F>\u003Cg transform=\"translate(-2.157 42.411)\">\u003Cpath d=\"M-54.746-41.473Q-55.418-41.473-55.814-41.897Q-56.211-42.321-56.363-42.940Q-56.515-43.559-56.515-44.227Q-56.515-44.887-56.244-45.520Q-55.972-46.153-55.459-46.557Q-54.945-46.961-54.273-46.961Q-53.984-46.961-53.736-46.862Q-53.488-46.762-53.342-46.561Q-53.195-46.360-53.195-46.055Q-53.195-45.950-53.246-45.858Q-53.297-45.766-53.388-45.715Q-53.480-45.664-53.586-45.664Q-53.754-45.664-53.867-45.778Q-53.980-45.891-53.980-46.055Q-53.980-46.215-53.871-46.332Q-53.762-46.450-53.594-46.450Q-53.793-46.719-54.273-46.719Q-54.691-46.719-55.023-46.442Q-55.355-46.164-55.531-45.746Q-55.730-45.246-55.730-44.344Q-55.566-44.668-55.287-44.868Q-55.008-45.067-54.660-45.067Q-54.176-45.067-53.791-44.821Q-53.406-44.575-53.193-44.166Q-52.980-43.758-52.980-43.274Q-52.980-42.782-53.211-42.370Q-53.441-41.957-53.851-41.715Q-54.262-41.473-54.746-41.473M-54.746-41.746Q-54.320-41.746-54.103-41.967Q-53.887-42.188-53.824-42.514Q-53.762-42.840-53.762-43.274Q-53.762-43.586-53.787-43.836Q-53.812-44.086-53.902-44.311Q-53.992-44.536-54.187-44.672Q-54.383-44.809-54.699-44.809Q-55.027-44.809-55.260-44.600Q-55.492-44.391-55.603-44.073Q-55.715-43.754-55.715-43.442Q-55.711-43.403-55.709-43.370Q-55.707-43.336-55.707-43.282Q-55.707-43.266-55.709-43.258Q-55.711-43.250-55.715-43.243Q-55.715-42.668-55.488-42.207Q-55.262-41.746-54.746-41.746\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(27.718 42.89)\">\u003Cpath d=\"M-54.245-41.529Q-54.933-41.529-55.424-42.034Q-55.915-42.539-56.152-43.289Q-56.388-44.038-56.388-44.703Q-56.388-45.362-56.152-46.104Q-55.915-46.846-55.424-47.354Q-54.933-47.862-54.245-47.862Q-53.718-47.862-53.305-47.559Q-52.892-47.256-52.631-46.773Q-52.370-46.289-52.238-45.747Q-52.106-45.205-52.106-44.703Q-52.106-44.195-52.238-43.653Q-52.370-43.111-52.634-42.622Q-52.897-42.134-53.307-41.831Q-53.718-41.529-54.245-41.529M-54.245-42.183Q-53.859-42.183-53.588-42.459Q-53.317-42.735-53.154-43.150Q-52.990-43.565-52.914-44.012Q-52.839-44.458-52.839-44.820Q-52.839-45.142-52.917-45.559Q-52.995-45.977-53.159-46.348Q-53.322-46.719-53.598-46.966Q-53.874-47.212-54.245-47.212Q-54.616-47.212-54.885-46.973Q-55.153-46.734-55.322-46.360Q-55.490-45.987-55.573-45.564Q-55.656-45.142-55.656-44.820Q-55.656-44.341-55.517-43.721Q-55.378-43.101-55.055-42.642Q-54.733-42.183-54.245-42.183M-49.587-41.641L-51.047-41.641Q-51.301-41.670-51.330-41.919L-51.330-42.012Q-51.301-42.261-51.047-42.290L-50.519-42.290L-49.318-43.863L-50.446-45.303L-50.988-45.303Q-51.237-45.332-51.266-45.581L-51.266-45.669Q-51.252-45.791-51.183-45.865Q-51.115-45.938-50.988-45.953L-49.528-45.953Q-49.294-45.923-49.250-45.669L-49.250-45.581Q-49.294-45.332-49.528-45.303L-49.719-45.303L-49.030-44.370L-48.346-45.303L-48.556-45.303Q-48.796-45.332-48.840-45.581L-48.840-45.669Q-48.820-45.787-48.744-45.862Q-48.669-45.938-48.556-45.953L-47.096-45.953Q-46.979-45.938-46.906-45.865Q-46.833-45.791-46.818-45.669L-46.818-45.581Q-46.847-45.332-47.096-45.303L-47.629-45.303L-48.727-43.863L-47.497-42.290L-46.960-42.290Q-46.838-42.276-46.764-42.207Q-46.691-42.139-46.677-42.012L-46.677-41.919Q-46.691-41.802-46.764-41.729Q-46.838-41.656-46.960-41.641L-48.420-41.641Q-48.649-41.670-48.698-41.919L-48.698-42.012Q-48.654-42.261-48.420-42.290L-48.200-42.290L-49.030-43.453L-49.816-42.290L-49.587-42.290Q-49.352-42.261-49.308-42.012L-49.308-41.919Q-49.352-41.670-49.587-41.641M-45.851-41.919L-45.851-42.012Q-45.851-42.129-45.710-42.251L-44.098-43.589Q-44.025-43.648-43.615-43.992Q-43.205-44.336-42.951-44.617Q-42.697-44.898-42.538-45.223Q-42.380-45.547-42.380-45.899Q-42.380-46.319-42.604-46.617Q-42.829-46.914-43.198-47.063Q-43.566-47.212-43.967-47.212Q-44.318-47.212-44.628-47.027Q-44.938-46.841-45.060-46.509Q-44.919-46.377-44.919-46.182Q-44.919-45.996-45.055-45.855Q-45.192-45.713-45.378-45.713Q-45.588-45.713-45.720-45.857Q-45.851-46.001-45.851-46.202Q-45.851-46.690-45.566-47.071Q-45.280-47.452-44.831-47.657Q-44.382-47.862-43.898-47.862Q-43.454-47.862-43.049-47.732Q-42.643-47.603-42.324-47.344Q-42.004-47.085-41.825-46.719Q-41.647-46.353-41.647-45.899Q-41.647-45.332-41.933-44.849Q-42.219-44.366-42.565-44.046Q-42.912-43.726-43.610-43.160L-44.660-42.290L-42.380-42.290L-42.380-42.481Q-42.350-42.730-42.101-42.759L-41.930-42.759Q-41.808-42.745-41.735-42.676Q-41.662-42.608-41.647-42.481L-41.647-41.919Q-41.662-41.802-41.735-41.729Q-41.808-41.656-41.930-41.641L-45.568-41.641Q-45.812-41.670-45.851-41.919M-40.602-41.919L-40.602-42.012Q-40.602-42.129-40.461-42.251L-38.849-43.589Q-38.776-43.648-38.366-43.992Q-37.956-44.336-37.702-44.617Q-37.448-44.898-37.289-45.223Q-37.131-45.547-37.131-45.899Q-37.131-46.319-37.355-46.617Q-37.580-46.914-37.949-47.063Q-38.317-47.212-38.718-47.212Q-39.069-47.212-39.379-47.027Q-39.689-46.841-39.811-46.509Q-39.670-46.377-39.670-46.182Q-39.670-45.996-39.806-45.855Q-39.943-45.713-40.129-45.713Q-40.339-45.713-40.471-45.857Q-40.602-46.001-40.602-46.202Q-40.602-46.690-40.317-47.071Q-40.031-47.452-39.582-47.657Q-39.133-47.862-38.649-47.862Q-38.205-47.862-37.800-47.732Q-37.394-47.603-37.075-47.344Q-36.755-47.085-36.576-46.719Q-36.398-46.353-36.398-45.899Q-36.398-45.332-36.684-44.849Q-36.970-44.366-37.316-44.046Q-37.663-43.726-38.361-43.160L-39.411-42.290L-37.131-42.290L-37.131-42.481Q-37.101-42.730-36.852-42.759L-36.681-42.759Q-36.559-42.745-36.486-42.676Q-36.413-42.608-36.398-42.481L-36.398-41.919Q-36.413-41.802-36.486-41.729Q-36.559-41.656-36.681-41.641L-40.319-41.641Q-40.563-41.670-40.602-41.919\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(66.129 41.39)\">\u003Cpath d=\"M-56.484-40.457L-56.484-40.512Q-56.484-40.668-56.359-40.778Q-56.234-40.887-56.074-40.887Q-55.922-40.887-55.799-40.776Q-55.676-40.664-55.676-40.512L-55.676-40.457Q-55.676-40.434-55.678-40.426Q-55.679-40.418-55.683-40.411Q-55.523-40.383-55.211-40.383Q-54.859-40.383-54.676-40.678Q-54.492-40.973-54.492-41.336L-54.492-44.528L-55.594-44.528Q-55.793-44.551-55.844-44.770L-55.844-44.856Q-55.793-45.067-55.594-45.090L-54.097-45.090Q-53.902-45.067-53.851-44.856L-53.851-41.282Q-53.851-40.911-54.033-40.571Q-54.215-40.231-54.531-40.028Q-54.847-39.825-55.219-39.825Q-55.465-39.825-55.652-39.836Q-55.840-39.848-56.037-39.911Q-56.234-39.973-56.359-40.104Q-56.484-40.235-56.484-40.457M-54.746-46.067L-54.746-46.121Q-54.746-46.293-54.609-46.414Q-54.472-46.536-54.301-46.536Q-54.125-46.536-53.988-46.414Q-53.851-46.293-53.851-46.121L-53.851-46.067Q-53.851-45.891-53.988-45.770Q-54.125-45.649-54.301-45.649Q-54.472-45.649-54.609-45.770Q-54.746-45.891-54.746-46.067M-52.551-41.879L-52.551-41.969Q-52.508-42.176-52.301-42.200L-51.879-42.200L-51.879-44.528L-52.301-44.528Q-52.508-44.551-52.551-44.770L-52.551-44.856Q-52.504-45.067-52.301-45.090L-51.484-45.090Q-51.289-45.067-51.238-44.856L-51.238-44.770L-51.246-44.746Q-51.019-44.926-50.746-45.028Q-50.472-45.129-50.179-45.129Q-49.832-45.129-49.594-44.989Q-49.355-44.848-49.240-44.590Q-49.125-44.332-49.125-43.977L-49.125-42.200L-48.699-42.200Q-48.492-42.176-48.453-41.969L-48.453-41.879Q-48.492-41.664-48.699-41.641L-50.094-41.641Q-50.289-41.664-50.340-41.879L-50.340-41.969Q-50.289-42.180-50.094-42.200L-49.765-42.200L-49.765-43.946Q-49.765-44.254-49.855-44.412Q-49.945-44.571-50.238-44.571Q-50.508-44.571-50.736-44.440Q-50.965-44.309-51.101-44.080Q-51.238-43.852-51.238-43.586L-51.238-42.200L-50.812-42.200Q-50.605-42.176-50.566-41.969L-50.566-41.879Q-50.605-41.664-50.812-41.641L-52.301-41.641Q-52.508-41.664-52.551-41.879M-44.863-43.129L-47.304-43.129Q-47.250-42.852-47.053-42.629Q-46.855-42.407-46.578-42.284Q-46.301-42.161-46.015-42.161Q-45.543-42.161-45.320-42.450Q-45.312-42.461-45.256-42.567Q-45.199-42.672-45.150-42.715Q-45.101-42.758-45.008-42.770L-44.863-42.770Q-44.672-42.750-44.613-42.536L-44.613-42.481Q-44.679-42.180-44.910-41.983Q-45.140-41.786-45.453-41.694Q-45.765-41.602-46.070-41.602Q-46.554-41.602-46.994-41.830Q-47.433-42.059-47.701-42.459Q-47.969-42.860-47.969-43.352L-47.969-43.411Q-47.969-43.879-47.722-44.282Q-47.476-44.684-47.068-44.918Q-46.660-45.153-46.191-45.153Q-45.687-45.153-45.334-44.930Q-44.980-44.707-44.797-44.319Q-44.613-43.930-44.613-43.426L-44.613-43.368Q-44.672-43.153-44.863-43.129M-47.297-43.680L-45.269-43.680Q-45.316-44.090-45.554-44.342Q-45.793-44.594-46.191-44.594Q-46.586-44.594-46.892-44.332Q-47.199-44.071-47.297-43.680\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(66.129 41.39)\">\u003Cpath d=\"M-37.746-41.563Q-38.179-41.563-38.512-41.801Q-38.844-42.039-39.064-42.428Q-39.285-42.817-39.392-43.254Q-39.500-43.692-39.500-44.090Q-39.500-44.481-39.390-44.924Q-39.281-45.368-39.064-45.748Q-38.847-46.129-38.513-46.370Q-38.179-46.610-37.746-46.610Q-37.191-46.610-36.791-46.211Q-36.390-45.813-36.193-45.227Q-35.996-44.641-35.996-44.090Q-35.996-43.536-36.193-42.948Q-36.390-42.360-36.791-41.961Q-37.191-41.563-37.746-41.563M-37.746-42.121Q-37.445-42.121-37.228-42.338Q-37.012-42.555-36.885-42.883Q-36.758-43.211-36.697-43.557Q-36.637-43.903-36.637-44.184Q-36.637-44.434-36.699-44.760Q-36.762-45.086-36.892-45.377Q-37.023-45.668-37.236-45.858Q-37.449-46.047-37.746-46.047Q-38.121-46.047-38.373-45.735Q-38.625-45.422-38.742-44.989Q-38.859-44.555-38.859-44.184Q-38.859-43.786-38.746-43.305Q-38.633-42.825-38.385-42.473Q-38.137-42.121-37.746-42.121M-35.363-41.879L-35.363-41.969Q-35.324-42.176-35.117-42.200L-34.711-42.200L-33.781-43.418L-34.652-44.528L-35.070-44.528Q-35.265-44.547-35.316-44.770L-35.316-44.856Q-35.265-45.067-35.070-45.090L-33.910-45.090Q-33.711-45.067-33.660-44.856L-33.660-44.770Q-33.711-44.551-33.910-44.528L-34.019-44.528L-33.523-43.871L-33.047-44.528L-33.164-44.528Q-33.363-44.551-33.414-44.770L-33.414-44.856Q-33.363-45.067-33.164-45.090L-32.004-45.090Q-31.808-45.071-31.758-44.856L-31.758-44.770Q-31.808-44.551-32.004-44.528L-32.414-44.528L-33.262-43.418L-32.301-42.200L-31.894-42.200Q-31.695-42.176-31.644-41.969L-31.644-41.879Q-31.683-41.664-31.894-41.641L-33.047-41.641Q-33.254-41.664-33.293-41.879L-33.293-41.969Q-33.254-42.176-33.047-42.200L-32.918-42.200L-33.523-43.055L-34.109-42.200L-33.965-42.200Q-33.758-42.176-33.719-41.969L-33.719-41.879Q-33.758-41.664-33.965-41.641L-35.117-41.641Q-35.312-41.661-35.363-41.879M-30.519-41.879L-30.519-41.969Q-30.469-42.176-30.269-42.200L-29.453-42.200L-29.453-45.383Q-29.832-45.075-30.285-45.075Q-30.515-45.075-30.566-45.305L-30.566-45.395Q-30.515-45.610-30.320-45.633Q-29.992-45.633-29.738-45.871Q-29.484-46.110-29.344-46.457Q-29.273-46.586-29.117-46.610L-29.062-46.610Q-28.867-46.590-28.816-46.375L-28.816-42.200L-28-42.200Q-27.801-42.176-27.750-41.969L-27.750-41.879Q-27.801-41.664-28-41.641L-30.269-41.641Q-30.469-41.664-30.519-41.879M-23.617-43.129L-26.058-43.129Q-26.004-42.852-25.806-42.629Q-25.609-42.407-25.332-42.284Q-25.054-42.161-24.769-42.161Q-24.297-42.161-24.074-42.450Q-24.066-42.461-24.010-42.567Q-23.953-42.672-23.904-42.715Q-23.855-42.758-23.762-42.770L-23.617-42.770Q-23.426-42.750-23.367-42.536L-23.367-42.481Q-23.433-42.180-23.664-41.983Q-23.894-41.786-24.207-41.694Q-24.519-41.602-24.824-41.602Q-25.308-41.602-25.748-41.830Q-26.187-42.059-26.455-42.459Q-26.722-42.860-26.722-43.352L-26.722-43.411Q-26.722-43.879-26.476-44.282Q-26.230-44.684-25.822-44.918Q-25.414-45.153-24.945-45.153Q-24.441-45.153-24.088-44.930Q-23.734-44.707-23.551-44.319Q-23.367-43.930-23.367-43.426L-23.367-43.368Q-23.426-43.153-23.617-43.129M-26.051-43.680L-24.023-43.680Q-24.070-44.090-24.308-44.342Q-24.547-44.594-24.945-44.594Q-25.340-44.594-25.646-44.332Q-25.953-44.071-26.051-43.680\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(157.178 42.611)\">\u003Cpath d=\"M-52.250-41.641L-56.281-41.641Q-56.332-41.641-56.363-41.672Q-56.394-41.703-56.394-41.754L-56.394-41.856Q-56.394-41.883-56.363-41.930L-53.066-46.809L-54.242-46.809Q-54.679-46.809-55.002-46.743Q-55.324-46.676-55.554-46.465Q-55.781-46.250-55.888-45.928Q-55.996-45.606-55.996-45.258L-56.273-45.258L-56.179-47.106L-52.265-47.106Q-52.219-47.106-52.187-47.073Q-52.156-47.039-52.156-46.993L-52.156-46.907Q-52.156-46.903-52.179-46.832L-55.484-41.961L-54.250-41.961Q-53.957-41.961-53.709-41.987Q-53.461-42.012-53.232-42.094Q-53.004-42.176-52.820-42.352Q-52.582-42.590-52.500-42.944Q-52.418-43.297-52.387-43.825L-52.105-43.825L-52.250-41.641M-48.754-41.641L-51.340-41.641L-51.340-41.938Q-51.019-41.938-50.775-41.985Q-50.531-42.032-50.531-42.200L-50.531-46.543Q-50.531-46.715-50.775-46.762Q-51.019-46.809-51.340-46.809L-51.340-47.106L-46.722-47.106L-46.492-45.258L-46.773-45.258Q-46.859-45.942-47.021-46.262Q-47.183-46.582-47.523-46.696Q-47.863-46.809-48.554-46.809L-49.363-46.809Q-49.582-46.809-49.674-46.766Q-49.765-46.723-49.765-46.543L-49.765-44.520L-49.156-44.520Q-48.730-44.520-48.533-44.586Q-48.336-44.653-48.254-44.846Q-48.172-45.039-48.172-45.457L-47.890-45.457L-47.890-43.289L-48.172-43.289Q-48.172-43.707-48.254-43.901Q-48.336-44.094-48.533-44.161Q-48.730-44.227-49.156-44.227L-49.765-44.227L-49.765-42.200Q-49.765-42.036-49.447-41.987Q-49.129-41.938-48.754-41.938L-48.754-41.641M-40.172-42.618L-45.484-42.618Q-45.562-42.625-45.611-42.674Q-45.660-42.723-45.660-42.801Q-45.660-42.871-45.613-42.922Q-45.566-42.973-45.484-42.985L-40.172-42.985Q-40.097-42.973-40.051-42.922Q-40.004-42.871-40.004-42.801Q-40.004-42.723-40.053-42.674Q-40.101-42.625-40.172-42.618M-40.172-44.305L-45.484-44.305Q-45.562-44.313-45.611-44.362Q-45.660-44.411-45.660-44.489Q-45.660-44.559-45.613-44.610Q-45.566-44.661-45.484-44.672L-40.172-44.672Q-40.097-44.661-40.051-44.610Q-40.004-44.559-40.004-44.489Q-40.004-44.411-40.053-44.362Q-40.101-44.313-40.172-44.305M-37.402-41.473Q-38.105-41.473-38.506-41.873Q-38.906-42.274-39.051-42.883Q-39.195-43.493-39.195-44.192Q-39.195-44.715-39.125-45.178Q-39.054-45.641-38.861-46.053Q-38.668-46.465-38.310-46.713Q-37.953-46.961-37.402-46.961Q-36.851-46.961-36.494-46.713Q-36.137-46.465-35.945-46.055Q-35.754-45.645-35.683-45.176Q-35.613-44.707-35.613-44.192Q-35.613-43.493-35.756-42.885Q-35.898-42.278-36.299-41.875Q-36.699-41.473-37.402-41.473M-37.402-41.731Q-36.929-41.731-36.697-42.166Q-36.465-42.602-36.410-43.141Q-36.355-43.680-36.355-44.321Q-36.355-45.317-36.539-46.010Q-36.722-46.703-37.402-46.703Q-37.769-46.703-37.990-46.465Q-38.211-46.227-38.306-45.870Q-38.402-45.512-38.428-45.141Q-38.453-44.770-38.453-44.321Q-38.453-43.680-38.398-43.141Q-38.344-42.602-38.111-42.166Q-37.879-41.731-37.402-41.731M-34.558-42.106Q-34.558-42.289-34.422-42.426Q-34.285-42.563-34.094-42.563Q-33.902-42.563-33.769-42.430Q-33.637-42.297-33.637-42.106Q-33.637-41.907-33.769-41.774Q-33.902-41.641-34.094-41.641Q-34.285-41.641-34.422-41.778Q-34.558-41.914-34.558-42.106M-34.558-44.633Q-34.558-44.817-34.422-44.953Q-34.285-45.090-34.094-45.090Q-33.902-45.090-33.769-44.957Q-33.637-44.825-33.637-44.633Q-33.637-44.434-33.769-44.301Q-33.902-44.168-34.094-44.168Q-34.285-44.168-34.422-44.305Q-34.558-44.442-34.558-44.633\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 42.611)\">\u003Cpath d=\"M-28.265-42.602L-28.265-44.793L-28.968-44.793L-28.968-45.047Q-28.612-45.047-28.370-45.280Q-28.128-45.512-28.017-45.860Q-27.905-46.207-27.905-46.563L-27.624-46.563L-27.624-45.090L-26.448-45.090L-26.448-44.793L-27.624-44.793L-27.624-42.618Q-27.624-42.297-27.505-42.069Q-27.386-41.840-27.105-41.840Q-26.925-41.840-26.808-41.963Q-26.691-42.086-26.638-42.266Q-26.585-42.446-26.585-42.618L-26.585-43.090L-26.304-43.090L-26.304-42.602Q-26.304-42.348-26.409-42.108Q-26.515-41.868-26.712-41.715Q-26.909-41.563-27.167-41.563Q-27.483-41.563-27.735-41.686Q-27.987-41.809-28.126-42.043Q-28.265-42.278-28.265-42.602M-25.487-42.473Q-25.487-42.957-25.085-43.252Q-24.683-43.547-24.132-43.666Q-23.581-43.786-23.089-43.786L-23.089-44.075Q-23.089-44.301-23.204-44.508Q-23.319-44.715-23.517-44.834Q-23.714-44.953-23.944-44.953Q-24.370-44.953-24.655-44.848Q-24.585-44.821-24.538-44.766Q-24.491-44.711-24.466-44.641Q-24.441-44.571-24.441-44.496Q-24.441-44.391-24.491-44.299Q-24.542-44.207-24.634-44.157Q-24.726-44.106-24.831-44.106Q-24.937-44.106-25.028-44.157Q-25.120-44.207-25.171-44.299Q-25.222-44.391-25.222-44.496Q-25.222-44.914-24.833-45.061Q-24.444-45.207-23.944-45.207Q-23.612-45.207-23.259-45.077Q-22.905-44.946-22.677-44.692Q-22.448-44.438-22.448-44.090L-22.448-42.289Q-22.448-42.157-22.376-42.047Q-22.304-41.938-22.175-41.938Q-22.050-41.938-21.982-42.043Q-21.913-42.149-21.913-42.289L-21.913-42.801L-21.632-42.801L-21.632-42.289Q-21.632-42.086-21.749-41.928Q-21.866-41.770-22.048-41.686Q-22.230-41.602-22.433-41.602Q-22.663-41.602-22.816-41.774Q-22.968-41.946-22.999-42.176Q-23.159-41.895-23.468-41.729Q-23.776-41.563-24.128-41.563Q-24.640-41.563-25.064-41.786Q-25.487-42.008-25.487-42.473M-24.800-42.473Q-24.800-42.188-24.573-42.002Q-24.347-41.817-24.054-41.817Q-23.808-41.817-23.583-41.934Q-23.358-42.051-23.224-42.254Q-23.089-42.457-23.089-42.711L-23.089-43.543Q-23.355-43.543-23.640-43.489Q-23.925-43.434-24.196-43.305Q-24.468-43.176-24.634-42.969Q-24.800-42.762-24.800-42.473M-19.515-41.641L-21.312-41.641L-21.312-41.938Q-21.042-41.938-20.874-41.983Q-20.706-42.028-20.706-42.200L-20.706-46.360Q-20.706-46.575-20.769-46.670Q-20.831-46.766-20.948-46.787Q-21.066-46.809-21.312-46.809L-21.312-47.106L-20.089-47.192L-20.089-43.426L-18.991-44.313Q-18.784-44.493-18.784-44.641Q-18.784-44.707-18.837-44.750Q-18.890-44.793-18.960-44.793L-18.960-45.090L-17.425-45.090L-17.425-44.793Q-17.956-44.793-18.554-44.313L-19.163-43.817L-18.089-42.418Q-17.952-42.243-17.845-42.135Q-17.737-42.028-17.603-41.983Q-17.468-41.938-17.241-41.938L-17.241-41.641L-18.866-41.641L-18.866-41.938Q-18.624-41.938-18.624-42.090Q-18.624-42.168-18.667-42.239Q-18.710-42.309-18.792-42.418L-19.593-43.465L-20.120-43.039L-20.120-42.200Q-20.120-42.032-19.952-41.985Q-19.784-41.938-19.515-41.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 42.611)\">\u003Cpath d=\"M-17.084-43.395Q-17.084-43.875-16.851-44.291Q-16.619-44.707-16.209-44.957Q-15.799-45.207-15.322-45.207Q-14.592-45.207-14.193-44.766Q-13.795-44.325-13.795-43.594Q-13.795-43.489-13.888-43.465L-16.338-43.465L-16.338-43.395Q-16.338-42.985-16.217-42.629Q-16.095-42.274-15.824-42.057Q-15.552-41.840-15.123-41.840Q-14.759-41.840-14.463-42.069Q-14.166-42.297-14.064-42.649Q-14.056-42.696-13.970-42.711L-13.888-42.711Q-13.795-42.684-13.795-42.602Q-13.795-42.594-13.802-42.563Q-13.865-42.336-14.004-42.153Q-14.142-41.969-14.334-41.836Q-14.525-41.703-14.744-41.633Q-14.963-41.563-15.201-41.563Q-15.572-41.563-15.910-41.700Q-16.248-41.836-16.515-42.088Q-16.783-42.340-16.933-42.680Q-17.084-43.020-17.084-43.395M-16.330-43.703L-14.369-43.703Q-14.369-44.008-14.470-44.299Q-14.572-44.590-14.789-44.772Q-15.006-44.953-15.322-44.953Q-15.623-44.953-15.853-44.766Q-16.084-44.578-16.207-44.287Q-16.330-43.996-16.330-43.703M-11.377-41.641L-13.232-41.641L-13.232-41.938Q-12.959-41.938-12.791-41.985Q-12.623-42.032-12.623-42.200L-12.623-44.336Q-12.623-44.551-12.685-44.647Q-12.748-44.743-12.867-44.764Q-12.986-44.786-13.232-44.786L-13.232-45.082L-12.041-45.168L-12.041-44.434Q-11.927-44.649-11.734-44.817Q-11.541-44.985-11.302-45.077Q-11.064-45.168-10.810-45.168Q-9.642-45.168-9.642-44.090L-9.642-42.200Q-9.642-42.032-9.472-41.985Q-9.302-41.938-9.033-41.938L-9.033-41.641L-10.888-41.641L-10.888-41.938Q-10.615-41.938-10.447-41.985Q-10.279-42.032-10.279-42.200L-10.279-44.075Q-10.279-44.457-10.400-44.686Q-10.521-44.914-10.873-44.914Q-11.185-44.914-11.439-44.752Q-11.693-44.590-11.840-44.321Q-11.986-44.051-11.986-43.754L-11.986-42.200Q-11.986-42.032-11.816-41.985Q-11.646-41.938-11.377-41.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(259.608 41.556)\">\u003Cpath d=\"M-54.515-43.090L-56.769-43.090L-56.769-43.641L-54.515-43.641\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(316.513 42.89)\">\u003Cpath d=\"M-54.245-41.529Q-54.933-41.529-55.424-42.034Q-55.915-42.539-56.152-43.289Q-56.388-44.038-56.388-44.703Q-56.388-45.362-56.152-46.104Q-55.915-46.846-55.424-47.354Q-54.933-47.862-54.245-47.862Q-53.718-47.862-53.305-47.559Q-52.892-47.256-52.631-46.773Q-52.370-46.289-52.238-45.747Q-52.106-45.205-52.106-44.703Q-52.106-44.195-52.238-43.653Q-52.370-43.111-52.634-42.622Q-52.897-42.134-53.307-41.831Q-53.718-41.529-54.245-41.529M-54.245-42.183Q-53.859-42.183-53.588-42.459Q-53.317-42.735-53.154-43.150Q-52.990-43.565-52.914-44.012Q-52.839-44.458-52.839-44.820Q-52.839-45.142-52.917-45.559Q-52.995-45.977-53.159-46.348Q-53.322-46.719-53.598-46.966Q-53.874-47.212-54.245-47.212Q-54.616-47.212-54.885-46.973Q-55.153-46.734-55.322-46.360Q-55.490-45.987-55.573-45.564Q-55.656-45.142-55.656-44.820Q-55.656-44.341-55.517-43.721Q-55.378-43.101-55.055-42.642Q-54.733-42.183-54.245-42.183M-49.587-41.641L-51.047-41.641Q-51.301-41.670-51.330-41.919L-51.330-42.012Q-51.301-42.261-51.047-42.290L-50.519-42.290L-49.318-43.863L-50.446-45.303L-50.988-45.303Q-51.237-45.332-51.266-45.581L-51.266-45.669Q-51.252-45.791-51.183-45.865Q-51.115-45.938-50.988-45.953L-49.528-45.953Q-49.294-45.923-49.250-45.669L-49.250-45.581Q-49.294-45.332-49.528-45.303L-49.719-45.303L-49.030-44.370L-48.346-45.303L-48.556-45.303Q-48.796-45.332-48.840-45.581L-48.840-45.669Q-48.820-45.787-48.744-45.862Q-48.669-45.938-48.556-45.953L-47.096-45.953Q-46.979-45.938-46.906-45.865Q-46.833-45.791-46.818-45.669L-46.818-45.581Q-46.847-45.332-47.096-45.303L-47.629-45.303L-48.727-43.863L-47.497-42.290L-46.960-42.290Q-46.838-42.276-46.764-42.207Q-46.691-42.139-46.677-42.012L-46.677-41.919Q-46.691-41.802-46.764-41.729Q-46.838-41.656-46.960-41.641L-48.420-41.641Q-48.649-41.670-48.698-41.919L-48.698-42.012Q-48.654-42.261-48.420-42.290L-48.200-42.290L-49.030-43.453L-49.816-42.290L-49.587-42.290Q-49.352-42.261-49.308-42.012L-49.308-41.919Q-49.352-41.670-49.587-41.641M-45.280-41.919L-45.280-42.012Q-45.251-42.261-44.997-42.290L-43.967-42.290L-43.967-46.412Q-44.460-45.992-45.021-45.992Q-45.138-45.992-45.231-46.067Q-45.324-46.143-45.339-46.270L-45.339-46.363Q-45.304-46.612-45.060-46.641Q-44.645-46.641-44.328-46.951Q-44.011-47.261-43.849-47.681Q-43.771-47.832-43.591-47.862L-43.517-47.862Q-43.400-47.847-43.327-47.774Q-43.254-47.701-43.239-47.583L-43.239-42.290L-42.209-42.290Q-41.960-42.261-41.930-42.012L-41.930-41.919Q-41.960-41.670-42.209-41.641L-44.997-41.641Q-45.251-41.670-45.280-41.919M-36.760-43.531L-39.831-43.531Q-39.723-42.959-39.255-42.596Q-38.786-42.232-38.190-42.232Q-37.878-42.232-37.597-42.376Q-37.316-42.520-37.209-42.779Q-37.131-43.008-36.930-43.033L-36.760-43.033Q-36.633-43.018-36.557-42.933Q-36.481-42.847-36.481-42.730Q-36.481-42.701-36.484-42.683Q-36.486-42.666-36.491-42.642Q-36.681-42.115-37.177-41.849Q-37.673-41.582-38.268-41.582Q-38.874-41.582-39.413-41.878Q-39.953-42.173-40.270-42.681Q-40.588-43.189-40.588-43.809Q-40.588-44.258-40.422-44.659Q-40.256-45.059-39.960-45.374Q-39.665-45.689-39.267-45.865Q-38.869-46.040-38.420-46.040Q-37.795-46.040-37.355-45.755Q-36.916-45.469-36.699-44.974Q-36.481-44.478-36.481-43.853Q-36.481-43.721-36.559-43.633Q-36.638-43.545-36.760-43.531M-39.821-44.170L-37.228-44.170Q-37.267-44.522-37.409-44.798Q-37.551-45.074-37.804-45.232Q-38.058-45.391-38.420-45.391Q-38.752-45.391-39.052-45.225Q-39.352-45.059-39.555-44.776Q-39.758-44.493-39.821-44.170\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(362.038 41.834)\">\u003Cpath d=\"M-54.715-41.641L-56.547-41.641L-56.547-41.938Q-56.273-41.938-56.105-41.985Q-55.937-42.032-55.937-42.200L-55.937-46.360Q-55.937-46.575-56-46.670Q-56.062-46.766-56.181-46.787Q-56.301-46.809-56.547-46.809L-56.547-47.106L-55.324-47.192L-55.324-42.200Q-55.324-42.032-55.156-41.985Q-54.988-41.938-54.715-41.938L-54.715-41.641M-54.269-43.336Q-54.269-43.840-54.013-44.272Q-53.758-44.703-53.322-44.955Q-52.887-45.207-52.387-45.207Q-52-45.207-51.658-45.063Q-51.316-44.918-51.054-44.657Q-50.793-44.395-50.650-44.059Q-50.508-43.723-50.508-43.336Q-50.508-42.844-50.771-42.434Q-51.035-42.024-51.465-41.793Q-51.894-41.563-52.387-41.563Q-52.879-41.563-53.312-41.795Q-53.746-42.028-54.008-42.436Q-54.269-42.844-54.269-43.336M-52.387-41.840Q-51.929-41.840-51.678-42.063Q-51.426-42.286-51.338-42.637Q-51.250-42.989-51.250-43.434Q-51.250-43.864-51.344-44.202Q-51.437-44.539-51.691-44.746Q-51.945-44.953-52.387-44.953Q-53.035-44.953-53.279-44.537Q-53.523-44.121-53.523-43.434Q-53.523-42.989-53.435-42.637Q-53.347-42.286-53.096-42.063Q-52.844-41.840-52.387-41.840\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(362.038 41.834)\">\u003Cpath d=\"M-49.782-43.336Q-49.782-43.840-49.526-44.272Q-49.270-44.703-48.834-44.955Q-48.399-45.207-47.899-45.207Q-47.512-45.207-47.170-45.063Q-46.829-44.918-46.567-44.657Q-46.305-44.395-46.163-44.059Q-46.020-43.723-46.020-43.336Q-46.020-42.844-46.284-42.434Q-46.547-42.024-46.977-41.793Q-47.407-41.563-47.899-41.563Q-48.391-41.563-48.825-41.795Q-49.258-42.028-49.520-42.436Q-49.782-42.844-49.782-43.336M-47.899-41.840Q-47.442-41.840-47.190-42.063Q-46.938-42.286-46.850-42.637Q-46.762-42.989-46.762-43.434Q-46.762-43.864-46.856-44.202Q-46.950-44.539-47.204-44.746Q-47.458-44.953-47.899-44.953Q-48.547-44.953-48.791-44.537Q-49.036-44.121-49.036-43.434Q-49.036-42.989-48.948-42.637Q-48.860-42.286-48.608-42.063Q-48.356-41.840-47.899-41.840M-43.653-40.090L-45.508-40.090L-45.508-40.383Q-45.239-40.383-45.071-40.428Q-44.903-40.473-44.903-40.649L-44.903-44.473Q-44.903-44.680-45.059-44.733Q-45.215-44.786-45.508-44.786L-45.508-45.082L-44.286-45.168L-44.286-44.703Q-44.055-44.926-43.741-45.047Q-43.426-45.168-43.086-45.168Q-42.614-45.168-42.209-44.922Q-41.805-44.676-41.573-44.260Q-41.340-43.844-41.340-43.368Q-41.340-42.993-41.489-42.664Q-41.637-42.336-41.907-42.084Q-42.176-41.832-42.520-41.698Q-42.864-41.563-43.223-41.563Q-43.512-41.563-43.784-41.684Q-44.055-41.805-44.262-42.016L-44.262-40.649Q-44.262-40.473-44.094-40.428Q-43.926-40.383-43.653-40.383L-43.653-40.090M-44.262-44.305L-44.262-42.465Q-44.110-42.176-43.848-41.996Q-43.586-41.817-43.278-41.817Q-42.993-41.817-42.770-41.955Q-42.547-42.094-42.395-42.325Q-42.243-42.555-42.165-42.827Q-42.086-43.098-42.086-43.368Q-42.086-43.700-42.211-44.057Q-42.336-44.414-42.584-44.651Q-42.833-44.887-43.180-44.887Q-43.504-44.887-43.799-44.731Q-44.094-44.575-44.262-44.305\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(362.038 41.834)\">\u003Cpath d=\"M-37.878-42.473Q-37.878-42.957-37.476-43.252Q-37.073-43.547-36.523-43.666Q-35.972-43.786-35.480-43.786L-35.480-44.075Q-35.480-44.301-35.595-44.508Q-35.710-44.715-35.907-44.834Q-36.105-44.953-36.335-44.953Q-36.761-44.953-37.046-44.848Q-36.976-44.821-36.929-44.766Q-36.882-44.711-36.857-44.641Q-36.831-44.571-36.831-44.496Q-36.831-44.391-36.882-44.299Q-36.933-44.207-37.025-44.157Q-37.116-44.106-37.222-44.106Q-37.327-44.106-37.419-44.157Q-37.511-44.207-37.562-44.299Q-37.612-44.391-37.612-44.496Q-37.612-44.914-37.224-45.061Q-36.835-45.207-36.335-45.207Q-36.003-45.207-35.650-45.077Q-35.296-44.946-35.068-44.692Q-34.839-44.438-34.839-44.090L-34.839-42.289Q-34.839-42.157-34.767-42.047Q-34.694-41.938-34.566-41.938Q-34.441-41.938-34.372-42.043Q-34.304-42.149-34.304-42.289L-34.304-42.801L-34.023-42.801L-34.023-42.289Q-34.023-42.086-34.140-41.928Q-34.257-41.770-34.439-41.686Q-34.620-41.602-34.823-41.602Q-35.054-41.602-35.206-41.774Q-35.359-41.946-35.390-42.176Q-35.550-41.895-35.859-41.729Q-36.167-41.563-36.519-41.563Q-37.030-41.563-37.454-41.786Q-37.878-42.008-37.878-42.473M-37.191-42.473Q-37.191-42.188-36.964-42.002Q-36.737-41.817-36.444-41.817Q-36.198-41.817-35.974-41.934Q-35.749-42.051-35.614-42.254Q-35.480-42.457-35.480-42.711L-35.480-43.543Q-35.745-43.543-36.030-43.489Q-36.316-43.434-36.587-43.305Q-36.859-43.176-37.025-42.969Q-37.191-42.762-37.191-42.473M-33.730-41.032Q-33.730-41.313-33.519-41.524Q-33.308-41.735-33.023-41.825Q-33.179-41.950-33.257-42.139Q-33.335-42.328-33.335-42.528Q-33.335-42.883-33.105-43.176Q-33.472-43.516-33.472-43.985Q-33.472-44.336-33.269-44.606Q-33.066-44.875-32.745-45.022Q-32.425-45.168-32.081-45.168Q-31.562-45.168-31.191-44.887Q-30.827-45.258-30.280-45.258Q-30.101-45.258-29.974-45.131Q-29.847-45.004-29.847-44.825Q-29.847-44.719-29.925-44.641Q-30.003-44.563-30.112-44.563Q-30.222-44.563-30.298-44.639Q-30.374-44.715-30.374-44.825Q-30.374-44.926-30.335-44.977Q-30.327-44.985-30.323-44.991Q-30.319-44.996-30.319-45Q-30.694-45-31.015-44.746Q-30.694-44.407-30.694-43.985Q-30.694-43.715-30.812-43.498Q-30.929-43.282-31.134-43.123Q-31.339-42.965-31.581-42.883Q-31.823-42.801-32.081-42.801Q-32.300-42.801-32.513-42.860Q-32.726-42.918-32.921-43.039Q-33.015-42.899-33.015-42.719Q-33.015-42.512-32.878-42.360Q-32.741-42.207-32.534-42.207L-31.839-42.207Q-31.351-42.207-30.939-42.123Q-30.526-42.039-30.247-41.782Q-29.968-41.524-29.968-41.032Q-29.968-40.668-30.288-40.436Q-30.609-40.203-31.050-40.102Q-31.491-40-31.847-40Q-32.202-40-32.646-40.102Q-33.089-40.203-33.409-40.436Q-33.730-40.668-33.730-41.032M-33.226-41.032Q-33.226-40.836-33.081-40.688Q-32.937-40.539-32.724-40.450Q-32.511-40.360-32.271-40.313Q-32.030-40.266-31.847-40.266Q-31.605-40.266-31.275-40.344Q-30.944-40.422-30.708-40.596Q-30.472-40.770-30.472-41.032Q-30.472-41.438-30.882-41.547Q-31.292-41.657-31.855-41.657L-32.534-41.657Q-32.804-41.657-33.015-41.479Q-33.226-41.301-33.226-41.032M-32.081-43.067Q-31.359-43.067-31.359-43.985Q-31.359-44.907-32.081-44.907Q-32.808-44.907-32.808-43.985Q-32.808-43.067-32.081-43.067M-29.386-42.473Q-29.386-42.957-28.984-43.252Q-28.581-43.547-28.030-43.666Q-27.480-43.786-26.987-43.786L-26.987-44.075Q-26.987-44.301-27.103-44.508Q-27.218-44.715-27.415-44.834Q-27.612-44.953-27.843-44.953Q-28.269-44.953-28.554-44.848Q-28.484-44.821-28.437-44.766Q-28.390-44.711-28.364-44.641Q-28.339-44.571-28.339-44.496Q-28.339-44.391-28.390-44.299Q-28.441-44.207-28.532-44.157Q-28.624-44.106-28.730-44.106Q-28.835-44.106-28.927-44.157Q-29.019-44.207-29.069-44.299Q-29.120-44.391-29.120-44.496Q-29.120-44.914-28.732-45.061Q-28.343-45.207-27.843-45.207Q-27.511-45.207-27.157-45.077Q-26.804-44.946-26.575-44.692Q-26.347-44.438-26.347-44.090L-26.347-42.289Q-26.347-42.157-26.275-42.047Q-26.202-41.938-26.073-41.938Q-25.948-41.938-25.880-42.043Q-25.812-42.149-25.812-42.289L-25.812-42.801L-25.530-42.801L-25.530-42.289Q-25.530-42.086-25.648-41.928Q-25.765-41.770-25.946-41.686Q-26.128-41.602-26.331-41.602Q-26.562-41.602-26.714-41.774Q-26.866-41.946-26.898-42.176Q-27.058-41.895-27.366-41.729Q-27.675-41.563-28.026-41.563Q-28.538-41.563-28.962-41.786Q-29.386-42.008-29.386-42.473M-28.698-42.473Q-28.698-42.188-28.472-42.002Q-28.245-41.817-27.952-41.817Q-27.706-41.817-27.482-41.934Q-27.257-42.051-27.122-42.254Q-26.987-42.457-26.987-42.711L-26.987-43.543Q-27.253-43.543-27.538-43.489Q-27.823-43.434-28.095-43.305Q-28.366-43.176-28.532-42.969Q-28.698-42.762-28.698-42.473M-23.378-41.641L-25.155-41.641L-25.155-41.938Q-24.882-41.938-24.714-41.985Q-24.546-42.032-24.546-42.200L-24.546-44.336Q-24.546-44.551-24.603-44.647Q-24.659-44.743-24.773-44.764Q-24.886-44.786-25.132-44.786L-25.132-45.082L-23.933-45.168L-23.933-42.200Q-23.933-42.032-23.786-41.985Q-23.640-41.938-23.378-41.938L-23.378-41.641M-24.819-46.563Q-24.819-46.754-24.685-46.885Q-24.550-47.016-24.355-47.016Q-24.234-47.016-24.130-46.953Q-24.026-46.891-23.964-46.787Q-23.901-46.684-23.901-46.563Q-23.901-46.368-24.032-46.233Q-24.163-46.098-24.355-46.098Q-24.554-46.098-24.687-46.231Q-24.819-46.364-24.819-46.563M-20.948-41.641L-22.804-41.641L-22.804-41.938Q-22.530-41.938-22.362-41.985Q-22.194-42.032-22.194-42.200L-22.194-44.336Q-22.194-44.551-22.257-44.647Q-22.319-44.743-22.439-44.764Q-22.558-44.786-22.804-44.786L-22.804-45.082L-21.612-45.168L-21.612-44.434Q-21.499-44.649-21.306-44.817Q-21.112-44.985-20.874-45.077Q-20.636-45.168-20.382-45.168Q-19.214-45.168-19.214-44.090L-19.214-42.200Q-19.214-42.032-19.044-41.985Q-18.874-41.938-18.605-41.938L-18.605-41.641L-20.460-41.641L-20.460-41.938Q-20.187-41.938-20.019-41.985Q-19.851-42.032-19.851-42.200L-19.851-44.075Q-19.851-44.457-19.972-44.686Q-20.093-44.914-20.444-44.914Q-20.757-44.914-21.011-44.752Q-21.265-44.590-21.411-44.321Q-21.558-44.051-21.558-43.754L-21.558-42.200Q-21.558-42.032-21.388-41.985Q-21.218-41.938-20.948-41.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 8.151h423.946\"\u002F>\u003Cg transform=\"translate(-2.157 68.02)\">\u003Cpath d=\"M-55.371-41.864Q-55.371-42.289-55.287-42.739Q-55.203-43.188-55.047-43.606Q-54.890-44.024-54.676-44.411Q-54.461-44.797-54.187-45.153L-53.461-46.106L-54.371-46.106Q-55.867-46.106-55.906-46.067Q-55.976-45.985-56.023-45.795Q-56.070-45.606-56.113-45.328L-56.394-45.328L-56.125-47.047L-55.844-47.047L-55.844-47.024Q-55.844-46.879-55.326-46.836Q-54.808-46.793-54.316-46.793L-52.746-46.793L-52.746-46.602Q-52.754-46.563-52.769-46.536L-53.945-45Q-54.246-44.582-54.385-44.075Q-54.523-43.567-54.554-43.073Q-54.586-42.578-54.586-41.864Q-54.586-41.758-54.637-41.666Q-54.687-41.575-54.779-41.524Q-54.871-41.473-54.980-41.473Q-55.086-41.473-55.178-41.524Q-55.269-41.575-55.320-41.666Q-55.371-41.758-55.371-41.864\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(27.718 68.497)\">\u003Cpath d=\"M-54.245-41.529Q-54.933-41.529-55.424-42.034Q-55.915-42.539-56.152-43.289Q-56.388-44.038-56.388-44.703Q-56.388-45.362-56.152-46.104Q-55.915-46.846-55.424-47.354Q-54.933-47.862-54.245-47.862Q-53.718-47.862-53.305-47.559Q-52.892-47.256-52.631-46.773Q-52.370-46.289-52.238-45.747Q-52.106-45.205-52.106-44.703Q-52.106-44.195-52.238-43.653Q-52.370-43.111-52.634-42.622Q-52.897-42.134-53.307-41.831Q-53.718-41.529-54.245-41.529M-54.245-42.183Q-53.859-42.183-53.588-42.459Q-53.317-42.735-53.154-43.150Q-52.990-43.565-52.914-44.012Q-52.839-44.458-52.839-44.820Q-52.839-45.142-52.917-45.559Q-52.995-45.977-53.159-46.348Q-53.322-46.719-53.598-46.966Q-53.874-47.212-54.245-47.212Q-54.616-47.212-54.885-46.973Q-55.153-46.734-55.322-46.360Q-55.490-45.987-55.573-45.564Q-55.656-45.142-55.656-44.820Q-55.656-44.341-55.517-43.721Q-55.378-43.101-55.055-42.642Q-54.733-42.183-54.245-42.183M-49.587-41.641L-51.047-41.641Q-51.301-41.670-51.330-41.919L-51.330-42.012Q-51.301-42.261-51.047-42.290L-50.519-42.290L-49.318-43.863L-50.446-45.303L-50.988-45.303Q-51.237-45.332-51.266-45.581L-51.266-45.669Q-51.252-45.791-51.183-45.865Q-51.115-45.938-50.988-45.953L-49.528-45.953Q-49.294-45.923-49.250-45.669L-49.250-45.581Q-49.294-45.332-49.528-45.303L-49.719-45.303L-49.030-44.370L-48.346-45.303L-48.556-45.303Q-48.796-45.332-48.840-45.581L-48.840-45.669Q-48.820-45.787-48.744-45.862Q-48.669-45.938-48.556-45.953L-47.096-45.953Q-46.979-45.938-46.906-45.865Q-46.833-45.791-46.818-45.669L-46.818-45.581Q-46.847-45.332-47.096-45.303L-47.629-45.303L-48.727-43.863L-47.497-42.290L-46.960-42.290Q-46.838-42.276-46.764-42.207Q-46.691-42.139-46.677-42.012L-46.677-41.919Q-46.691-41.802-46.764-41.729Q-46.838-41.656-46.960-41.641L-48.420-41.641Q-48.649-41.670-48.698-41.919L-48.698-42.012Q-48.654-42.261-48.420-42.290L-48.200-42.290L-49.030-43.453L-49.816-42.290L-49.587-42.290Q-49.352-42.261-49.308-42.012L-49.308-41.919Q-49.352-41.670-49.587-41.641M-45.280-41.919L-45.280-42.012Q-45.251-42.261-44.997-42.290L-43.967-42.290L-43.967-46.412Q-44.460-45.992-45.021-45.992Q-45.138-45.992-45.231-46.067Q-45.324-46.143-45.339-46.270L-45.339-46.363Q-45.304-46.612-45.060-46.641Q-44.645-46.641-44.328-46.951Q-44.011-47.261-43.849-47.681Q-43.771-47.832-43.591-47.862L-43.517-47.862Q-43.400-47.847-43.327-47.774Q-43.254-47.701-43.239-47.583L-43.239-42.290L-42.209-42.290Q-41.960-42.261-41.930-42.012L-41.930-41.919Q-41.960-41.670-42.209-41.641L-44.997-41.641Q-45.251-41.670-45.280-41.919M-36.760-43.531L-39.831-43.531Q-39.723-42.959-39.255-42.596Q-38.786-42.232-38.190-42.232Q-37.878-42.232-37.597-42.376Q-37.316-42.520-37.209-42.779Q-37.131-43.008-36.930-43.033L-36.760-43.033Q-36.633-43.018-36.557-42.933Q-36.481-42.847-36.481-42.730Q-36.481-42.701-36.484-42.683Q-36.486-42.666-36.491-42.642Q-36.681-42.115-37.177-41.849Q-37.673-41.582-38.268-41.582Q-38.874-41.582-39.413-41.878Q-39.953-42.173-40.270-42.681Q-40.588-43.189-40.588-43.809Q-40.588-44.258-40.422-44.659Q-40.256-45.059-39.960-45.374Q-39.665-45.689-39.267-45.865Q-38.869-46.040-38.420-46.040Q-37.795-46.040-37.355-45.755Q-36.916-45.469-36.699-44.974Q-36.481-44.478-36.481-43.853Q-36.481-43.721-36.559-43.633Q-36.638-43.545-36.760-43.531M-39.821-44.170L-37.228-44.170Q-37.267-44.522-37.409-44.798Q-37.551-45.074-37.804-45.232Q-38.058-45.391-38.420-45.391Q-38.752-45.391-39.052-45.225Q-39.352-45.059-39.555-44.776Q-39.758-44.493-39.821-44.170\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(66.129 67.33)\">\u003Cpath d=\"M-56.461-42.754Q-56.461-43.200-56.047-43.457Q-55.633-43.715-55.092-43.815Q-54.551-43.914-54.043-43.922Q-54.043-44.137-54.178-44.289Q-54.312-44.442-54.519-44.518Q-54.726-44.594-54.937-44.594Q-55.281-44.594-55.441-44.571L-55.441-44.512Q-55.441-44.344-55.560-44.229Q-55.679-44.114-55.844-44.114Q-56.019-44.114-56.135-44.237Q-56.250-44.360-56.250-44.528Q-56.250-44.934-55.869-45.043Q-55.488-45.153-54.929-45.153Q-54.660-45.153-54.392-45.075Q-54.125-44.996-53.900-44.846Q-53.676-44.696-53.539-44.475Q-53.402-44.254-53.402-43.977L-53.402-42.258Q-53.402-42.200-52.875-42.200Q-52.679-42.180-52.629-41.969L-52.629-41.879Q-52.679-41.664-52.875-41.641L-53.019-41.641Q-53.363-41.641-53.592-41.688Q-53.820-41.735-53.965-41.922Q-54.426-41.602-55.133-41.602Q-55.469-41.602-55.773-41.743Q-56.078-41.883-56.269-42.145Q-56.461-42.407-56.461-42.754M-55.820-42.746Q-55.820-42.473-55.578-42.317Q-55.336-42.161-55.051-42.161Q-54.832-42.161-54.599-42.219Q-54.367-42.278-54.205-42.416Q-54.043-42.555-54.043-42.778L-54.043-43.368Q-54.324-43.368-54.740-43.311Q-55.156-43.254-55.488-43.116Q-55.820-42.977-55.820-42.746M-50.758-41.602Q-51.222-41.602-51.588-41.852Q-51.953-42.102-52.158-42.506Q-52.363-42.911-52.363-43.368Q-52.363-43.711-52.238-44.032Q-52.113-44.352-51.881-44.602Q-51.648-44.852-51.344-44.991Q-51.039-45.129-50.683-45.129Q-50.172-45.129-49.765-44.809L-49.765-45.969L-50.187-45.969Q-50.398-45.993-50.437-46.207L-50.437-46.297Q-50.398-46.504-50.187-46.528L-49.375-46.528Q-49.176-46.504-49.125-46.297L-49.125-42.200L-48.699-42.200Q-48.492-42.176-48.453-41.969L-48.453-41.879Q-48.492-41.664-48.699-41.641L-49.515-41.641Q-49.715-41.664-49.765-41.879L-49.765-42.008Q-49.961-41.817-50.222-41.709Q-50.484-41.602-50.758-41.602M-50.719-42.161Q-50.359-42.161-50.107-42.430Q-49.855-42.700-49.765-43.075L-49.765-43.907Q-49.824-44.094-49.951-44.245Q-50.078-44.395-50.256-44.483Q-50.433-44.571-50.629-44.571Q-50.937-44.571-51.187-44.401Q-51.437-44.231-51.582-43.946Q-51.726-43.661-51.726-43.360Q-51.726-42.911-51.441-42.536Q-51.156-42.161-50.719-42.161M-46.512-41.602Q-46.976-41.602-47.342-41.852Q-47.707-42.102-47.912-42.506Q-48.117-42.911-48.117-43.368Q-48.117-43.711-47.992-44.032Q-47.867-44.352-47.635-44.602Q-47.402-44.852-47.097-44.991Q-46.793-45.129-46.437-45.129Q-45.926-45.129-45.519-44.809L-45.519-45.969L-45.941-45.969Q-46.152-45.993-46.191-46.207L-46.191-46.297Q-46.152-46.504-45.941-46.528L-45.129-46.528Q-44.929-46.504-44.879-46.297L-44.879-42.200L-44.453-42.200Q-44.246-42.176-44.207-41.969L-44.207-41.879Q-44.246-41.664-44.453-41.641L-45.269-41.641Q-45.469-41.664-45.519-41.879L-45.519-42.008Q-45.715-41.817-45.976-41.709Q-46.238-41.602-46.512-41.602M-46.472-42.161Q-46.113-42.161-45.861-42.430Q-45.609-42.700-45.519-43.075L-45.519-43.907Q-45.578-44.094-45.705-44.245Q-45.832-44.395-46.010-44.483Q-46.187-44.571-46.383-44.571Q-46.691-44.571-46.941-44.401Q-47.191-44.231-47.336-43.946Q-47.480-43.661-47.480-43.360Q-47.480-42.911-47.195-42.536Q-46.910-42.161-46.472-42.161M-41.816-40.098L-41.816-40.184Q-41.765-40.403-41.570-40.426L-41.105-40.426L-41.105-42.024Q-41.558-41.602-42.168-41.602Q-42.523-41.602-42.828-41.745Q-43.133-41.887-43.365-42.137Q-43.597-42.387-43.722-42.709Q-43.847-43.032-43.847-43.368Q-43.847-43.852-43.609-44.252Q-43.371-44.653-42.965-44.891Q-42.558-45.129-42.082-45.129Q-41.519-45.129-41.105-44.739L-41.105-44.899Q-41.054-45.110-40.855-45.129L-40.715-45.129Q-40.515-45.106-40.465-44.899L-40.465-40.426L-40-40.426Q-39.804-40.403-39.754-40.184L-39.754-40.098Q-39.804-39.887-40-39.864L-41.570-39.864Q-41.765-39.887-41.816-40.098M-42.121-42.161Q-41.750-42.161-41.474-42.414Q-41.199-42.668-41.105-43.032L-41.105-43.649Q-41.148-43.887-41.271-44.100Q-41.394-44.313-41.592-44.442Q-41.789-44.571-42.031-44.571Q-42.347-44.571-42.619-44.405Q-42.890-44.239-43.049-43.957Q-43.207-43.676-43.207-43.360Q-43.207-42.895-42.892-42.528Q-42.578-42.161-42.121-42.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(66.129 67.33)\">\u003Cpath d=\"M-34.937-41.282Q-34.937-41.336-34.914-41.403L-32.648-47.008Q-32.554-47.192-32.359-47.192Q-32.234-47.192-32.146-47.104Q-32.058-47.016-32.058-46.887Q-32.058-46.828-32.082-46.770L-34.344-41.161Q-34.445-40.977-34.625-40.977Q-34.750-40.977-34.844-41.067Q-34.937-41.157-34.937-41.282M-32.359-40.977Q-32.711-40.977-32.892-41.317Q-33.074-41.657-33.074-42.039Q-33.074-42.426-32.894-42.766Q-32.715-43.106-32.359-43.106Q-32.121-43.106-31.963-42.936Q-31.804-42.766-31.730-42.522Q-31.656-42.278-31.656-42.039Q-31.656-41.805-31.730-41.561Q-31.804-41.317-31.963-41.147Q-32.121-40.977-32.359-40.977M-32.359-41.536Q-32.277-41.567-32.230-41.735Q-32.183-41.903-32.183-42.039Q-32.183-42.176-32.230-42.346Q-32.277-42.516-32.359-42.543Q-32.445-42.516-32.496-42.348Q-32.547-42.180-32.547-42.039Q-32.547-41.911-32.496-41.739Q-32.445-41.567-32.359-41.536M-34.625-45.055Q-34.867-45.055-35.027-45.225Q-35.187-45.395-35.262-45.641Q-35.336-45.887-35.336-46.129Q-35.336-46.512-35.156-46.852Q-34.976-47.192-34.625-47.192Q-34.387-47.192-34.228-47.022Q-34.070-46.852-33.996-46.608Q-33.922-46.364-33.922-46.129Q-33.922-45.887-33.996-45.641Q-34.070-45.395-34.228-45.225Q-34.387-45.055-34.625-45.055M-34.625-45.618Q-34.535-45.661-34.492-45.817Q-34.449-45.973-34.449-46.129Q-34.449-46.258-34.496-46.434Q-34.543-46.610-34.633-46.633Q-34.648-46.633-34.678-46.598Q-34.707-46.563-34.715-46.543Q-34.808-46.356-34.808-46.129Q-34.808-45.993-34.760-45.821Q-34.711-45.649-34.625-45.618M-31.148-41.879L-31.148-41.969Q-31.090-42.176-30.898-42.200L-30.187-42.200L-30.187-44.528L-30.898-44.528Q-31.094-44.551-31.148-44.770L-31.148-44.856Q-31.090-45.067-30.898-45.090L-29.797-45.090Q-29.597-45.071-29.547-44.856L-29.547-44.528Q-29.285-44.813-28.929-44.971Q-28.574-45.129-28.187-45.129Q-27.894-45.129-27.660-44.995Q-27.426-44.860-27.426-44.594Q-27.426-44.426-27.535-44.309Q-27.644-44.192-27.812-44.192Q-27.965-44.192-28.080-44.303Q-28.195-44.414-28.195-44.571Q-28.570-44.571-28.885-44.370Q-29.199-44.168-29.373-43.834Q-29.547-43.500-29.547-43.121L-29.547-42.200L-28.601-42.200Q-28.394-42.176-28.355-41.969L-28.355-41.879Q-28.394-41.664-28.601-41.641L-30.898-41.641Q-31.090-41.664-31.148-41.879M-25.262-41.602Q-25.726-41.602-26.092-41.852Q-26.457-42.102-26.662-42.506Q-26.867-42.911-26.867-43.368Q-26.867-43.711-26.742-44.032Q-26.617-44.352-26.385-44.602Q-26.152-44.852-25.847-44.991Q-25.543-45.129-25.187-45.129Q-24.676-45.129-24.269-44.809L-24.269-45.969L-24.691-45.969Q-24.902-45.993-24.941-46.207L-24.941-46.297Q-24.902-46.504-24.691-46.528L-23.879-46.528Q-23.679-46.504-23.629-46.297L-23.629-42.200L-23.203-42.200Q-22.996-42.176-22.957-41.969L-22.957-41.879Q-22.996-41.664-23.203-41.641L-24.019-41.641Q-24.219-41.664-24.269-41.879L-24.269-42.008Q-24.465-41.817-24.726-41.709Q-24.988-41.602-25.262-41.602M-25.222-42.161Q-24.863-42.161-24.611-42.430Q-24.359-42.700-24.269-43.075L-24.269-43.907Q-24.328-44.094-24.455-44.245Q-24.582-44.395-24.760-44.483Q-24.937-44.571-25.133-44.571Q-25.441-44.571-25.691-44.401Q-25.941-44.231-26.086-43.946Q-26.230-43.661-26.230-43.360Q-26.230-42.911-25.945-42.536Q-25.660-42.161-25.222-42.161M-22.262-41.879L-22.262-41.969Q-22.211-42.176-22.015-42.200L-20.976-42.200L-20.976-44.528L-21.949-44.528Q-22.148-44.551-22.199-44.770L-22.199-44.856Q-22.148-45.067-21.949-45.090L-20.582-45.090Q-20.387-45.071-20.336-44.856L-20.336-42.200L-19.422-42.200Q-19.226-42.176-19.176-41.969L-19.176-41.879Q-19.226-41.664-19.422-41.641L-22.015-41.641Q-22.211-41.664-22.262-41.879M-21.230-46.067L-21.230-46.121Q-21.230-46.293-21.094-46.414Q-20.957-46.536-20.781-46.536Q-20.609-46.536-20.472-46.414Q-20.336-46.293-20.336-46.121L-20.336-46.067Q-20.336-45.891-20.472-45.770Q-20.609-45.649-20.781-45.649Q-20.957-45.649-21.094-45.770Q-21.230-45.891-21.230-46.067M-16.914-40.528Q-17.027-40.528-17.117-40.618Q-17.207-40.707-17.207-40.817Q-17.207-40.993-17.015-41.067Q-16.797-41.118-16.625-41.276Q-16.453-41.434-16.387-41.657Q-16.410-41.657-16.441-41.641L-16.504-41.641Q-16.734-41.641-16.900-41.803Q-17.066-41.965-17.066-42.200Q-17.066-42.434-16.902-42.594Q-16.738-42.754-16.504-42.754Q-16.293-42.754-16.129-42.633Q-15.965-42.512-15.875-42.319Q-15.785-42.125-15.785-41.914Q-15.785-41.438-16.084-41.049Q-16.383-40.661-16.847-40.536Q-16.871-40.528-16.914-40.528M-13.707-41.282Q-13.707-41.336-13.683-41.403L-11.418-47.008Q-11.324-47.192-11.129-47.192Q-11.004-47.192-10.916-47.104Q-10.828-47.016-10.828-46.887Q-10.828-46.828-10.851-46.770L-13.113-41.161Q-13.215-40.977-13.394-40.977Q-13.519-40.977-13.613-41.067Q-13.707-41.157-13.707-41.282M-11.129-40.977Q-11.480-40.977-11.662-41.317Q-11.844-41.657-11.844-42.039Q-11.844-42.426-11.664-42.766Q-11.484-43.106-11.129-43.106Q-10.890-43.106-10.732-42.936Q-10.574-42.766-10.500-42.522Q-10.426-42.278-10.426-42.039Q-10.426-41.805-10.500-41.561Q-10.574-41.317-10.732-41.147Q-10.890-40.977-11.129-40.977M-11.129-41.536Q-11.047-41.567-11-41.735Q-10.953-41.903-10.953-42.039Q-10.953-42.176-11-42.346Q-11.047-42.516-11.129-42.543Q-11.215-42.516-11.265-42.348Q-11.316-42.180-11.316-42.039Q-11.316-41.911-11.265-41.739Q-11.215-41.567-11.129-41.536M-13.394-45.055Q-13.637-45.055-13.797-45.225Q-13.957-45.395-14.031-45.641Q-14.105-45.887-14.105-46.129Q-14.105-46.512-13.926-46.852Q-13.746-47.192-13.394-47.192Q-13.156-47.192-12.998-47.022Q-12.840-46.852-12.765-46.608Q-12.691-46.364-12.691-46.129Q-12.691-45.887-12.765-45.641Q-12.840-45.395-12.998-45.225Q-13.156-45.055-13.394-45.055M-13.394-45.618Q-13.304-45.661-13.262-45.817Q-13.219-45.973-13.219-46.129Q-13.219-46.258-13.265-46.434Q-13.312-46.610-13.402-46.633Q-13.418-46.633-13.447-46.598Q-13.476-46.563-13.484-46.543Q-13.578-46.356-13.578-46.129Q-13.578-45.993-13.529-45.821Q-13.480-45.649-13.394-45.618M-9.918-41.879L-9.918-41.969Q-9.859-42.176-9.668-42.200L-8.957-42.200L-8.957-44.528L-9.668-44.528Q-9.863-44.551-9.918-44.770L-9.918-44.856Q-9.859-45.067-9.668-45.090L-8.566-45.090Q-8.367-45.071-8.316-44.856L-8.316-44.528Q-8.054-44.813-7.699-44.971Q-7.344-45.129-6.957-45.129Q-6.664-45.129-6.429-44.995Q-6.195-44.860-6.195-44.594Q-6.195-44.426-6.304-44.309Q-6.414-44.192-6.582-44.192Q-6.734-44.192-6.849-44.303Q-6.965-44.414-6.965-44.571Q-7.340-44.571-7.654-44.370Q-7.969-44.168-8.142-43.834Q-8.316-43.500-8.316-43.121L-8.316-42.200L-7.371-42.200Q-7.164-42.176-7.125-41.969L-7.125-41.879Q-7.164-41.664-7.371-41.641L-9.668-41.641Q-9.859-41.664-9.918-41.879M-5.488-42.754Q-5.488-43.200-5.074-43.457Q-4.660-43.715-4.119-43.815Q-3.578-43.914-3.070-43.922Q-3.070-44.137-3.205-44.289Q-3.340-44.442-3.547-44.518Q-3.754-44.594-3.965-44.594Q-4.308-44.594-4.469-44.571L-4.469-44.512Q-4.469-44.344-4.588-44.229Q-4.707-44.114-4.871-44.114Q-5.047-44.114-5.162-44.237Q-5.277-44.360-5.277-44.528Q-5.277-44.934-4.896-45.043Q-4.515-45.153-3.957-45.153Q-3.687-45.153-3.420-45.075Q-3.152-44.996-2.928-44.846Q-2.703-44.696-2.566-44.475Q-2.429-44.254-2.429-43.977L-2.429-42.258Q-2.429-42.200-1.902-42.200Q-1.707-42.180-1.656-41.969L-1.656-41.879Q-1.707-41.664-1.902-41.641L-2.047-41.641Q-2.390-41.641-2.619-41.688Q-2.847-41.735-2.992-41.922Q-3.453-41.602-4.160-41.602Q-4.496-41.602-4.801-41.743Q-5.105-41.883-5.297-42.145Q-5.488-42.407-5.488-42.754M-4.847-42.746Q-4.847-42.473-4.605-42.317Q-4.363-42.161-4.078-42.161Q-3.859-42.161-3.627-42.219Q-3.394-42.278-3.232-42.416Q-3.070-42.555-3.070-42.778L-3.070-43.368Q-3.351-43.368-3.767-43.311Q-4.183-43.254-4.515-43.116Q-4.847-42.977-4.847-42.746M-1.390-41.879L-1.390-41.969Q-1.351-42.176-1.144-42.200L-0.738-42.200L0.192-43.418L-0.679-44.528L-1.097-44.528Q-1.293-44.547-1.344-44.770L-1.344-44.856Q-1.293-45.067-1.097-45.090L0.063-45.090Q0.262-45.067 0.313-44.856L0.313-44.770Q0.262-44.551 0.063-44.528L-0.047-44.528L0.449-43.871L0.926-44.528L0.809-44.528Q0.610-44.551 0.559-44.770L0.559-44.856Q0.610-45.067 0.809-45.090L1.969-45.090Q2.164-45.071 2.215-44.856L2.215-44.770Q2.164-44.551 1.969-44.528L1.559-44.528L0.711-43.418L1.672-42.200L2.078-42.200Q2.278-42.176 2.328-41.969L2.328-41.879Q2.289-41.664 2.078-41.641L0.926-41.641Q0.719-41.664 0.680-41.879L0.680-41.969Q0.719-42.176 0.926-42.200L1.055-42.200L0.449-43.055L-0.137-42.200L0.008-42.200Q0.215-42.176 0.254-41.969L0.254-41.879Q0.215-41.664 0.008-41.641L-1.144-41.641Q-1.340-41.661-1.390-41.879\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 68.025)\">\u003Cpath d=\"M-55.683-41.375Q-55.683-41.438-55.652-41.481L-51.906-46.739Q-52.363-46.504-52.929-46.504Q-53.582-46.504-54.187-46.825Q-54.043-46.477-54.043-46.032Q-54.043-45.672-54.164-45.301Q-54.285-44.930-54.535-44.674Q-54.785-44.418-55.148-44.418Q-55.535-44.418-55.818-44.662Q-56.101-44.907-56.248-45.280Q-56.394-45.653-56.394-46.032Q-56.394-46.411-56.248-46.782Q-56.101-47.153-55.818-47.397Q-55.535-47.641-55.148-47.641Q-54.832-47.641-54.562-47.403Q-54.226-47.098-53.797-46.926Q-53.367-46.754-52.929-46.754Q-52.437-46.754-52.019-46.967Q-51.601-47.180-51.301-47.578Q-51.258-47.641-51.164-47.641Q-51.090-47.641-51.035-47.586Q-50.980-47.532-50.980-47.457Q-50.980-47.395-51.012-47.352L-55.355-41.258Q-55.402-41.192-55.500-41.192Q-55.582-41.192-55.633-41.243Q-55.683-41.293-55.683-41.375M-55.148-44.672Q-54.875-44.672-54.687-44.897Q-54.500-45.121-54.412-45.444Q-54.324-45.766-54.324-46.032Q-54.324-46.289-54.412-46.612Q-54.500-46.934-54.687-47.159Q-54.875-47.383-55.148-47.383Q-55.535-47.383-55.678-46.955Q-55.820-46.528-55.820-46.032Q-55.820-45.524-55.679-45.098Q-55.539-44.672-55.148-44.672M-51.371-41.192Q-51.758-41.192-52.041-41.438Q-52.324-41.684-52.472-42.057Q-52.621-42.430-52.621-42.809Q-52.621-43.082-52.535-43.370Q-52.449-43.657-52.295-43.891Q-52.140-44.125-51.904-44.272Q-51.668-44.418-51.371-44.418Q-51.090-44.418-50.883-44.266Q-50.676-44.114-50.537-43.871Q-50.398-43.629-50.332-43.348Q-50.265-43.067-50.265-42.809Q-50.265-42.450-50.387-42.077Q-50.508-41.703-50.758-41.448Q-51.008-41.192-51.371-41.192M-51.371-41.450Q-51.097-41.450-50.910-41.674Q-50.722-41.899-50.635-42.221Q-50.547-42.543-50.547-42.809Q-50.547-43.067-50.635-43.389Q-50.722-43.711-50.910-43.936Q-51.097-44.161-51.371-44.161Q-51.762-44.161-51.902-43.731Q-52.043-43.301-52.043-42.809Q-52.043-42.301-51.906-41.875Q-51.769-41.450-51.371-41.450M-47.543-41.641L-49.523-41.641L-49.523-41.938Q-49.254-41.938-49.086-41.983Q-48.918-42.028-48.918-42.200L-48.918-44.336Q-48.918-44.551-48.980-44.647Q-49.043-44.743-49.160-44.764Q-49.277-44.786-49.523-44.786L-49.523-45.082L-48.355-45.168L-48.355-44.383Q-48.277-44.594-48.125-44.780Q-47.972-44.965-47.773-45.067Q-47.574-45.168-47.347-45.168Q-47.101-45.168-46.910-45.024Q-46.719-44.879-46.719-44.649Q-46.719-44.493-46.824-44.383Q-46.929-44.274-47.086-44.274Q-47.242-44.274-47.351-44.383Q-47.461-44.493-47.461-44.649Q-47.461-44.809-47.355-44.914Q-47.679-44.914-47.894-44.686Q-48.109-44.457-48.205-44.118Q-48.301-43.778-48.301-43.473L-48.301-42.200Q-48.301-42.032-48.074-41.985Q-47.847-41.938-47.543-41.938L-47.543-41.641M-46.140-42.473Q-46.140-42.957-45.738-43.252Q-45.336-43.547-44.785-43.666Q-44.234-43.786-43.742-43.786L-43.742-44.075Q-43.742-44.301-43.857-44.508Q-43.972-44.715-44.170-44.834Q-44.367-44.953-44.597-44.953Q-45.023-44.953-45.308-44.848Q-45.238-44.821-45.191-44.766Q-45.144-44.711-45.119-44.641Q-45.094-44.571-45.094-44.496Q-45.094-44.391-45.144-44.299Q-45.195-44.207-45.287-44.157Q-45.379-44.106-45.484-44.106Q-45.590-44.106-45.681-44.157Q-45.773-44.207-45.824-44.299Q-45.875-44.391-45.875-44.496Q-45.875-44.914-45.486-45.061Q-45.097-45.207-44.597-45.207Q-44.265-45.207-43.912-45.077Q-43.558-44.946-43.330-44.692Q-43.101-44.438-43.101-44.090L-43.101-42.289Q-43.101-42.157-43.029-42.047Q-42.957-41.938-42.828-41.938Q-42.703-41.938-42.635-42.043Q-42.566-42.149-42.566-42.289L-42.566-42.801L-42.285-42.801L-42.285-42.289Q-42.285-42.086-42.402-41.928Q-42.519-41.770-42.701-41.686Q-42.883-41.602-43.086-41.602Q-43.316-41.602-43.469-41.774Q-43.621-41.946-43.652-42.176Q-43.812-41.895-44.121-41.729Q-44.429-41.563-44.781-41.563Q-45.293-41.563-45.717-41.786Q-46.140-42.008-46.140-42.473M-45.453-42.473Q-45.453-42.188-45.226-42.002Q-45-41.817-44.707-41.817Q-44.461-41.817-44.236-41.934Q-44.012-42.051-43.877-42.254Q-43.742-42.457-43.742-42.711L-43.742-43.543Q-44.008-43.543-44.293-43.489Q-44.578-43.434-44.849-43.305Q-45.121-43.176-45.287-42.969Q-45.453-42.762-45.453-42.473M-40.605-41.641L-42.101-41.641L-42.101-41.938Q-41.469-41.938-41.047-42.418L-40.277-43.328L-41.269-44.528Q-41.426-44.707-41.588-44.750Q-41.750-44.793-42.054-44.793L-42.054-45.090L-40.367-45.090L-40.367-44.793Q-40.461-44.793-40.537-44.750Q-40.613-44.707-40.613-44.618Q-40.613-44.575-40.582-44.528L-39.926-43.739L-39.445-44.313Q-39.328-44.450-39.328-44.586Q-39.328-44.676-39.379-44.735Q-39.429-44.793-39.512-44.793L-39.512-45.090L-38.023-45.090L-38.023-44.793Q-38.660-44.793-39.070-44.313L-39.750-43.512L-38.664-42.200Q-38.504-42.024-38.344-41.981Q-38.183-41.938-37.879-41.938L-37.879-41.641L-39.566-41.641L-39.566-41.938Q-39.476-41.938-39.398-41.981Q-39.320-42.024-39.320-42.114Q-39.320-42.137-39.351-42.200L-40.094-43.106L-40.679-42.418Q-40.797-42.282-40.797-42.145Q-40.797-42.059-40.746-41.998Q-40.695-41.938-40.605-41.938L-40.605-41.641M-31.789-42.618L-37.101-42.618Q-37.179-42.625-37.228-42.674Q-37.277-42.723-37.277-42.801Q-37.277-42.871-37.230-42.922Q-37.183-42.973-37.101-42.985L-31.789-42.985Q-31.715-42.973-31.668-42.922Q-31.621-42.871-31.621-42.801Q-31.621-42.723-31.670-42.674Q-31.719-42.625-31.789-42.618M-31.789-44.305L-37.101-44.305Q-37.179-44.313-37.228-44.362Q-37.277-44.411-37.277-44.489Q-37.277-44.559-37.230-44.610Q-37.183-44.661-37.101-44.672L-31.789-44.672Q-31.715-44.661-31.668-44.610Q-31.621-44.559-31.621-44.489Q-31.621-44.411-31.670-44.362Q-31.719-44.313-31.789-44.305M-30.347-42.274Q-30.156-42-29.801-41.873Q-29.445-41.746-29.062-41.746Q-28.726-41.746-28.517-41.932Q-28.308-42.118-28.213-42.411Q-28.117-42.703-28.117-43.016Q-28.117-43.340-28.215-43.635Q-28.312-43.930-28.525-44.114Q-28.738-44.297-29.070-44.297L-29.637-44.297Q-29.668-44.297-29.697-44.327Q-29.726-44.356-29.726-44.383L-29.726-44.465Q-29.726-44.500-29.697-44.526Q-29.668-44.551-29.637-44.551L-29.156-44.586Q-28.871-44.586-28.674-44.791Q-28.476-44.996-28.381-45.291Q-28.285-45.586-28.285-45.864Q-28.285-46.243-28.484-46.481Q-28.683-46.719-29.062-46.719Q-29.383-46.719-29.672-46.612Q-29.961-46.504-30.125-46.282Q-29.945-46.282-29.822-46.155Q-29.699-46.028-29.699-45.856Q-29.699-45.684-29.824-45.559Q-29.949-45.434-30.125-45.434Q-30.297-45.434-30.422-45.559Q-30.547-45.684-30.547-45.856Q-30.547-46.223-30.322-46.471Q-30.097-46.719-29.758-46.840Q-29.418-46.961-29.062-46.961Q-28.715-46.961-28.351-46.840Q-27.988-46.719-27.740-46.469Q-27.492-46.219-27.492-45.864Q-27.492-45.379-27.810-44.996Q-28.129-44.614-28.605-44.442Q-28.054-44.332-27.654-43.946Q-27.254-43.559-27.254-43.024Q-27.254-42.567-27.517-42.211Q-27.781-41.856-28.203-41.664Q-28.625-41.473-29.062-41.473Q-29.472-41.473-29.865-41.608Q-30.258-41.743-30.523-42.028Q-30.789-42.313-30.789-42.731Q-30.789-42.926-30.656-43.055Q-30.523-43.184-30.332-43.184Q-30.207-43.184-30.103-43.125Q-30-43.067-29.937-42.961Q-29.875-42.856-29.875-42.731Q-29.875-42.536-30.010-42.405Q-30.144-42.274-30.347-42.274M-23.773-43.457L-26.246-43.457Q-26.324-43.469-26.373-43.518Q-26.422-43.567-26.422-43.641Q-26.422-43.715-26.373-43.764Q-26.324-43.813-26.246-43.825L-23.773-43.825L-23.773-46.305Q-23.746-46.473-23.590-46.473Q-23.515-46.473-23.467-46.424Q-23.418-46.375-23.406-46.305L-23.406-43.825L-20.933-43.825Q-20.765-43.793-20.765-43.641Q-20.765-43.489-20.933-43.457L-23.406-43.457L-23.406-40.977Q-23.418-40.907-23.467-40.858Q-23.515-40.809-23.590-40.809Q-23.746-40.809-23.773-40.977L-23.773-43.457M-16.699-41.641L-19.859-41.641L-19.859-41.848Q-19.859-41.875-19.836-41.907L-18.484-43.305Q-18.105-43.692-17.857-43.981Q-17.609-44.270-17.435-44.627Q-17.262-44.985-17.262-45.375Q-17.262-45.723-17.394-46.016Q-17.527-46.309-17.781-46.487Q-18.035-46.664-18.390-46.664Q-18.750-46.664-19.041-46.469Q-19.332-46.274-19.476-45.946L-19.422-45.946Q-19.238-45.946-19.113-45.825Q-18.988-45.703-18.988-45.512Q-18.988-45.332-19.113-45.203Q-19.238-45.075-19.422-45.075Q-19.601-45.075-19.730-45.203Q-19.859-45.332-19.859-45.512Q-19.859-45.914-19.638-46.250Q-19.418-46.586-19.053-46.774Q-18.687-46.961-18.285-46.961Q-17.804-46.961-17.388-46.774Q-16.972-46.586-16.721-46.225Q-16.469-45.864-16.469-45.375Q-16.469-45.016-16.623-44.713Q-16.777-44.411-17.029-44.151Q-17.281-43.891-17.631-43.606Q-17.980-43.321-18.148-43.168L-19.078-42.328L-18.363-42.328Q-16.988-42.328-16.949-42.368Q-16.879-42.446-16.836-42.631Q-16.793-42.817-16.750-43.106L-16.469-43.106\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(259.608 68.175)\">\u003Cpath d=\"M-52.250-41.641L-56.281-41.641Q-56.332-41.641-56.363-41.672Q-56.394-41.703-56.394-41.754L-56.394-41.856Q-56.394-41.883-56.363-41.930L-53.066-46.809L-54.242-46.809Q-54.679-46.809-55.002-46.743Q-55.324-46.676-55.554-46.465Q-55.781-46.250-55.888-45.928Q-55.996-45.606-55.996-45.258L-56.273-45.258L-56.179-47.106L-52.265-47.106Q-52.219-47.106-52.187-47.073Q-52.156-47.039-52.156-46.993L-52.156-46.907Q-52.156-46.903-52.179-46.832L-55.484-41.961L-54.250-41.961Q-53.957-41.961-53.709-41.987Q-53.461-42.012-53.232-42.094Q-53.004-42.176-52.820-42.352Q-52.582-42.590-52.500-42.944Q-52.418-43.297-52.387-43.825L-52.105-43.825L-52.250-41.641M-48.754-41.641L-51.340-41.641L-51.340-41.938Q-51.019-41.938-50.775-41.985Q-50.531-42.032-50.531-42.200L-50.531-46.543Q-50.531-46.715-50.775-46.762Q-51.019-46.809-51.340-46.809L-51.340-47.106L-46.722-47.106L-46.492-45.258L-46.773-45.258Q-46.859-45.942-47.021-46.262Q-47.183-46.582-47.523-46.696Q-47.863-46.809-48.554-46.809L-49.363-46.809Q-49.582-46.809-49.674-46.766Q-49.765-46.723-49.765-46.543L-49.765-44.520L-49.156-44.520Q-48.730-44.520-48.533-44.586Q-48.336-44.653-48.254-44.846Q-48.172-45.039-48.172-45.457L-47.890-45.457L-47.890-43.289L-48.172-43.289Q-48.172-43.707-48.254-43.901Q-48.336-44.094-48.533-44.161Q-48.730-44.227-49.156-44.227L-49.765-44.227L-49.765-42.200Q-49.765-42.036-49.447-41.987Q-49.129-41.938-48.754-41.938L-48.754-41.641M-44.012-41.473Q-44.715-41.473-45.115-41.873Q-45.515-42.274-45.660-42.883Q-45.804-43.493-45.804-44.192Q-45.804-44.715-45.734-45.178Q-45.664-45.641-45.471-46.053Q-45.277-46.465-44.920-46.713Q-44.562-46.961-44.012-46.961Q-43.461-46.961-43.103-46.713Q-42.746-46.465-42.554-46.055Q-42.363-45.645-42.293-45.176Q-42.222-44.707-42.222-44.192Q-42.222-43.493-42.365-42.885Q-42.508-42.278-42.908-41.875Q-43.308-41.473-44.012-41.473M-44.012-41.731Q-43.539-41.731-43.306-42.166Q-43.074-42.602-43.019-43.141Q-42.965-43.680-42.965-44.321Q-42.965-45.317-43.148-46.010Q-43.332-46.703-44.012-46.703Q-44.379-46.703-44.599-46.465Q-44.820-46.227-44.916-45.870Q-45.012-45.512-45.037-45.141Q-45.062-44.770-45.062-44.321Q-45.062-43.680-45.008-43.141Q-44.953-42.602-44.721-42.166Q-44.488-41.731-44.012-41.731\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(259.608 68.175)\">\u003Cpath d=\"M-38.572-41.563L-38.572-43.368Q-38.572-43.395-38.541-43.426Q-38.510-43.457-38.486-43.457L-38.381-43.457Q-38.350-43.457-38.320-43.428Q-38.291-43.399-38.291-43.368Q-38.291-42.586-37.775-42.178Q-37.260-41.770-36.451-41.770Q-36.154-41.770-35.899-41.920Q-35.643-42.071-35.492-42.327Q-35.342-42.582-35.342-42.879Q-35.342-43.278-35.588-43.582Q-35.834-43.887-36.205-43.969L-37.326-44.227Q-37.666-44.301-37.953-44.522Q-38.240-44.743-38.406-45.061Q-38.572-45.379-38.572-45.731Q-38.572-46.161-38.342-46.516Q-38.111-46.871-37.731-47.073Q-37.350-47.274-36.924-47.274Q-36.674-47.274-36.428-47.215Q-36.182-47.157-35.963-47.034Q-35.744-46.911-35.580-46.731L-35.252-47.227Q-35.221-47.274-35.182-47.274L-35.135-47.274Q-35.108-47.274-35.076-47.243Q-35.045-47.211-35.045-47.184L-35.045-45.375Q-35.045-45.352-35.076-45.321Q-35.108-45.289-35.135-45.289L-35.236-45.289Q-35.268-45.289-35.297-45.319Q-35.326-45.348-35.326-45.375Q-35.326-45.508-35.369-45.694Q-35.412-45.879-35.477-46.034Q-35.541-46.188-35.641-46.346Q-35.740-46.504-35.830-46.594Q-36.260-47-36.924-47Q-37.201-47-37.461-46.868Q-37.721-46.735-37.879-46.500Q-38.037-46.266-38.037-45.985Q-38.037-45.629-37.797-45.358Q-37.557-45.086-37.190-45L-36.076-44.746Q-35.799-44.680-35.566-44.526Q-35.334-44.371-35.164-44.153Q-34.994-43.934-34.900-43.676Q-34.807-43.418-34.807-43.129Q-34.807-42.801-34.932-42.498Q-35.057-42.196-35.291-41.959Q-35.525-41.723-35.818-41.598Q-36.111-41.473-36.451-41.473Q-37.467-41.473-38.037-42.016L-38.365-41.520Q-38.397-41.473-38.436-41.473L-38.486-41.473Q-38.510-41.473-38.541-41.504Q-38.572-41.536-38.572-41.563M-31.404-41.641L-33.990-41.641L-33.990-41.938Q-33.670-41.938-33.426-41.985Q-33.182-42.032-33.182-42.200L-33.182-46.543Q-33.182-46.715-33.426-46.762Q-33.670-46.809-33.990-46.809L-33.990-47.106L-29.373-47.106L-29.143-45.258L-29.424-45.258Q-29.510-45.942-29.672-46.262Q-29.834-46.582-30.174-46.696Q-30.514-46.809-31.205-46.809L-32.014-46.809Q-32.233-46.809-32.324-46.766Q-32.416-46.723-32.416-46.543L-32.416-44.520L-31.807-44.520Q-31.381-44.520-31.184-44.586Q-30.986-44.653-30.904-44.846Q-30.822-45.039-30.822-45.457L-30.541-45.457L-30.541-43.289L-30.822-43.289Q-30.822-43.707-30.904-43.901Q-30.986-44.094-31.184-44.161Q-31.381-44.227-31.807-44.227L-32.416-44.227L-32.416-42.200Q-32.416-42.036-32.098-41.987Q-31.779-41.938-31.404-41.938L-31.404-41.641M-26.662-41.473Q-27.365-41.473-27.766-41.873Q-28.166-42.274-28.311-42.883Q-28.455-43.493-28.455-44.192Q-28.455-44.715-28.385-45.178Q-28.315-45.641-28.121-46.053Q-27.928-46.465-27.570-46.713Q-27.213-46.961-26.662-46.961Q-26.111-46.961-25.754-46.713Q-25.397-46.465-25.205-46.055Q-25.014-45.645-24.943-45.176Q-24.873-44.707-24.873-44.192Q-24.873-43.493-25.016-42.885Q-25.158-42.278-25.559-41.875Q-25.959-41.473-26.662-41.473M-26.662-41.731Q-26.190-41.731-25.957-42.166Q-25.725-42.602-25.670-43.141Q-25.615-43.680-25.615-44.321Q-25.615-45.317-25.799-46.010Q-25.983-46.703-26.662-46.703Q-27.029-46.703-27.250-46.465Q-27.471-46.227-27.566-45.870Q-27.662-45.512-27.688-45.141Q-27.713-44.770-27.713-44.321Q-27.713-43.680-27.658-43.141Q-27.604-42.602-27.371-42.166Q-27.139-41.731-26.662-41.731\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(316.513 68.497)\">\u003Cpath d=\"M-54.245-41.529Q-54.933-41.529-55.424-42.034Q-55.915-42.539-56.152-43.289Q-56.388-44.038-56.388-44.703Q-56.388-45.362-56.152-46.104Q-55.915-46.846-55.424-47.354Q-54.933-47.862-54.245-47.862Q-53.718-47.862-53.305-47.559Q-52.892-47.256-52.631-46.773Q-52.370-46.289-52.238-45.747Q-52.106-45.205-52.106-44.703Q-52.106-44.195-52.238-43.653Q-52.370-43.111-52.634-42.622Q-52.897-42.134-53.307-41.831Q-53.718-41.529-54.245-41.529M-54.245-42.183Q-53.859-42.183-53.588-42.459Q-53.317-42.735-53.154-43.150Q-52.990-43.565-52.914-44.012Q-52.839-44.458-52.839-44.820Q-52.839-45.142-52.917-45.559Q-52.995-45.977-53.159-46.348Q-53.322-46.719-53.598-46.966Q-53.874-47.212-54.245-47.212Q-54.616-47.212-54.885-46.973Q-55.153-46.734-55.322-46.360Q-55.490-45.987-55.573-45.564Q-55.656-45.142-55.656-44.820Q-55.656-44.341-55.517-43.721Q-55.378-43.101-55.055-42.642Q-54.733-42.183-54.245-42.183M-49.587-41.641L-51.047-41.641Q-51.301-41.670-51.330-41.919L-51.330-42.012Q-51.301-42.261-51.047-42.290L-50.519-42.290L-49.318-43.863L-50.446-45.303L-50.988-45.303Q-51.237-45.332-51.266-45.581L-51.266-45.669Q-51.252-45.791-51.183-45.865Q-51.115-45.938-50.988-45.953L-49.528-45.953Q-49.294-45.923-49.250-45.669L-49.250-45.581Q-49.294-45.332-49.528-45.303L-49.719-45.303L-49.030-44.370L-48.346-45.303L-48.556-45.303Q-48.796-45.332-48.840-45.581L-48.840-45.669Q-48.820-45.787-48.744-45.862Q-48.669-45.938-48.556-45.953L-47.096-45.953Q-46.979-45.938-46.906-45.865Q-46.833-45.791-46.818-45.669L-46.818-45.581Q-46.847-45.332-47.096-45.303L-47.629-45.303L-48.727-43.863L-47.497-42.290L-46.960-42.290Q-46.838-42.276-46.764-42.207Q-46.691-42.139-46.677-42.012L-46.677-41.919Q-46.691-41.802-46.764-41.729Q-46.838-41.656-46.960-41.641L-48.420-41.641Q-48.649-41.670-48.698-41.919L-48.698-42.012Q-48.654-42.261-48.420-42.290L-48.200-42.290L-49.030-43.453L-49.816-42.290L-49.587-42.290Q-49.352-42.261-49.308-42.012L-49.308-41.919Q-49.352-41.670-49.587-41.641M-45.851-41.919L-45.851-42.012Q-45.851-42.129-45.710-42.251L-44.098-43.589Q-44.025-43.648-43.615-43.992Q-43.205-44.336-42.951-44.617Q-42.697-44.898-42.538-45.223Q-42.380-45.547-42.380-45.899Q-42.380-46.319-42.604-46.617Q-42.829-46.914-43.198-47.063Q-43.566-47.212-43.967-47.212Q-44.318-47.212-44.628-47.027Q-44.938-46.841-45.060-46.509Q-44.919-46.377-44.919-46.182Q-44.919-45.996-45.055-45.855Q-45.192-45.713-45.378-45.713Q-45.588-45.713-45.720-45.857Q-45.851-46.001-45.851-46.202Q-45.851-46.690-45.566-47.071Q-45.280-47.452-44.831-47.657Q-44.382-47.862-43.898-47.862Q-43.454-47.862-43.049-47.732Q-42.643-47.603-42.324-47.344Q-42.004-47.085-41.825-46.719Q-41.647-46.353-41.647-45.899Q-41.647-45.332-41.933-44.849Q-42.219-44.366-42.565-44.046Q-42.912-43.726-43.610-43.160L-44.660-42.290L-42.380-42.290L-42.380-42.481Q-42.350-42.730-42.101-42.759L-41.930-42.759Q-41.808-42.745-41.735-42.676Q-41.662-42.608-41.647-42.481L-41.647-41.919Q-41.662-41.802-41.735-41.729Q-41.808-41.656-41.930-41.641L-45.568-41.641Q-45.812-41.670-45.851-41.919M-38.498-41.529Q-39.186-41.529-39.677-42.034Q-40.168-42.539-40.405-43.289Q-40.641-44.038-40.641-44.703Q-40.641-45.362-40.405-46.104Q-40.168-46.846-39.677-47.354Q-39.186-47.862-38.498-47.862Q-37.971-47.862-37.558-47.559Q-37.145-47.256-36.884-46.773Q-36.623-46.289-36.491-45.747Q-36.359-45.205-36.359-44.703Q-36.359-44.195-36.491-43.653Q-36.623-43.111-36.887-42.622Q-37.150-42.134-37.560-41.831Q-37.971-41.529-38.498-41.529M-38.498-42.183Q-38.112-42.183-37.841-42.459Q-37.570-42.735-37.407-43.150Q-37.243-43.565-37.167-44.012Q-37.092-44.458-37.092-44.820Q-37.092-45.142-37.170-45.559Q-37.248-45.977-37.411-46.348Q-37.575-46.719-37.851-46.966Q-38.127-47.212-38.498-47.212Q-38.869-47.212-39.138-46.973Q-39.406-46.734-39.575-46.360Q-39.743-45.987-39.826-45.564Q-39.909-45.142-39.909-44.820Q-39.909-44.341-39.770-43.721Q-39.631-43.101-39.308-42.642Q-38.986-42.183-38.498-42.183\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(362.038 68.22)\">\u003Cpath d=\"M-55.683-41.375Q-55.683-41.438-55.652-41.481L-51.906-46.739Q-52.363-46.504-52.929-46.504Q-53.582-46.504-54.187-46.825Q-54.043-46.477-54.043-46.032Q-54.043-45.672-54.164-45.301Q-54.285-44.930-54.535-44.674Q-54.785-44.418-55.148-44.418Q-55.535-44.418-55.818-44.662Q-56.101-44.907-56.248-45.280Q-56.394-45.653-56.394-46.032Q-56.394-46.411-56.248-46.782Q-56.101-47.153-55.818-47.397Q-55.535-47.641-55.148-47.641Q-54.832-47.641-54.562-47.403Q-54.226-47.098-53.797-46.926Q-53.367-46.754-52.929-46.754Q-52.437-46.754-52.019-46.967Q-51.601-47.180-51.301-47.578Q-51.258-47.641-51.164-47.641Q-51.090-47.641-51.035-47.586Q-50.980-47.532-50.980-47.457Q-50.980-47.395-51.012-47.352L-55.355-41.258Q-55.402-41.192-55.500-41.192Q-55.582-41.192-55.633-41.243Q-55.683-41.293-55.683-41.375M-55.148-44.672Q-54.875-44.672-54.687-44.897Q-54.500-45.121-54.412-45.444Q-54.324-45.766-54.324-46.032Q-54.324-46.289-54.412-46.612Q-54.500-46.934-54.687-47.159Q-54.875-47.383-55.148-47.383Q-55.535-47.383-55.678-46.955Q-55.820-46.528-55.820-46.032Q-55.820-45.524-55.679-45.098Q-55.539-44.672-55.148-44.672M-51.371-41.192Q-51.758-41.192-52.041-41.438Q-52.324-41.684-52.472-42.057Q-52.621-42.430-52.621-42.809Q-52.621-43.082-52.535-43.370Q-52.449-43.657-52.295-43.891Q-52.140-44.125-51.904-44.272Q-51.668-44.418-51.371-44.418Q-51.090-44.418-50.883-44.266Q-50.676-44.114-50.537-43.871Q-50.398-43.629-50.332-43.348Q-50.265-43.067-50.265-42.809Q-50.265-42.450-50.387-42.077Q-50.508-41.703-50.758-41.448Q-51.008-41.192-51.371-41.192M-51.371-41.450Q-51.097-41.450-50.910-41.674Q-50.722-41.899-50.635-42.221Q-50.547-42.543-50.547-42.809Q-50.547-43.067-50.635-43.389Q-50.722-43.711-50.910-43.936Q-51.097-44.161-51.371-44.161Q-51.762-44.161-51.902-43.731Q-52.043-43.301-52.043-42.809Q-52.043-42.301-51.906-41.875Q-51.769-41.450-51.371-41.450M-47.543-41.641L-49.523-41.641L-49.523-41.938Q-49.254-41.938-49.086-41.983Q-48.918-42.028-48.918-42.200L-48.918-44.336Q-48.918-44.551-48.980-44.647Q-49.043-44.743-49.160-44.764Q-49.277-44.786-49.523-44.786L-49.523-45.082L-48.355-45.168L-48.355-44.383Q-48.277-44.594-48.125-44.780Q-47.972-44.965-47.773-45.067Q-47.574-45.168-47.347-45.168Q-47.101-45.168-46.910-45.024Q-46.719-44.879-46.719-44.649Q-46.719-44.493-46.824-44.383Q-46.929-44.274-47.086-44.274Q-47.242-44.274-47.351-44.383Q-47.461-44.493-47.461-44.649Q-47.461-44.809-47.355-44.914Q-47.679-44.914-47.894-44.686Q-48.109-44.457-48.205-44.118Q-48.301-43.778-48.301-43.473L-48.301-42.200Q-48.301-42.032-48.074-41.985Q-47.847-41.938-47.543-41.938L-47.543-41.641M-46.140-42.473Q-46.140-42.957-45.738-43.252Q-45.336-43.547-44.785-43.666Q-44.234-43.786-43.742-43.786L-43.742-44.075Q-43.742-44.301-43.857-44.508Q-43.972-44.715-44.170-44.834Q-44.367-44.953-44.597-44.953Q-45.023-44.953-45.308-44.848Q-45.238-44.821-45.191-44.766Q-45.144-44.711-45.119-44.641Q-45.094-44.571-45.094-44.496Q-45.094-44.391-45.144-44.299Q-45.195-44.207-45.287-44.157Q-45.379-44.106-45.484-44.106Q-45.590-44.106-45.681-44.157Q-45.773-44.207-45.824-44.299Q-45.875-44.391-45.875-44.496Q-45.875-44.914-45.486-45.061Q-45.097-45.207-44.597-45.207Q-44.265-45.207-43.912-45.077Q-43.558-44.946-43.330-44.692Q-43.101-44.438-43.101-44.090L-43.101-42.289Q-43.101-42.157-43.029-42.047Q-42.957-41.938-42.828-41.938Q-42.703-41.938-42.635-42.043Q-42.566-42.149-42.566-42.289L-42.566-42.801L-42.285-42.801L-42.285-42.289Q-42.285-42.086-42.402-41.928Q-42.519-41.770-42.701-41.686Q-42.883-41.602-43.086-41.602Q-43.316-41.602-43.469-41.774Q-43.621-41.946-43.652-42.176Q-43.812-41.895-44.121-41.729Q-44.429-41.563-44.781-41.563Q-45.293-41.563-45.717-41.786Q-46.140-42.008-46.140-42.473M-45.453-42.473Q-45.453-42.188-45.226-42.002Q-45-41.817-44.707-41.817Q-44.461-41.817-44.236-41.934Q-44.012-42.051-43.877-42.254Q-43.742-42.457-43.742-42.711L-43.742-43.543Q-44.008-43.543-44.293-43.489Q-44.578-43.434-44.849-43.305Q-45.121-43.176-45.287-42.969Q-45.453-42.762-45.453-42.473M-40.605-41.641L-42.101-41.641L-42.101-41.938Q-41.469-41.938-41.047-42.418L-40.277-43.328L-41.269-44.528Q-41.426-44.707-41.588-44.750Q-41.750-44.793-42.054-44.793L-42.054-45.090L-40.367-45.090L-40.367-44.793Q-40.461-44.793-40.537-44.750Q-40.613-44.707-40.613-44.618Q-40.613-44.575-40.582-44.528L-39.926-43.739L-39.445-44.313Q-39.328-44.450-39.328-44.586Q-39.328-44.676-39.379-44.735Q-39.429-44.793-39.512-44.793L-39.512-45.090L-38.023-45.090L-38.023-44.793Q-38.660-44.793-39.070-44.313L-39.750-43.512L-38.664-42.200Q-38.504-42.024-38.344-41.981Q-38.183-41.938-37.879-41.938L-37.879-41.641L-39.566-41.641L-39.566-41.938Q-39.476-41.938-39.398-41.981Q-39.320-42.024-39.320-42.114Q-39.320-42.137-39.351-42.200L-40.094-43.106L-40.679-42.418Q-40.797-42.282-40.797-42.145Q-40.797-42.059-40.746-41.998Q-40.695-41.938-40.605-41.938L-40.605-41.641M-31.789-42.618L-37.101-42.618Q-37.179-42.625-37.228-42.674Q-37.277-42.723-37.277-42.801Q-37.277-42.871-37.230-42.922Q-37.183-42.973-37.101-42.985L-31.789-42.985Q-31.715-42.973-31.668-42.922Q-31.621-42.871-31.621-42.801Q-31.621-42.723-31.670-42.674Q-31.719-42.625-31.789-42.618M-31.789-44.305L-37.101-44.305Q-37.179-44.313-37.228-44.362Q-37.277-44.411-37.277-44.489Q-37.277-44.559-37.230-44.610Q-37.183-44.661-37.101-44.672L-31.789-44.672Q-31.715-44.661-31.668-44.610Q-31.621-44.559-31.621-44.489Q-31.621-44.411-31.670-44.362Q-31.719-44.313-31.789-44.305M-30.301-42.520L-30.363-42.520Q-30.222-42.168-29.898-41.957Q-29.574-41.746-29.187-41.746Q-28.594-41.746-28.344-42.180Q-28.094-42.614-28.094-43.250Q-28.094-43.844-28.263-44.291Q-28.433-44.739-28.933-44.739Q-29.230-44.739-29.435-44.659Q-29.640-44.578-29.742-44.487Q-29.844-44.395-29.959-44.262Q-30.074-44.129-30.125-44.114L-30.195-44.114Q-30.281-44.137-30.301-44.215L-30.301-46.864Q-30.269-46.961-30.195-46.961Q-30.179-46.961-30.172-46.959Q-30.164-46.957-30.156-46.953Q-29.570-46.703-28.972-46.703Q-28.390-46.703-27.773-46.961L-27.750-46.961Q-27.707-46.961-27.679-46.936Q-27.652-46.911-27.652-46.871L-27.652-46.793Q-27.652-46.762-27.676-46.739Q-27.972-46.387-28.394-46.190Q-28.816-45.993-29.277-45.993Q-29.625-45.993-30.004-46.098L-30.004-44.602Q-29.785-44.797-29.510-44.895Q-29.234-44.993-28.933-44.993Q-28.476-44.993-28.107-44.745Q-27.738-44.496-27.531-44.092Q-27.324-43.688-27.324-43.243Q-27.324-42.754-27.580-42.346Q-27.836-41.938-28.267-41.705Q-28.699-41.473-29.187-41.473Q-29.582-41.473-29.937-41.664Q-30.293-41.856-30.504-42.190Q-30.715-42.524-30.715-42.938Q-30.715-43.118-30.597-43.231Q-30.480-43.344-30.301-43.344Q-30.183-43.344-30.092-43.291Q-30-43.239-29.947-43.147Q-29.894-43.055-29.894-42.938Q-29.894-42.754-30.008-42.637Q-30.121-42.520-30.301-42.520\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 33.76h423.946\"\u002F>\u003Cg transform=\"translate(-2.157 87.936)\">\u003Cpath d=\"M-56.515-42.864Q-56.515-43.360-56.189-43.725Q-55.863-44.090-55.340-44.336L-55.609-44.496Q-55.906-44.680-56.090-44.975Q-56.273-45.270-56.273-45.610Q-56.273-46.004-56.054-46.315Q-55.836-46.625-55.482-46.793Q-55.129-46.961-54.746-46.961Q-54.472-46.961-54.199-46.883Q-53.926-46.805-53.709-46.657Q-53.492-46.508-53.355-46.282Q-53.219-46.055-53.219-45.762Q-53.219-45.356-53.488-45.049Q-53.758-44.743-54.179-44.528L-53.730-44.258Q-53.512-44.121-53.344-43.928Q-53.176-43.735-53.078-43.496Q-52.980-43.258-52.980-43Q-52.980-42.661-53.131-42.373Q-53.281-42.086-53.527-41.889Q-53.773-41.692-54.097-41.582Q-54.422-41.473-54.746-41.473Q-55.176-41.473-55.582-41.635Q-55.988-41.797-56.252-42.116Q-56.515-42.434-56.515-42.864M-56.027-42.864Q-56.027-42.379-55.637-42.063Q-55.246-41.746-54.746-41.746Q-54.453-41.746-54.154-41.858Q-53.855-41.969-53.662-42.188Q-53.469-42.407-53.469-42.719Q-53.469-42.950-53.609-43.161Q-53.750-43.371-53.957-43.489L-55.066-44.168Q-55.484-43.965-55.756-43.629Q-56.027-43.293-56.027-42.864M-55.441-45.297L-54.453-44.696Q-54.105-44.879-53.879-45.149Q-53.652-45.418-53.652-45.762Q-53.652-45.981-53.744-46.157Q-53.836-46.332-53.990-46.455Q-54.144-46.578-54.346-46.649Q-54.547-46.719-54.746-46.719Q-55.152-46.719-55.498-46.508Q-55.844-46.297-55.844-45.914Q-55.844-45.731-55.732-45.569Q-55.621-45.407-55.441-45.297\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(27.718 88.414)\">\u003Cpath d=\"M-54.245-41.529Q-54.933-41.529-55.424-42.034Q-55.915-42.539-56.152-43.289Q-56.388-44.038-56.388-44.703Q-56.388-45.362-56.152-46.104Q-55.915-46.846-55.424-47.354Q-54.933-47.862-54.245-47.862Q-53.718-47.862-53.305-47.559Q-52.892-47.256-52.631-46.773Q-52.370-46.289-52.238-45.747Q-52.106-45.205-52.106-44.703Q-52.106-44.195-52.238-43.653Q-52.370-43.111-52.634-42.622Q-52.897-42.134-53.307-41.831Q-53.718-41.529-54.245-41.529M-54.245-42.183Q-53.859-42.183-53.588-42.459Q-53.317-42.735-53.154-43.150Q-52.990-43.565-52.914-44.012Q-52.839-44.458-52.839-44.820Q-52.839-45.142-52.917-45.559Q-52.995-45.977-53.159-46.348Q-53.322-46.719-53.598-46.966Q-53.874-47.212-54.245-47.212Q-54.616-47.212-54.885-46.973Q-55.153-46.734-55.322-46.360Q-55.490-45.987-55.573-45.564Q-55.656-45.142-55.656-44.820Q-55.656-44.341-55.517-43.721Q-55.378-43.101-55.055-42.642Q-54.733-42.183-54.245-42.183M-49.587-41.641L-51.047-41.641Q-51.301-41.670-51.330-41.919L-51.330-42.012Q-51.301-42.261-51.047-42.290L-50.519-42.290L-49.318-43.863L-50.446-45.303L-50.988-45.303Q-51.237-45.332-51.266-45.581L-51.266-45.669Q-51.252-45.791-51.183-45.865Q-51.115-45.938-50.988-45.953L-49.528-45.953Q-49.294-45.923-49.250-45.669L-49.250-45.581Q-49.294-45.332-49.528-45.303L-49.719-45.303L-49.030-44.370L-48.346-45.303L-48.556-45.303Q-48.796-45.332-48.840-45.581L-48.840-45.669Q-48.820-45.787-48.744-45.862Q-48.669-45.938-48.556-45.953L-47.096-45.953Q-46.979-45.938-46.906-45.865Q-46.833-45.791-46.818-45.669L-46.818-45.581Q-46.847-45.332-47.096-45.303L-47.629-45.303L-48.727-43.863L-47.497-42.290L-46.960-42.290Q-46.838-42.276-46.764-42.207Q-46.691-42.139-46.677-42.012L-46.677-41.919Q-46.691-41.802-46.764-41.729Q-46.838-41.656-46.960-41.641L-48.420-41.641Q-48.649-41.670-48.698-41.919L-48.698-42.012Q-48.654-42.261-48.420-42.290L-48.200-42.290L-49.030-43.453L-49.816-42.290L-49.587-42.290Q-49.352-42.261-49.308-42.012L-49.308-41.919Q-49.352-41.670-49.587-41.641M-45.851-41.919L-45.851-42.012Q-45.851-42.129-45.710-42.251L-44.098-43.589Q-44.025-43.648-43.615-43.992Q-43.205-44.336-42.951-44.617Q-42.697-44.898-42.538-45.223Q-42.380-45.547-42.380-45.899Q-42.380-46.319-42.604-46.617Q-42.829-46.914-43.198-47.063Q-43.566-47.212-43.967-47.212Q-44.318-47.212-44.628-47.027Q-44.938-46.841-45.060-46.509Q-44.919-46.377-44.919-46.182Q-44.919-45.996-45.055-45.855Q-45.192-45.713-45.378-45.713Q-45.588-45.713-45.720-45.857Q-45.851-46.001-45.851-46.202Q-45.851-46.690-45.566-47.071Q-45.280-47.452-44.831-47.657Q-44.382-47.862-43.898-47.862Q-43.454-47.862-43.049-47.732Q-42.643-47.603-42.324-47.344Q-42.004-47.085-41.825-46.719Q-41.647-46.353-41.647-45.899Q-41.647-45.332-41.933-44.849Q-42.219-44.366-42.565-44.046Q-42.912-43.726-43.610-43.160L-44.660-42.290L-42.380-42.290L-42.380-42.481Q-42.350-42.730-42.101-42.759L-41.930-42.759Q-41.808-42.745-41.735-42.676Q-41.662-42.608-41.647-42.481L-41.647-41.919Q-41.662-41.802-41.735-41.729Q-41.808-41.656-41.930-41.641L-45.568-41.641Q-45.812-41.670-45.851-41.919M-38.498-41.529Q-39.186-41.529-39.677-42.034Q-40.168-42.539-40.405-43.289Q-40.641-44.038-40.641-44.703Q-40.641-45.362-40.405-46.104Q-40.168-46.846-39.677-47.354Q-39.186-47.862-38.498-47.862Q-37.971-47.862-37.558-47.559Q-37.145-47.256-36.884-46.773Q-36.623-46.289-36.491-45.747Q-36.359-45.205-36.359-44.703Q-36.359-44.195-36.491-43.653Q-36.623-43.111-36.887-42.622Q-37.150-42.134-37.560-41.831Q-37.971-41.529-38.498-41.529M-38.498-42.183Q-38.112-42.183-37.841-42.459Q-37.570-42.735-37.407-43.150Q-37.243-43.565-37.167-44.012Q-37.092-44.458-37.092-44.820Q-37.092-45.142-37.170-45.559Q-37.248-45.977-37.411-46.348Q-37.575-46.719-37.851-46.966Q-38.127-47.212-38.498-47.212Q-38.869-47.212-39.138-46.973Q-39.406-46.734-39.575-46.360Q-39.743-45.987-39.826-45.564Q-39.909-45.142-39.909-44.820Q-39.909-44.341-39.770-43.721Q-39.631-43.101-39.308-42.642Q-38.986-42.183-38.498-42.183\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(66.129 87.247)\">\u003Cpath d=\"M-56.281-41.840L-56.281-42.754Q-56.254-42.961-56.043-42.985L-55.875-42.985Q-55.711-42.961-55.652-42.801Q-55.449-42.161-54.722-42.161Q-54.515-42.161-54.287-42.196Q-54.058-42.231-53.890-42.346Q-53.722-42.461-53.722-42.664Q-53.722-42.875-53.945-42.989Q-54.168-43.102-54.441-43.145L-55.140-43.258Q-56.281-43.469-56.281-44.192Q-56.281-44.481-56.137-44.670Q-55.992-44.860-55.752-44.967Q-55.512-45.075-55.256-45.114Q-55-45.153-54.722-45.153Q-54.472-45.153-54.279-45.123Q-54.086-45.094-53.922-45.016Q-53.844-45.133-53.715-45.153L-53.637-45.153Q-53.539-45.141-53.476-45.078Q-53.414-45.016-53.402-44.922L-53.402-44.215Q-53.414-44.121-53.476-44.055Q-53.539-43.989-53.637-43.977L-53.804-43.977Q-53.898-43.989-53.965-44.055Q-54.031-44.121-54.043-44.215Q-54.043-44.594-54.738-44.594Q-55.086-44.594-55.404-44.512Q-55.722-44.430-55.722-44.184Q-55.722-43.918-55.051-43.809L-54.347-43.688Q-53.863-43.606-53.513-43.358Q-53.164-43.110-53.164-42.664Q-53.164-42.274-53.400-42.032Q-53.637-41.789-53.986-41.696Q-54.336-41.602-54.722-41.602Q-55.301-41.602-55.699-41.856Q-55.769-41.731-55.818-41.674Q-55.867-41.618-55.972-41.602L-56.043-41.602Q-56.258-41.625-56.281-41.840M-51.879-42.496L-51.879-44.528L-52.301-44.528Q-52.508-44.551-52.551-44.770L-52.551-44.856Q-52.504-45.067-52.301-45.090L-51.484-45.090Q-51.289-45.067-51.238-44.856L-51.238-42.528Q-51.238-42.293-51.068-42.227Q-50.898-42.161-50.613-42.161Q-50.406-42.161-50.211-42.237Q-50.015-42.313-49.890-42.463Q-49.765-42.614-49.765-42.825L-49.765-44.528L-50.187-44.528Q-50.398-44.551-50.437-44.770L-50.437-44.856Q-50.398-45.067-50.187-45.090L-49.375-45.090Q-49.176-45.067-49.125-44.856L-49.125-42.200L-48.699-42.200Q-48.492-42.176-48.453-41.969L-48.453-41.879Q-48.492-41.664-48.699-41.641L-49.515-41.641Q-49.715-41.664-49.765-41.864Q-50.168-41.602-50.676-41.602Q-50.910-41.602-51.125-41.643Q-51.340-41.684-51.506-41.786Q-51.672-41.887-51.775-42.065Q-51.879-42.243-51.879-42.496M-47.633-41.879L-47.633-45.969L-48.054-45.969Q-48.262-45.993-48.304-46.207L-48.304-46.297Q-48.262-46.504-48.054-46.528L-47.238-46.528Q-47.043-46.504-46.992-46.297L-46.992-44.786Q-46.781-44.953-46.517-45.041Q-46.254-45.129-45.984-45.129Q-45.644-45.129-45.347-44.985Q-45.051-44.840-44.836-44.588Q-44.621-44.336-44.506-44.024Q-44.390-43.711-44.390-43.368Q-44.390-42.903-44.617-42.493Q-44.844-42.082-45.230-41.842Q-45.617-41.602-46.086-41.602Q-46.605-41.602-46.992-41.969L-46.992-41.879Q-47.043-41.661-47.238-41.641L-47.383-41.641Q-47.574-41.664-47.633-41.879M-46.129-42.161Q-45.820-42.161-45.570-42.330Q-45.320-42.500-45.176-42.782Q-45.031-43.063-45.031-43.368Q-45.031-43.657-45.156-43.936Q-45.281-44.215-45.513-44.393Q-45.746-44.571-46.047-44.571Q-46.367-44.571-46.629-44.385Q-46.890-44.200-46.992-43.899L-46.992-43.047Q-46.902-42.680-46.681-42.420Q-46.461-42.161-46.129-42.161M-41.816-40.098L-41.816-40.184Q-41.765-40.403-41.570-40.426L-41.105-40.426L-41.105-42.024Q-41.558-41.602-42.168-41.602Q-42.523-41.602-42.828-41.745Q-43.133-41.887-43.365-42.137Q-43.597-42.387-43.722-42.709Q-43.847-43.032-43.847-43.368Q-43.847-43.852-43.609-44.252Q-43.371-44.653-42.965-44.891Q-42.558-45.129-42.082-45.129Q-41.519-45.129-41.105-44.739L-41.105-44.899Q-41.054-45.110-40.855-45.129L-40.715-45.129Q-40.515-45.106-40.465-44.899L-40.465-40.426L-40-40.426Q-39.804-40.403-39.754-40.184L-39.754-40.098Q-39.804-39.887-40-39.864L-41.570-39.864Q-41.765-39.887-41.816-40.098M-42.121-42.161Q-41.750-42.161-41.474-42.414Q-41.199-42.668-41.105-43.032L-41.105-43.649Q-41.148-43.887-41.271-44.100Q-41.394-44.313-41.592-44.442Q-41.789-44.571-42.031-44.571Q-42.347-44.571-42.619-44.405Q-42.890-44.239-43.049-43.957Q-43.207-43.676-43.207-43.360Q-43.207-42.895-42.892-42.528Q-42.578-42.161-42.121-42.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(66.129 87.247)\">\u003Cpath d=\"M-34.937-41.282Q-34.937-41.336-34.914-41.403L-32.648-47.008Q-32.554-47.192-32.359-47.192Q-32.234-47.192-32.146-47.104Q-32.058-47.016-32.058-46.887Q-32.058-46.828-32.082-46.770L-34.344-41.161Q-34.445-40.977-34.625-40.977Q-34.750-40.977-34.844-41.067Q-34.937-41.157-34.937-41.282M-32.359-40.977Q-32.711-40.977-32.892-41.317Q-33.074-41.657-33.074-42.039Q-33.074-42.426-32.894-42.766Q-32.715-43.106-32.359-43.106Q-32.121-43.106-31.963-42.936Q-31.804-42.766-31.730-42.522Q-31.656-42.278-31.656-42.039Q-31.656-41.805-31.730-41.561Q-31.804-41.317-31.963-41.147Q-32.121-40.977-32.359-40.977M-32.359-41.536Q-32.277-41.567-32.230-41.735Q-32.183-41.903-32.183-42.039Q-32.183-42.176-32.230-42.346Q-32.277-42.516-32.359-42.543Q-32.445-42.516-32.496-42.348Q-32.547-42.180-32.547-42.039Q-32.547-41.911-32.496-41.739Q-32.445-41.567-32.359-41.536M-34.625-45.055Q-34.867-45.055-35.027-45.225Q-35.187-45.395-35.262-45.641Q-35.336-45.887-35.336-46.129Q-35.336-46.512-35.156-46.852Q-34.976-47.192-34.625-47.192Q-34.387-47.192-34.228-47.022Q-34.070-46.852-33.996-46.608Q-33.922-46.364-33.922-46.129Q-33.922-45.887-33.996-45.641Q-34.070-45.395-34.228-45.225Q-34.387-45.055-34.625-45.055M-34.625-45.618Q-34.535-45.661-34.492-45.817Q-34.449-45.973-34.449-46.129Q-34.449-46.258-34.496-46.434Q-34.543-46.610-34.633-46.633Q-34.648-46.633-34.678-46.598Q-34.707-46.563-34.715-46.543Q-34.808-46.356-34.808-46.129Q-34.808-45.993-34.760-45.821Q-34.711-45.649-34.625-45.618M-31.148-41.879L-31.148-41.969Q-31.090-42.176-30.898-42.200L-30.187-42.200L-30.187-44.528L-30.898-44.528Q-31.094-44.551-31.148-44.770L-31.148-44.856Q-31.090-45.067-30.898-45.090L-29.797-45.090Q-29.597-45.071-29.547-44.856L-29.547-44.528Q-29.285-44.813-28.929-44.971Q-28.574-45.129-28.187-45.129Q-27.894-45.129-27.660-44.995Q-27.426-44.860-27.426-44.594Q-27.426-44.426-27.535-44.309Q-27.644-44.192-27.812-44.192Q-27.965-44.192-28.080-44.303Q-28.195-44.414-28.195-44.571Q-28.570-44.571-28.885-44.370Q-29.199-44.168-29.373-43.834Q-29.547-43.500-29.547-43.121L-29.547-42.200L-28.601-42.200Q-28.394-42.176-28.355-41.969L-28.355-41.879Q-28.394-41.664-28.601-41.641L-30.898-41.641Q-31.090-41.664-31.148-41.879M-26.773-43.055Q-26.773-43.340-26.617-43.594Q-26.461-43.848-26.211-44.022Q-25.961-44.196-25.676-44.282Q-25.914-44.356-26.140-44.498Q-26.367-44.641-26.510-44.850Q-26.652-45.059-26.652-45.305Q-26.652-45.703-26.406-45.998Q-26.160-46.293-25.777-46.452Q-25.394-46.610-25.004-46.610Q-24.613-46.610-24.230-46.452Q-23.847-46.293-23.601-45.995Q-23.355-45.696-23.355-45.305Q-23.355-45.059-23.498-44.852Q-23.640-44.645-23.867-44.500Q-24.094-44.356-24.332-44.282Q-23.879-44.145-23.558-43.819Q-23.238-43.493-23.238-43.055Q-23.238-42.618-23.496-42.274Q-23.754-41.930-24.164-41.746Q-24.574-41.563-25.004-41.563Q-25.433-41.563-25.844-41.745Q-26.254-41.926-26.513-42.270Q-26.773-42.614-26.773-43.055M-26.133-43.055Q-26.133-42.782-25.967-42.567Q-25.801-42.352-25.539-42.237Q-25.277-42.121-25.004-42.121Q-24.730-42.121-24.471-42.237Q-24.211-42.352-24.045-42.569Q-23.879-42.786-23.879-43.055Q-23.879-43.332-24.045-43.549Q-24.211-43.766-24.471-43.883Q-24.730-44-25.004-44Q-25.277-44-25.539-43.883Q-25.801-43.766-25.967-43.551Q-26.133-43.336-26.133-43.055M-26.012-45.305Q-26.012-45.067-25.855-44.899Q-25.699-44.731-25.463-44.647Q-25.226-44.563-25.004-44.563Q-24.785-44.563-24.547-44.647Q-24.308-44.731-24.152-44.901Q-23.996-45.071-23.996-45.305Q-23.996-45.539-24.152-45.709Q-24.308-45.879-24.547-45.963Q-24.785-46.047-25.004-46.047Q-25.226-46.047-25.463-45.963Q-25.699-45.879-25.855-45.711Q-26.012-45.543-26.012-45.305M-21.160-40.528Q-21.273-40.528-21.363-40.618Q-21.453-40.707-21.453-40.817Q-21.453-40.993-21.262-41.067Q-21.043-41.118-20.871-41.276Q-20.699-41.434-20.633-41.657Q-20.656-41.657-20.687-41.641L-20.750-41.641Q-20.980-41.641-21.146-41.803Q-21.312-41.965-21.312-42.200Q-21.312-42.434-21.148-42.594Q-20.984-42.754-20.750-42.754Q-20.539-42.754-20.375-42.633Q-20.211-42.512-20.121-42.319Q-20.031-42.125-20.031-41.914Q-20.031-41.438-20.330-41.049Q-20.629-40.661-21.094-40.536Q-21.117-40.528-21.160-40.528M-17.953-41.282Q-17.953-41.336-17.929-41.403L-15.664-47.008Q-15.570-47.192-15.375-47.192Q-15.250-47.192-15.162-47.104Q-15.074-47.016-15.074-46.887Q-15.074-46.828-15.097-46.770L-17.359-41.161Q-17.461-40.977-17.640-40.977Q-17.765-40.977-17.859-41.067Q-17.953-41.157-17.953-41.282M-15.375-40.977Q-15.726-40.977-15.908-41.317Q-16.090-41.657-16.090-42.039Q-16.090-42.426-15.910-42.766Q-15.730-43.106-15.375-43.106Q-15.137-43.106-14.978-42.936Q-14.820-42.766-14.746-42.522Q-14.672-42.278-14.672-42.039Q-14.672-41.805-14.746-41.561Q-14.820-41.317-14.978-41.147Q-15.137-40.977-15.375-40.977M-15.375-41.536Q-15.293-41.567-15.246-41.735Q-15.199-41.903-15.199-42.039Q-15.199-42.176-15.246-42.346Q-15.293-42.516-15.375-42.543Q-15.461-42.516-15.512-42.348Q-15.562-42.180-15.562-42.039Q-15.562-41.911-15.512-41.739Q-15.461-41.567-15.375-41.536M-17.640-45.055Q-17.883-45.055-18.043-45.225Q-18.203-45.395-18.277-45.641Q-18.351-45.887-18.351-46.129Q-18.351-46.512-18.172-46.852Q-17.992-47.192-17.640-47.192Q-17.402-47.192-17.244-47.022Q-17.086-46.852-17.012-46.608Q-16.937-46.364-16.937-46.129Q-16.937-45.887-17.012-45.641Q-17.086-45.395-17.244-45.225Q-17.402-45.055-17.640-45.055M-17.640-45.618Q-17.551-45.661-17.508-45.817Q-17.465-45.973-17.465-46.129Q-17.465-46.258-17.512-46.434Q-17.558-46.610-17.648-46.633Q-17.664-46.633-17.693-46.598Q-17.722-46.563-17.730-46.543Q-17.824-46.356-17.824-46.129Q-17.824-45.993-17.775-45.821Q-17.726-45.649-17.640-45.618M-14.164-41.879L-14.164-41.969Q-14.105-42.176-13.914-42.200L-13.203-42.200L-13.203-44.528L-13.914-44.528Q-14.109-44.551-14.164-44.770L-14.164-44.856Q-14.105-45.067-13.914-45.090L-12.812-45.090Q-12.613-45.071-12.562-44.856L-12.562-44.528Q-12.301-44.813-11.945-44.971Q-11.590-45.129-11.203-45.129Q-10.910-45.129-10.676-44.995Q-10.441-44.860-10.441-44.594Q-10.441-44.426-10.551-44.309Q-10.660-44.192-10.828-44.192Q-10.980-44.192-11.096-44.303Q-11.211-44.414-11.211-44.571Q-11.586-44.571-11.900-44.370Q-12.215-44.168-12.388-43.834Q-12.562-43.500-12.562-43.121L-12.562-42.200L-11.617-42.200Q-11.410-42.176-11.371-41.969L-11.371-41.879Q-11.410-41.664-11.617-41.641L-13.914-41.641Q-14.105-41.664-14.164-41.879M-8.277-41.602Q-8.742-41.602-9.107-41.852Q-9.472-42.102-9.678-42.506Q-9.883-42.911-9.883-43.368Q-9.883-43.711-9.758-44.032Q-9.633-44.352-9.400-44.602Q-9.168-44.852-8.863-44.991Q-8.558-45.129-8.203-45.129Q-7.691-45.129-7.285-44.809L-7.285-45.969L-7.707-45.969Q-7.918-45.993-7.957-46.207L-7.957-46.297Q-7.918-46.504-7.707-46.528L-6.894-46.528Q-6.695-46.504-6.644-46.297L-6.644-42.200L-6.219-42.200Q-6.012-42.176-5.972-41.969L-5.972-41.879Q-6.012-41.664-6.219-41.641L-7.035-41.641Q-7.234-41.664-7.285-41.879L-7.285-42.008Q-7.480-41.817-7.742-41.709Q-8.004-41.602-8.277-41.602M-8.238-42.161Q-7.879-42.161-7.627-42.430Q-7.375-42.700-7.285-43.075L-7.285-43.907Q-7.344-44.094-7.471-44.245Q-7.597-44.395-7.775-44.483Q-7.953-44.571-8.148-44.571Q-8.457-44.571-8.707-44.401Q-8.957-44.231-9.101-43.946Q-9.246-43.661-9.246-43.360Q-9.246-42.911-8.961-42.536Q-8.676-42.161-8.238-42.161M-5.277-41.879L-5.277-41.969Q-5.226-42.176-5.031-42.200L-3.992-42.200L-3.992-44.528L-4.965-44.528Q-5.164-44.551-5.215-44.770L-5.215-44.856Q-5.164-45.067-4.965-45.090L-3.597-45.090Q-3.402-45.071-3.351-44.856L-3.351-42.200L-2.437-42.200Q-2.242-42.176-2.191-41.969L-2.191-41.879Q-2.242-41.664-2.437-41.641L-5.031-41.641Q-5.226-41.664-5.277-41.879M-4.246-46.067L-4.246-46.121Q-4.246-46.293-4.109-46.414Q-3.972-46.536-3.797-46.536Q-3.625-46.536-3.488-46.414Q-3.351-46.293-3.351-46.121L-3.351-46.067Q-3.351-45.891-3.488-45.770Q-3.625-45.649-3.797-45.649Q-3.972-45.649-4.109-45.770Q-4.246-45.891-4.246-46.067\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(157.178 88.136)\">\u003Cpath d=\"M-55.683-41.375Q-55.683-41.438-55.652-41.481L-51.906-46.739Q-52.363-46.504-52.929-46.504Q-53.582-46.504-54.187-46.825Q-54.043-46.477-54.043-46.032Q-54.043-45.672-54.164-45.301Q-54.285-44.930-54.535-44.674Q-54.785-44.418-55.148-44.418Q-55.535-44.418-55.818-44.662Q-56.101-44.907-56.248-45.280Q-56.394-45.653-56.394-46.032Q-56.394-46.411-56.248-46.782Q-56.101-47.153-55.818-47.397Q-55.535-47.641-55.148-47.641Q-54.832-47.641-54.562-47.403Q-54.226-47.098-53.797-46.926Q-53.367-46.754-52.929-46.754Q-52.437-46.754-52.019-46.967Q-51.601-47.180-51.301-47.578Q-51.258-47.641-51.164-47.641Q-51.090-47.641-51.035-47.586Q-50.980-47.532-50.980-47.457Q-50.980-47.395-51.012-47.352L-55.355-41.258Q-55.402-41.192-55.500-41.192Q-55.582-41.192-55.633-41.243Q-55.683-41.293-55.683-41.375M-55.148-44.672Q-54.875-44.672-54.687-44.897Q-54.500-45.121-54.412-45.444Q-54.324-45.766-54.324-46.032Q-54.324-46.289-54.412-46.612Q-54.500-46.934-54.687-47.159Q-54.875-47.383-55.148-47.383Q-55.535-47.383-55.678-46.955Q-55.820-46.528-55.820-46.032Q-55.820-45.524-55.679-45.098Q-55.539-44.672-55.148-44.672M-51.371-41.192Q-51.758-41.192-52.041-41.438Q-52.324-41.684-52.472-42.057Q-52.621-42.430-52.621-42.809Q-52.621-43.082-52.535-43.370Q-52.449-43.657-52.295-43.891Q-52.140-44.125-51.904-44.272Q-51.668-44.418-51.371-44.418Q-51.090-44.418-50.883-44.266Q-50.676-44.114-50.537-43.871Q-50.398-43.629-50.332-43.348Q-50.265-43.067-50.265-42.809Q-50.265-42.450-50.387-42.077Q-50.508-41.703-50.758-41.448Q-51.008-41.192-51.371-41.192M-51.371-41.450Q-51.097-41.450-50.910-41.674Q-50.722-41.899-50.635-42.221Q-50.547-42.543-50.547-42.809Q-50.547-43.067-50.635-43.389Q-50.722-43.711-50.910-43.936Q-51.097-44.161-51.371-44.161Q-51.762-44.161-51.902-43.731Q-52.043-43.301-52.043-42.809Q-52.043-42.301-51.906-41.875Q-51.769-41.450-51.371-41.450M-47.543-41.641L-49.523-41.641L-49.523-41.938Q-49.254-41.938-49.086-41.983Q-48.918-42.028-48.918-42.200L-48.918-44.336Q-48.918-44.551-48.980-44.647Q-49.043-44.743-49.160-44.764Q-49.277-44.786-49.523-44.786L-49.523-45.082L-48.355-45.168L-48.355-44.383Q-48.277-44.594-48.125-44.780Q-47.972-44.965-47.773-45.067Q-47.574-45.168-47.347-45.168Q-47.101-45.168-46.910-45.024Q-46.719-44.879-46.719-44.649Q-46.719-44.493-46.824-44.383Q-46.929-44.274-47.086-44.274Q-47.242-44.274-47.351-44.383Q-47.461-44.493-47.461-44.649Q-47.461-44.809-47.355-44.914Q-47.679-44.914-47.894-44.686Q-48.109-44.457-48.205-44.118Q-48.301-43.778-48.301-43.473L-48.301-42.200Q-48.301-42.032-48.074-41.985Q-47.847-41.938-47.543-41.938L-47.543-41.641M-44.422-41.563Q-44.902-41.563-45.310-41.807Q-45.719-42.051-45.957-42.465Q-46.195-42.879-46.195-43.368Q-46.195-43.860-45.937-44.276Q-45.679-44.692-45.248-44.930Q-44.816-45.168-44.324-45.168Q-43.703-45.168-43.254-44.731L-43.254-46.360Q-43.254-46.575-43.316-46.670Q-43.379-46.766-43.496-46.787Q-43.613-46.809-43.859-46.809L-43.859-47.106L-42.637-47.192L-42.637-42.383Q-42.637-42.172-42.574-42.077Q-42.512-41.981-42.394-41.959Q-42.277-41.938-42.027-41.938L-42.027-41.641L-43.277-41.563L-43.277-42.047Q-43.742-41.563-44.422-41.563M-44.355-41.817Q-44.015-41.817-43.722-42.008Q-43.429-42.200-43.277-42.496L-43.277-44.328Q-43.426-44.602-43.687-44.758Q-43.949-44.914-44.262-44.914Q-44.887-44.914-45.170-44.467Q-45.453-44.020-45.453-43.360Q-45.453-42.715-45.201-42.266Q-44.949-41.817-44.355-41.817M-39.660-41.641L-41.437-41.641L-41.437-41.938Q-41.164-41.938-40.996-41.985Q-40.828-42.032-40.828-42.200L-40.828-44.336Q-40.828-44.551-40.885-44.647Q-40.941-44.743-41.054-44.764Q-41.168-44.786-41.414-44.786L-41.414-45.082L-40.215-45.168L-40.215-42.200Q-40.215-42.032-40.068-41.985Q-39.922-41.938-39.660-41.938L-39.660-41.641M-41.101-46.563Q-41.101-46.754-40.967-46.885Q-40.832-47.016-40.637-47.016Q-40.515-47.016-40.412-46.953Q-40.308-46.891-40.246-46.787Q-40.183-46.684-40.183-46.563Q-40.183-46.368-40.314-46.233Q-40.445-46.098-40.637-46.098Q-40.836-46.098-40.969-46.231Q-41.101-46.364-41.101-46.563M-33.437-42.618L-38.750-42.618Q-38.828-42.625-38.877-42.674Q-38.926-42.723-38.926-42.801Q-38.926-42.871-38.879-42.922Q-38.832-42.973-38.750-42.985L-33.437-42.985Q-33.363-42.973-33.316-42.922Q-33.269-42.871-33.269-42.801Q-33.269-42.723-33.318-42.674Q-33.367-42.625-33.437-42.618M-33.437-44.305L-38.750-44.305Q-38.828-44.313-38.877-44.362Q-38.926-44.411-38.926-44.489Q-38.926-44.559-38.879-44.610Q-38.832-44.661-38.750-44.672L-33.437-44.672Q-33.363-44.661-33.316-44.610Q-33.269-44.559-33.269-44.489Q-33.269-44.411-33.318-44.362Q-33.367-44.313-33.437-44.305M-29.203-41.641L-32.363-41.641L-32.363-41.848Q-32.363-41.875-32.340-41.907L-30.988-43.305Q-30.609-43.692-30.361-43.981Q-30.113-44.270-29.939-44.627Q-29.765-44.985-29.765-45.375Q-29.765-45.723-29.898-46.016Q-30.031-46.309-30.285-46.487Q-30.539-46.664-30.894-46.664Q-31.254-46.664-31.545-46.469Q-31.836-46.274-31.980-45.946L-31.926-45.946Q-31.742-45.946-31.617-45.825Q-31.492-45.703-31.492-45.512Q-31.492-45.332-31.617-45.203Q-31.742-45.075-31.926-45.075Q-32.105-45.075-32.234-45.203Q-32.363-45.332-32.363-45.512Q-32.363-45.914-32.142-46.250Q-31.922-46.586-31.556-46.774Q-31.191-46.961-30.789-46.961Q-30.308-46.961-29.892-46.774Q-29.476-46.586-29.224-46.225Q-28.972-45.864-28.972-45.375Q-28.972-45.016-29.127-44.713Q-29.281-44.411-29.533-44.151Q-29.785-43.891-30.135-43.606Q-30.484-43.321-30.652-43.168L-31.582-42.328L-30.867-42.328Q-29.492-42.328-29.453-42.368Q-29.383-42.446-29.340-42.631Q-29.297-42.817-29.254-43.106L-28.972-43.106\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 88.136)\">\u003Cpath d=\"M-23.341-43.090L-25.595-43.090L-25.595-43.641L-23.341-43.641\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 88.136)\">\u003Cpath d=\"M-16.433-41.641L-19.226-41.641L-19.226-41.938Q-18.164-41.938-18.164-42.200L-18.164-46.368Q-18.593-46.153-19.273-46.153L-19.273-46.450Q-18.254-46.450-17.738-46.961L-17.593-46.961Q-17.519-46.942-17.500-46.864L-17.500-42.200Q-17.500-41.938-16.433-41.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(259.608 88.092)\">\u003Cpath d=\"M-52.250-41.641L-56.281-41.641Q-56.332-41.641-56.363-41.672Q-56.394-41.703-56.394-41.754L-56.394-41.856Q-56.394-41.883-56.363-41.930L-53.066-46.809L-54.242-46.809Q-54.679-46.809-55.002-46.743Q-55.324-46.676-55.554-46.465Q-55.781-46.250-55.888-45.928Q-55.996-45.606-55.996-45.258L-56.273-45.258L-56.179-47.106L-52.265-47.106Q-52.219-47.106-52.187-47.073Q-52.156-47.039-52.156-46.993L-52.156-46.907Q-52.156-46.903-52.179-46.832L-55.484-41.961L-54.250-41.961Q-53.957-41.961-53.709-41.987Q-53.461-42.012-53.232-42.094Q-53.004-42.176-52.820-42.352Q-52.582-42.590-52.500-42.944Q-52.418-43.297-52.387-43.825L-52.105-43.825L-52.250-41.641M-48.754-41.641L-51.340-41.641L-51.340-41.938Q-51.019-41.938-50.775-41.985Q-50.531-42.032-50.531-42.200L-50.531-46.543Q-50.531-46.715-50.775-46.762Q-51.019-46.809-51.340-46.809L-51.340-47.106L-46.722-47.106L-46.492-45.258L-46.773-45.258Q-46.859-45.942-47.021-46.262Q-47.183-46.582-47.523-46.696Q-47.863-46.809-48.554-46.809L-49.363-46.809Q-49.582-46.809-49.674-46.766Q-49.765-46.723-49.765-46.543L-49.765-44.520L-49.156-44.520Q-48.730-44.520-48.533-44.586Q-48.336-44.653-48.254-44.846Q-48.172-45.039-48.172-45.457L-47.890-45.457L-47.890-43.289L-48.172-43.289Q-48.172-43.707-48.254-43.901Q-48.336-44.094-48.533-44.161Q-48.730-44.227-49.156-44.227L-49.765-44.227L-49.765-42.200Q-49.765-42.036-49.447-41.987Q-49.129-41.938-48.754-41.938L-48.754-41.641M-44.012-41.473Q-44.715-41.473-45.115-41.873Q-45.515-42.274-45.660-42.883Q-45.804-43.493-45.804-44.192Q-45.804-44.715-45.734-45.178Q-45.664-45.641-45.471-46.053Q-45.277-46.465-44.920-46.713Q-44.562-46.961-44.012-46.961Q-43.461-46.961-43.103-46.713Q-42.746-46.465-42.554-46.055Q-42.363-45.645-42.293-45.176Q-42.222-44.707-42.222-44.192Q-42.222-43.493-42.365-42.885Q-42.508-42.278-42.908-41.875Q-43.308-41.473-44.012-41.473M-44.012-41.731Q-43.539-41.731-43.306-42.166Q-43.074-42.602-43.019-43.141Q-42.965-43.680-42.965-44.321Q-42.965-45.317-43.148-46.010Q-43.332-46.703-44.012-46.703Q-44.379-46.703-44.599-46.465Q-44.820-46.227-44.916-45.870Q-45.012-45.512-45.037-45.141Q-45.062-44.770-45.062-44.321Q-45.062-43.680-45.008-43.141Q-44.953-42.602-44.721-42.166Q-44.488-41.731-44.012-41.731\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(259.608 88.092)\">\u003Cpath d=\"M-38.572-41.563L-38.572-43.368Q-38.572-43.395-38.541-43.426Q-38.510-43.457-38.486-43.457L-38.381-43.457Q-38.350-43.457-38.320-43.428Q-38.291-43.399-38.291-43.368Q-38.291-42.586-37.775-42.178Q-37.260-41.770-36.451-41.770Q-36.154-41.770-35.899-41.920Q-35.643-42.071-35.492-42.327Q-35.342-42.582-35.342-42.879Q-35.342-43.278-35.588-43.582Q-35.834-43.887-36.205-43.969L-37.326-44.227Q-37.666-44.301-37.953-44.522Q-38.240-44.743-38.406-45.061Q-38.572-45.379-38.572-45.731Q-38.572-46.161-38.342-46.516Q-38.111-46.871-37.731-47.073Q-37.350-47.274-36.924-47.274Q-36.674-47.274-36.428-47.215Q-36.182-47.157-35.963-47.034Q-35.744-46.911-35.580-46.731L-35.252-47.227Q-35.221-47.274-35.182-47.274L-35.135-47.274Q-35.108-47.274-35.076-47.243Q-35.045-47.211-35.045-47.184L-35.045-45.375Q-35.045-45.352-35.076-45.321Q-35.108-45.289-35.135-45.289L-35.236-45.289Q-35.268-45.289-35.297-45.319Q-35.326-45.348-35.326-45.375Q-35.326-45.508-35.369-45.694Q-35.412-45.879-35.477-46.034Q-35.541-46.188-35.641-46.346Q-35.740-46.504-35.830-46.594Q-36.260-47-36.924-47Q-37.201-47-37.461-46.868Q-37.721-46.735-37.879-46.500Q-38.037-46.266-38.037-45.985Q-38.037-45.629-37.797-45.358Q-37.557-45.086-37.190-45L-36.076-44.746Q-35.799-44.680-35.566-44.526Q-35.334-44.371-35.164-44.153Q-34.994-43.934-34.900-43.676Q-34.807-43.418-34.807-43.129Q-34.807-42.801-34.932-42.498Q-35.057-42.196-35.291-41.959Q-35.525-41.723-35.818-41.598Q-36.111-41.473-36.451-41.473Q-37.467-41.473-38.037-42.016L-38.365-41.520Q-38.397-41.473-38.436-41.473L-38.486-41.473Q-38.510-41.473-38.541-41.504Q-38.572-41.536-38.572-41.563M-31.404-41.641L-33.990-41.641L-33.990-41.938Q-33.670-41.938-33.426-41.985Q-33.182-42.032-33.182-42.200L-33.182-46.543Q-33.182-46.715-33.426-46.762Q-33.670-46.809-33.990-46.809L-33.990-47.106L-29.373-47.106L-29.143-45.258L-29.424-45.258Q-29.510-45.942-29.672-46.262Q-29.834-46.582-30.174-46.696Q-30.514-46.809-31.205-46.809L-32.014-46.809Q-32.233-46.809-32.324-46.766Q-32.416-46.723-32.416-46.543L-32.416-44.520L-31.807-44.520Q-31.381-44.520-31.184-44.586Q-30.986-44.653-30.904-44.846Q-30.822-45.039-30.822-45.457L-30.541-45.457L-30.541-43.289L-30.822-43.289Q-30.822-43.707-30.904-43.901Q-30.986-44.094-31.184-44.161Q-31.381-44.227-31.807-44.227L-32.416-44.227L-32.416-42.200Q-32.416-42.036-32.098-41.987Q-31.779-41.938-31.404-41.938L-31.404-41.641M-26.662-41.473Q-27.365-41.473-27.766-41.873Q-28.166-42.274-28.311-42.883Q-28.455-43.493-28.455-44.192Q-28.455-44.715-28.385-45.178Q-28.315-45.641-28.121-46.053Q-27.928-46.465-27.570-46.713Q-27.213-46.961-26.662-46.961Q-26.111-46.961-25.754-46.713Q-25.397-46.465-25.205-46.055Q-25.014-45.645-24.943-45.176Q-24.873-44.707-24.873-44.192Q-24.873-43.493-25.016-42.885Q-25.158-42.278-25.559-41.875Q-25.959-41.473-26.662-41.473M-26.662-41.731Q-26.190-41.731-25.957-42.166Q-25.725-42.602-25.670-43.141Q-25.615-43.680-25.615-44.321Q-25.615-45.317-25.799-46.010Q-25.983-46.703-26.662-46.703Q-27.029-46.703-27.250-46.465Q-27.471-46.227-27.566-45.870Q-27.662-45.512-27.688-45.141Q-27.713-44.770-27.713-44.321Q-27.713-43.680-27.658-43.141Q-27.604-42.602-27.371-42.166Q-27.139-41.731-26.662-41.731\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(316.513 88.414)\">\u003Cpath d=\"M-54.245-41.529Q-54.933-41.529-55.424-42.034Q-55.915-42.539-56.152-43.289Q-56.388-44.038-56.388-44.703Q-56.388-45.362-56.152-46.104Q-55.915-46.846-55.424-47.354Q-54.933-47.862-54.245-47.862Q-53.718-47.862-53.305-47.559Q-52.892-47.256-52.631-46.773Q-52.370-46.289-52.238-45.747Q-52.106-45.205-52.106-44.703Q-52.106-44.195-52.238-43.653Q-52.370-43.111-52.634-42.622Q-52.897-42.134-53.307-41.831Q-53.718-41.529-54.245-41.529M-54.245-42.183Q-53.859-42.183-53.588-42.459Q-53.317-42.735-53.154-43.150Q-52.990-43.565-52.914-44.012Q-52.839-44.458-52.839-44.820Q-52.839-45.142-52.917-45.559Q-52.995-45.977-53.159-46.348Q-53.322-46.719-53.598-46.966Q-53.874-47.212-54.245-47.212Q-54.616-47.212-54.885-46.973Q-55.153-46.734-55.322-46.360Q-55.490-45.987-55.573-45.564Q-55.656-45.142-55.656-44.820Q-55.656-44.341-55.517-43.721Q-55.378-43.101-55.055-42.642Q-54.733-42.183-54.245-42.183M-49.587-41.641L-51.047-41.641Q-51.301-41.670-51.330-41.919L-51.330-42.012Q-51.301-42.261-51.047-42.290L-50.519-42.290L-49.318-43.863L-50.446-45.303L-50.988-45.303Q-51.237-45.332-51.266-45.581L-51.266-45.669Q-51.252-45.791-51.183-45.865Q-51.115-45.938-50.988-45.953L-49.528-45.953Q-49.294-45.923-49.250-45.669L-49.250-45.581Q-49.294-45.332-49.528-45.303L-49.719-45.303L-49.030-44.370L-48.346-45.303L-48.556-45.303Q-48.796-45.332-48.840-45.581L-48.840-45.669Q-48.820-45.787-48.744-45.862Q-48.669-45.938-48.556-45.953L-47.096-45.953Q-46.979-45.938-46.906-45.865Q-46.833-45.791-46.818-45.669L-46.818-45.581Q-46.847-45.332-47.096-45.303L-47.629-45.303L-48.727-43.863L-47.497-42.290L-46.960-42.290Q-46.838-42.276-46.764-42.207Q-46.691-42.139-46.677-42.012L-46.677-41.919Q-46.691-41.802-46.764-41.729Q-46.838-41.656-46.960-41.641L-48.420-41.641Q-48.649-41.670-48.698-41.919L-48.698-42.012Q-48.654-42.261-48.420-42.290L-48.200-42.290L-49.030-43.453L-49.816-42.290L-49.587-42.290Q-49.352-42.261-49.308-42.012L-49.308-41.919Q-49.352-41.670-49.587-41.641M-45.851-41.919L-45.851-42.012Q-45.851-42.129-45.710-42.251L-44.098-43.589Q-44.025-43.648-43.615-43.992Q-43.205-44.336-42.951-44.617Q-42.697-44.898-42.538-45.223Q-42.380-45.547-42.380-45.899Q-42.380-46.319-42.604-46.617Q-42.829-46.914-43.198-47.063Q-43.566-47.212-43.967-47.212Q-44.318-47.212-44.628-47.027Q-44.938-46.841-45.060-46.509Q-44.919-46.377-44.919-46.182Q-44.919-45.996-45.055-45.855Q-45.192-45.713-45.378-45.713Q-45.588-45.713-45.720-45.857Q-45.851-46.001-45.851-46.202Q-45.851-46.690-45.566-47.071Q-45.280-47.452-44.831-47.657Q-44.382-47.862-43.898-47.862Q-43.454-47.862-43.049-47.732Q-42.643-47.603-42.324-47.344Q-42.004-47.085-41.825-46.719Q-41.647-46.353-41.647-45.899Q-41.647-45.332-41.933-44.849Q-42.219-44.366-42.565-44.046Q-42.912-43.726-43.610-43.160L-44.660-42.290L-42.380-42.290L-42.380-42.481Q-42.350-42.730-42.101-42.759L-41.930-42.759Q-41.808-42.745-41.735-42.676Q-41.662-42.608-41.647-42.481L-41.647-41.919Q-41.662-41.802-41.735-41.729Q-41.808-41.656-41.930-41.641L-45.568-41.641Q-45.812-41.670-45.851-41.919M-40.602-41.919L-40.602-42.012Q-40.602-42.129-40.461-42.251L-38.849-43.589Q-38.776-43.648-38.366-43.992Q-37.956-44.336-37.702-44.617Q-37.448-44.898-37.289-45.223Q-37.131-45.547-37.131-45.899Q-37.131-46.319-37.355-46.617Q-37.580-46.914-37.949-47.063Q-38.317-47.212-38.718-47.212Q-39.069-47.212-39.379-47.027Q-39.689-46.841-39.811-46.509Q-39.670-46.377-39.670-46.182Q-39.670-45.996-39.806-45.855Q-39.943-45.713-40.129-45.713Q-40.339-45.713-40.471-45.857Q-40.602-46.001-40.602-46.202Q-40.602-46.690-40.317-47.071Q-40.031-47.452-39.582-47.657Q-39.133-47.862-38.649-47.862Q-38.205-47.862-37.800-47.732Q-37.394-47.603-37.075-47.344Q-36.755-47.085-36.576-46.719Q-36.398-46.353-36.398-45.899Q-36.398-45.332-36.684-44.849Q-36.970-44.366-37.316-44.046Q-37.663-43.726-38.361-43.160L-39.411-42.290L-37.131-42.290L-37.131-42.481Q-37.101-42.730-36.852-42.759L-36.681-42.759Q-36.559-42.745-36.486-42.676Q-36.413-42.608-36.398-42.481L-36.398-41.919Q-36.413-41.802-36.486-41.729Q-36.559-41.656-36.681-41.641L-40.319-41.641Q-40.563-41.670-40.602-41.919\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(362.038 88.136)\">\u003Cpath d=\"M-55.683-41.375Q-55.683-41.438-55.652-41.481L-51.906-46.739Q-52.363-46.504-52.929-46.504Q-53.582-46.504-54.187-46.825Q-54.043-46.477-54.043-46.032Q-54.043-45.672-54.164-45.301Q-54.285-44.930-54.535-44.674Q-54.785-44.418-55.148-44.418Q-55.535-44.418-55.818-44.662Q-56.101-44.907-56.248-45.280Q-56.394-45.653-56.394-46.032Q-56.394-46.411-56.248-46.782Q-56.101-47.153-55.818-47.397Q-55.535-47.641-55.148-47.641Q-54.832-47.641-54.562-47.403Q-54.226-47.098-53.797-46.926Q-53.367-46.754-52.929-46.754Q-52.437-46.754-52.019-46.967Q-51.601-47.180-51.301-47.578Q-51.258-47.641-51.164-47.641Q-51.090-47.641-51.035-47.586Q-50.980-47.532-50.980-47.457Q-50.980-47.395-51.012-47.352L-55.355-41.258Q-55.402-41.192-55.500-41.192Q-55.582-41.192-55.633-41.243Q-55.683-41.293-55.683-41.375M-55.148-44.672Q-54.875-44.672-54.687-44.897Q-54.500-45.121-54.412-45.444Q-54.324-45.766-54.324-46.032Q-54.324-46.289-54.412-46.612Q-54.500-46.934-54.687-47.159Q-54.875-47.383-55.148-47.383Q-55.535-47.383-55.678-46.955Q-55.820-46.528-55.820-46.032Q-55.820-45.524-55.679-45.098Q-55.539-44.672-55.148-44.672M-51.371-41.192Q-51.758-41.192-52.041-41.438Q-52.324-41.684-52.472-42.057Q-52.621-42.430-52.621-42.809Q-52.621-43.082-52.535-43.370Q-52.449-43.657-52.295-43.891Q-52.140-44.125-51.904-44.272Q-51.668-44.418-51.371-44.418Q-51.090-44.418-50.883-44.266Q-50.676-44.114-50.537-43.871Q-50.398-43.629-50.332-43.348Q-50.265-43.067-50.265-42.809Q-50.265-42.450-50.387-42.077Q-50.508-41.703-50.758-41.448Q-51.008-41.192-51.371-41.192M-51.371-41.450Q-51.097-41.450-50.910-41.674Q-50.722-41.899-50.635-42.221Q-50.547-42.543-50.547-42.809Q-50.547-43.067-50.635-43.389Q-50.722-43.711-50.910-43.936Q-51.097-44.161-51.371-44.161Q-51.762-44.161-51.902-43.731Q-52.043-43.301-52.043-42.809Q-52.043-42.301-51.906-41.875Q-51.769-41.450-51.371-41.450M-47.543-41.641L-49.523-41.641L-49.523-41.938Q-49.254-41.938-49.086-41.983Q-48.918-42.028-48.918-42.200L-48.918-44.336Q-48.918-44.551-48.980-44.647Q-49.043-44.743-49.160-44.764Q-49.277-44.786-49.523-44.786L-49.523-45.082L-48.355-45.168L-48.355-44.383Q-48.277-44.594-48.125-44.780Q-47.972-44.965-47.773-45.067Q-47.574-45.168-47.347-45.168Q-47.101-45.168-46.910-45.024Q-46.719-44.879-46.719-44.649Q-46.719-44.493-46.824-44.383Q-46.929-44.274-47.086-44.274Q-47.242-44.274-47.351-44.383Q-47.461-44.493-47.461-44.649Q-47.461-44.809-47.355-44.914Q-47.679-44.914-47.894-44.686Q-48.109-44.457-48.205-44.118Q-48.301-43.778-48.301-43.473L-48.301-42.200Q-48.301-42.032-48.074-41.985Q-47.847-41.938-47.543-41.938L-47.543-41.641M-44.422-41.563Q-44.902-41.563-45.310-41.807Q-45.719-42.051-45.957-42.465Q-46.195-42.879-46.195-43.368Q-46.195-43.860-45.937-44.276Q-45.679-44.692-45.248-44.930Q-44.816-45.168-44.324-45.168Q-43.703-45.168-43.254-44.731L-43.254-46.360Q-43.254-46.575-43.316-46.670Q-43.379-46.766-43.496-46.787Q-43.613-46.809-43.859-46.809L-43.859-47.106L-42.637-47.192L-42.637-42.383Q-42.637-42.172-42.574-42.077Q-42.512-41.981-42.394-41.959Q-42.277-41.938-42.027-41.938L-42.027-41.641L-43.277-41.563L-43.277-42.047Q-43.742-41.563-44.422-41.563M-44.355-41.817Q-44.015-41.817-43.722-42.008Q-43.429-42.200-43.277-42.496L-43.277-44.328Q-43.426-44.602-43.687-44.758Q-43.949-44.914-44.262-44.914Q-44.887-44.914-45.170-44.467Q-45.453-44.020-45.453-43.360Q-45.453-42.715-45.201-42.266Q-44.949-41.817-44.355-41.817M-39.660-41.641L-41.437-41.641L-41.437-41.938Q-41.164-41.938-40.996-41.985Q-40.828-42.032-40.828-42.200L-40.828-44.336Q-40.828-44.551-40.885-44.647Q-40.941-44.743-41.054-44.764Q-41.168-44.786-41.414-44.786L-41.414-45.082L-40.215-45.168L-40.215-42.200Q-40.215-42.032-40.068-41.985Q-39.922-41.938-39.660-41.938L-39.660-41.641M-41.101-46.563Q-41.101-46.754-40.967-46.885Q-40.832-47.016-40.637-47.016Q-40.515-47.016-40.412-46.953Q-40.308-46.891-40.246-46.787Q-40.183-46.684-40.183-46.563Q-40.183-46.368-40.314-46.233Q-40.445-46.098-40.637-46.098Q-40.836-46.098-40.969-46.231Q-41.101-46.364-41.101-46.563M-33.437-42.618L-38.750-42.618Q-38.828-42.625-38.877-42.674Q-38.926-42.723-38.926-42.801Q-38.926-42.871-38.879-42.922Q-38.832-42.973-38.750-42.985L-33.437-42.985Q-33.363-42.973-33.316-42.922Q-33.269-42.871-33.269-42.801Q-33.269-42.723-33.318-42.674Q-33.367-42.625-33.437-42.618M-33.437-44.305L-38.750-44.305Q-38.828-44.313-38.877-44.362Q-38.926-44.411-38.926-44.489Q-38.926-44.559-38.879-44.610Q-38.832-44.661-38.750-44.672L-33.437-44.672Q-33.363-44.661-33.316-44.610Q-33.269-44.559-33.269-44.489Q-33.269-44.411-33.318-44.362Q-33.367-44.313-33.437-44.305M-29.195-41.641L-31.988-41.641L-31.988-41.938Q-30.926-41.938-30.926-42.200L-30.926-46.368Q-31.355-46.153-32.035-46.153L-32.035-46.450Q-31.015-46.450-30.500-46.961L-30.355-46.961Q-30.281-46.942-30.262-46.864L-30.262-42.200Q-30.262-41.938-29.195-41.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 53.676h423.946\"\u002F>\u003Cg transform=\"translate(-2.157 107.853)\">\u003Cpath d=\"M-55.875-41.985Q-55.644-41.746-55.097-41.746Q-54.844-41.746-54.621-41.870Q-54.398-41.993-54.228-42.209Q-54.058-42.426-53.965-42.657Q-53.840-42.969-53.801-43.309Q-53.762-43.649-53.762-44.098Q-53.929-43.766-54.213-43.571Q-54.496-43.375-54.836-43.375Q-55.199-43.375-55.512-43.520Q-55.824-43.664-56.047-43.916Q-56.269-44.168-56.392-44.495Q-56.515-44.821-56.515-45.176Q-56.515-45.672-56.273-46.082Q-56.031-46.493-55.613-46.727Q-55.195-46.961-54.699-46.961Q-53.742-46.961-53.361-46.131Q-52.980-45.301-52.980-44.227Q-52.980-43.594-53.230-42.950Q-53.480-42.305-53.963-41.889Q-54.445-41.473-55.097-41.473Q-55.601-41.473-55.951-41.690Q-56.301-41.907-56.301-42.375Q-56.301-42.543-56.187-42.657Q-56.074-42.770-55.906-42.770Q-55.801-42.770-55.709-42.719Q-55.617-42.668-55.566-42.577Q-55.515-42.485-55.515-42.375Q-55.515-42.227-55.617-42.106Q-55.719-41.985-55.875-41.985M-54.797-43.633Q-54.465-43.633-54.232-43.844Q-54-44.055-53.888-44.377Q-53.777-44.700-53.777-45.016Q-53.777-45.114-53.789-45.168Q-53.785-45.176-53.781-45.188Q-53.777-45.200-53.777-45.207Q-53.777-45.450-53.820-45.713Q-53.863-45.977-53.965-46.205Q-54.066-46.434-54.248-46.577Q-54.429-46.719-54.699-46.719Q-55.133-46.719-55.359-46.498Q-55.586-46.278-55.658-45.946Q-55.730-45.614-55.730-45.176Q-55.730-44.731-55.674-44.409Q-55.617-44.086-55.412-43.860Q-55.207-43.633-54.797-43.633\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(27.718 108.33)\">\u003Cpath d=\"M-54.245-41.529Q-54.933-41.529-55.424-42.034Q-55.915-42.539-56.152-43.289Q-56.388-44.038-56.388-44.703Q-56.388-45.362-56.152-46.104Q-55.915-46.846-55.424-47.354Q-54.933-47.862-54.245-47.862Q-53.718-47.862-53.305-47.559Q-52.892-47.256-52.631-46.773Q-52.370-46.289-52.238-45.747Q-52.106-45.205-52.106-44.703Q-52.106-44.195-52.238-43.653Q-52.370-43.111-52.634-42.622Q-52.897-42.134-53.307-41.831Q-53.718-41.529-54.245-41.529M-54.245-42.183Q-53.859-42.183-53.588-42.459Q-53.317-42.735-53.154-43.150Q-52.990-43.565-52.914-44.012Q-52.839-44.458-52.839-44.820Q-52.839-45.142-52.917-45.559Q-52.995-45.977-53.159-46.348Q-53.322-46.719-53.598-46.966Q-53.874-47.212-54.245-47.212Q-54.616-47.212-54.885-46.973Q-55.153-46.734-55.322-46.360Q-55.490-45.987-55.573-45.564Q-55.656-45.142-55.656-44.820Q-55.656-44.341-55.517-43.721Q-55.378-43.101-55.055-42.642Q-54.733-42.183-54.245-42.183M-49.587-41.641L-51.047-41.641Q-51.301-41.670-51.330-41.919L-51.330-42.012Q-51.301-42.261-51.047-42.290L-50.519-42.290L-49.318-43.863L-50.446-45.303L-50.988-45.303Q-51.237-45.332-51.266-45.581L-51.266-45.669Q-51.252-45.791-51.183-45.865Q-51.115-45.938-50.988-45.953L-49.528-45.953Q-49.294-45.923-49.250-45.669L-49.250-45.581Q-49.294-45.332-49.528-45.303L-49.719-45.303L-49.030-44.370L-48.346-45.303L-48.556-45.303Q-48.796-45.332-48.840-45.581L-48.840-45.669Q-48.820-45.787-48.744-45.862Q-48.669-45.938-48.556-45.953L-47.096-45.953Q-46.979-45.938-46.906-45.865Q-46.833-45.791-46.818-45.669L-46.818-45.581Q-46.847-45.332-47.096-45.303L-47.629-45.303L-48.727-43.863L-47.497-42.290L-46.960-42.290Q-46.838-42.276-46.764-42.207Q-46.691-42.139-46.677-42.012L-46.677-41.919Q-46.691-41.802-46.764-41.729Q-46.838-41.656-46.960-41.641L-48.420-41.641Q-48.649-41.670-48.698-41.919L-48.698-42.012Q-48.654-42.261-48.420-42.290L-48.200-42.290L-49.030-43.453L-49.816-42.290L-49.587-42.290Q-49.352-42.261-49.308-42.012L-49.308-41.919Q-49.352-41.670-49.587-41.641M-45.851-41.919L-45.851-42.012Q-45.851-42.129-45.710-42.251L-44.098-43.589Q-44.025-43.648-43.615-43.992Q-43.205-44.336-42.951-44.617Q-42.697-44.898-42.538-45.223Q-42.380-45.547-42.380-45.899Q-42.380-46.319-42.604-46.617Q-42.829-46.914-43.198-47.063Q-43.566-47.212-43.967-47.212Q-44.318-47.212-44.628-47.027Q-44.938-46.841-45.060-46.509Q-44.919-46.377-44.919-46.182Q-44.919-45.996-45.055-45.855Q-45.192-45.713-45.378-45.713Q-45.588-45.713-45.720-45.857Q-45.851-46.001-45.851-46.202Q-45.851-46.690-45.566-47.071Q-45.280-47.452-44.831-47.657Q-44.382-47.862-43.898-47.862Q-43.454-47.862-43.049-47.732Q-42.643-47.603-42.324-47.344Q-42.004-47.085-41.825-46.719Q-41.647-46.353-41.647-45.899Q-41.647-45.332-41.933-44.849Q-42.219-44.366-42.565-44.046Q-42.912-43.726-43.610-43.160L-44.660-42.290L-42.380-42.290L-42.380-42.481Q-42.350-42.730-42.101-42.759L-41.930-42.759Q-41.808-42.745-41.735-42.676Q-41.662-42.608-41.647-42.481L-41.647-41.919Q-41.662-41.802-41.735-41.729Q-41.808-41.656-41.930-41.641L-45.568-41.641Q-45.812-41.670-45.851-41.919M-40.602-41.919L-40.602-42.012Q-40.602-42.129-40.461-42.251L-38.849-43.589Q-38.776-43.648-38.366-43.992Q-37.956-44.336-37.702-44.617Q-37.448-44.898-37.289-45.223Q-37.131-45.547-37.131-45.899Q-37.131-46.319-37.355-46.617Q-37.580-46.914-37.949-47.063Q-38.317-47.212-38.718-47.212Q-39.069-47.212-39.379-47.027Q-39.689-46.841-39.811-46.509Q-39.670-46.377-39.670-46.182Q-39.670-45.996-39.806-45.855Q-39.943-45.713-40.129-45.713Q-40.339-45.713-40.471-45.857Q-40.602-46.001-40.602-46.202Q-40.602-46.690-40.317-47.071Q-40.031-47.452-39.582-47.657Q-39.133-47.862-38.649-47.862Q-38.205-47.862-37.800-47.732Q-37.394-47.603-37.075-47.344Q-36.755-47.085-36.576-46.719Q-36.398-46.353-36.398-45.899Q-36.398-45.332-36.684-44.849Q-36.970-44.366-37.316-44.046Q-37.663-43.726-38.361-43.160L-39.411-42.290L-37.131-42.290L-37.131-42.481Q-37.101-42.730-36.852-42.759L-36.681-42.759Q-36.559-42.745-36.486-42.676Q-36.413-42.608-36.398-42.481L-36.398-41.919Q-36.413-41.802-36.486-41.729Q-36.559-41.656-36.681-41.641L-40.319-41.641Q-40.563-41.670-40.602-41.919\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(66.129 106.83)\">\u003Cpath d=\"M-56.484-40.457L-56.484-40.512Q-56.484-40.668-56.359-40.778Q-56.234-40.887-56.074-40.887Q-55.922-40.887-55.799-40.776Q-55.676-40.664-55.676-40.512L-55.676-40.457Q-55.676-40.434-55.678-40.426Q-55.679-40.418-55.683-40.411Q-55.523-40.383-55.211-40.383Q-54.859-40.383-54.676-40.678Q-54.492-40.973-54.492-41.336L-54.492-44.528L-55.594-44.528Q-55.793-44.551-55.844-44.770L-55.844-44.856Q-55.793-45.067-55.594-45.090L-54.097-45.090Q-53.902-45.067-53.851-44.856L-53.851-41.282Q-53.851-40.911-54.033-40.571Q-54.215-40.231-54.531-40.028Q-54.847-39.825-55.219-39.825Q-55.465-39.825-55.652-39.836Q-55.840-39.848-56.037-39.911Q-56.234-39.973-56.359-40.104Q-56.484-40.235-56.484-40.457M-54.746-46.067L-54.746-46.121Q-54.746-46.293-54.609-46.414Q-54.472-46.536-54.301-46.536Q-54.125-46.536-53.988-46.414Q-53.851-46.293-53.851-46.121L-53.851-46.067Q-53.851-45.891-53.988-45.770Q-54.125-45.649-54.301-45.649Q-54.472-45.649-54.609-45.770Q-54.746-45.891-54.746-46.067M-52.551-41.879L-52.551-41.969Q-52.508-42.176-52.301-42.200L-51.879-42.200L-51.879-44.528L-52.301-44.528Q-52.508-44.551-52.551-44.770L-52.551-44.856Q-52.504-45.067-52.301-45.090L-51.484-45.090Q-51.289-45.067-51.238-44.856L-51.238-44.770L-51.246-44.746Q-51.019-44.926-50.746-45.028Q-50.472-45.129-50.179-45.129Q-49.832-45.129-49.594-44.989Q-49.355-44.848-49.240-44.590Q-49.125-44.332-49.125-43.977L-49.125-42.200L-48.699-42.200Q-48.492-42.176-48.453-41.969L-48.453-41.879Q-48.492-41.664-48.699-41.641L-50.094-41.641Q-50.289-41.664-50.340-41.879L-50.340-41.969Q-50.289-42.180-50.094-42.200L-49.765-42.200L-49.765-43.946Q-49.765-44.254-49.855-44.412Q-49.945-44.571-50.238-44.571Q-50.508-44.571-50.736-44.440Q-50.965-44.309-51.101-44.080Q-51.238-43.852-51.238-43.586L-51.238-42.200L-50.812-42.200Q-50.605-42.176-50.566-41.969L-50.566-41.879Q-50.605-41.664-50.812-41.641L-52.301-41.641Q-52.508-41.664-52.551-41.879M-44.863-43.129L-47.304-43.129Q-47.250-42.852-47.053-42.629Q-46.855-42.407-46.578-42.284Q-46.301-42.161-46.015-42.161Q-45.543-42.161-45.320-42.450Q-45.312-42.461-45.256-42.567Q-45.199-42.672-45.150-42.715Q-45.101-42.758-45.008-42.770L-44.863-42.770Q-44.672-42.750-44.613-42.536L-44.613-42.481Q-44.679-42.180-44.910-41.983Q-45.140-41.786-45.453-41.694Q-45.765-41.602-46.070-41.602Q-46.554-41.602-46.994-41.830Q-47.433-42.059-47.701-42.459Q-47.969-42.860-47.969-43.352L-47.969-43.411Q-47.969-43.879-47.722-44.282Q-47.476-44.684-47.068-44.918Q-46.660-45.153-46.191-45.153Q-45.687-45.153-45.334-44.930Q-44.980-44.707-44.797-44.319Q-44.613-43.930-44.613-43.426L-44.613-43.368Q-44.672-43.153-44.863-43.129M-47.297-43.680L-45.269-43.680Q-45.316-44.090-45.554-44.342Q-45.793-44.594-46.191-44.594Q-46.586-44.594-46.892-44.332Q-47.199-44.071-47.297-43.680\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(66.129 106.83)\">\u003Cpath d=\"M-37.746-41.563Q-38.179-41.563-38.512-41.801Q-38.844-42.039-39.064-42.428Q-39.285-42.817-39.392-43.254Q-39.500-43.692-39.500-44.090Q-39.500-44.481-39.390-44.924Q-39.281-45.368-39.064-45.748Q-38.847-46.129-38.513-46.370Q-38.179-46.610-37.746-46.610Q-37.191-46.610-36.791-46.211Q-36.390-45.813-36.193-45.227Q-35.996-44.641-35.996-44.090Q-35.996-43.536-36.193-42.948Q-36.390-42.360-36.791-41.961Q-37.191-41.563-37.746-41.563M-37.746-42.121Q-37.445-42.121-37.228-42.338Q-37.012-42.555-36.885-42.883Q-36.758-43.211-36.697-43.557Q-36.637-43.903-36.637-44.184Q-36.637-44.434-36.699-44.760Q-36.762-45.086-36.892-45.377Q-37.023-45.668-37.236-45.858Q-37.449-46.047-37.746-46.047Q-38.121-46.047-38.373-45.735Q-38.625-45.422-38.742-44.989Q-38.859-44.555-38.859-44.184Q-38.859-43.786-38.746-43.305Q-38.633-42.825-38.385-42.473Q-38.137-42.121-37.746-42.121M-35.363-41.879L-35.363-41.969Q-35.324-42.176-35.117-42.200L-34.711-42.200L-33.781-43.418L-34.652-44.528L-35.070-44.528Q-35.265-44.547-35.316-44.770L-35.316-44.856Q-35.265-45.067-35.070-45.090L-33.910-45.090Q-33.711-45.067-33.660-44.856L-33.660-44.770Q-33.711-44.551-33.910-44.528L-34.019-44.528L-33.523-43.871L-33.047-44.528L-33.164-44.528Q-33.363-44.551-33.414-44.770L-33.414-44.856Q-33.363-45.067-33.164-45.090L-32.004-45.090Q-31.808-45.071-31.758-44.856L-31.758-44.770Q-31.808-44.551-32.004-44.528L-32.414-44.528L-33.262-43.418L-32.301-42.200L-31.894-42.200Q-31.695-42.176-31.644-41.969L-31.644-41.879Q-31.683-41.664-31.894-41.641L-33.047-41.641Q-33.254-41.664-33.293-41.879L-33.293-41.969Q-33.254-42.176-33.047-42.200L-32.918-42.200L-33.523-43.055L-34.109-42.200L-33.965-42.200Q-33.758-42.176-33.719-41.969L-33.719-41.879Q-33.758-41.664-33.965-41.641L-35.117-41.641Q-35.312-41.661-35.363-41.879M-30.519-41.879L-30.519-41.969Q-30.469-42.176-30.269-42.200L-29.453-42.200L-29.453-45.383Q-29.832-45.075-30.285-45.075Q-30.515-45.075-30.566-45.305L-30.566-45.395Q-30.515-45.610-30.320-45.633Q-29.992-45.633-29.738-45.871Q-29.484-46.110-29.344-46.457Q-29.273-46.586-29.117-46.610L-29.062-46.610Q-28.867-46.590-28.816-46.375L-28.816-42.200L-28-42.200Q-27.801-42.176-27.750-41.969L-27.750-41.879Q-27.801-41.664-28-41.641L-30.269-41.641Q-30.469-41.664-30.519-41.879M-23.617-43.129L-26.058-43.129Q-26.004-42.852-25.806-42.629Q-25.609-42.407-25.332-42.284Q-25.054-42.161-24.769-42.161Q-24.297-42.161-24.074-42.450Q-24.066-42.461-24.010-42.567Q-23.953-42.672-23.904-42.715Q-23.855-42.758-23.762-42.770L-23.617-42.770Q-23.426-42.750-23.367-42.536L-23.367-42.481Q-23.433-42.180-23.664-41.983Q-23.894-41.786-24.207-41.694Q-24.519-41.602-24.824-41.602Q-25.308-41.602-25.748-41.830Q-26.187-42.059-26.455-42.459Q-26.722-42.860-26.722-43.352L-26.722-43.411Q-26.722-43.879-26.476-44.282Q-26.230-44.684-25.822-44.918Q-25.414-45.153-24.945-45.153Q-24.441-45.153-24.088-44.930Q-23.734-44.707-23.551-44.319Q-23.367-43.930-23.367-43.426L-23.367-43.368Q-23.426-43.153-23.617-43.129M-26.051-43.680L-24.023-43.680Q-24.070-44.090-24.308-44.342Q-24.547-44.594-24.945-44.594Q-25.340-44.594-25.646-44.332Q-25.953-44.071-26.051-43.680\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(157.178 108.053)\">\u003Cpath d=\"M-52.250-41.641L-56.281-41.641Q-56.332-41.641-56.363-41.672Q-56.394-41.703-56.394-41.754L-56.394-41.856Q-56.394-41.883-56.363-41.930L-53.066-46.809L-54.242-46.809Q-54.679-46.809-55.002-46.743Q-55.324-46.676-55.554-46.465Q-55.781-46.250-55.888-45.928Q-55.996-45.606-55.996-45.258L-56.273-45.258L-56.179-47.106L-52.265-47.106Q-52.219-47.106-52.187-47.073Q-52.156-47.039-52.156-46.993L-52.156-46.907Q-52.156-46.903-52.179-46.832L-55.484-41.961L-54.250-41.961Q-53.957-41.961-53.709-41.987Q-53.461-42.012-53.232-42.094Q-53.004-42.176-52.820-42.352Q-52.582-42.590-52.500-42.944Q-52.418-43.297-52.387-43.825L-52.105-43.825L-52.250-41.641M-48.754-41.641L-51.340-41.641L-51.340-41.938Q-51.019-41.938-50.775-41.985Q-50.531-42.032-50.531-42.200L-50.531-46.543Q-50.531-46.715-50.775-46.762Q-51.019-46.809-51.340-46.809L-51.340-47.106L-46.722-47.106L-46.492-45.258L-46.773-45.258Q-46.859-45.942-47.021-46.262Q-47.183-46.582-47.523-46.696Q-47.863-46.809-48.554-46.809L-49.363-46.809Q-49.582-46.809-49.674-46.766Q-49.765-46.723-49.765-46.543L-49.765-44.520L-49.156-44.520Q-48.730-44.520-48.533-44.586Q-48.336-44.653-48.254-44.846Q-48.172-45.039-48.172-45.457L-47.890-45.457L-47.890-43.289L-48.172-43.289Q-48.172-43.707-48.254-43.901Q-48.336-44.094-48.533-44.161Q-48.730-44.227-49.156-44.227L-49.765-44.227L-49.765-42.200Q-49.765-42.036-49.447-41.987Q-49.129-41.938-48.754-41.938L-48.754-41.641M-40.172-42.618L-45.484-42.618Q-45.562-42.625-45.611-42.674Q-45.660-42.723-45.660-42.801Q-45.660-42.871-45.613-42.922Q-45.566-42.973-45.484-42.985L-40.172-42.985Q-40.097-42.973-40.051-42.922Q-40.004-42.871-40.004-42.801Q-40.004-42.723-40.053-42.674Q-40.101-42.625-40.172-42.618M-40.172-44.305L-45.484-44.305Q-45.562-44.313-45.611-44.362Q-45.660-44.411-45.660-44.489Q-45.660-44.559-45.613-44.610Q-45.566-44.661-45.484-44.672L-40.172-44.672Q-40.097-44.661-40.051-44.610Q-40.004-44.559-40.004-44.489Q-40.004-44.411-40.053-44.362Q-40.101-44.313-40.172-44.305M-37.402-41.473Q-38.105-41.473-38.506-41.873Q-38.906-42.274-39.051-42.883Q-39.195-43.493-39.195-44.192Q-39.195-44.715-39.125-45.178Q-39.054-45.641-38.861-46.053Q-38.668-46.465-38.310-46.713Q-37.953-46.961-37.402-46.961Q-36.851-46.961-36.494-46.713Q-36.137-46.465-35.945-46.055Q-35.754-45.645-35.683-45.176Q-35.613-44.707-35.613-44.192Q-35.613-43.493-35.756-42.885Q-35.898-42.278-36.299-41.875Q-36.699-41.473-37.402-41.473M-37.402-41.731Q-36.929-41.731-36.697-42.166Q-36.465-42.602-36.410-43.141Q-36.355-43.680-36.355-44.321Q-36.355-45.317-36.539-46.010Q-36.722-46.703-37.402-46.703Q-37.769-46.703-37.990-46.465Q-38.211-46.227-38.306-45.870Q-38.402-45.512-38.428-45.141Q-38.453-44.770-38.453-44.321Q-38.453-43.680-38.398-43.141Q-38.344-42.602-38.111-42.166Q-37.879-41.731-37.402-41.731M-34.558-42.106Q-34.558-42.289-34.422-42.426Q-34.285-42.563-34.094-42.563Q-33.902-42.563-33.769-42.430Q-33.637-42.297-33.637-42.106Q-33.637-41.907-33.769-41.774Q-33.902-41.641-34.094-41.641Q-34.285-41.641-34.422-41.778Q-34.558-41.914-34.558-42.106M-34.558-44.633Q-34.558-44.817-34.422-44.953Q-34.285-45.090-34.094-45.090Q-33.902-45.090-33.769-44.957Q-33.637-44.825-33.637-44.633Q-33.637-44.434-33.769-44.301Q-33.902-44.168-34.094-44.168Q-34.285-44.168-34.422-44.305Q-34.558-44.442-34.558-44.633\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 108.053)\">\u003Cpath d=\"M-28.265-42.602L-28.265-44.793L-28.968-44.793L-28.968-45.047Q-28.612-45.047-28.370-45.280Q-28.128-45.512-28.017-45.860Q-27.905-46.207-27.905-46.563L-27.624-46.563L-27.624-45.090L-26.448-45.090L-26.448-44.793L-27.624-44.793L-27.624-42.618Q-27.624-42.297-27.505-42.069Q-27.386-41.840-27.105-41.840Q-26.925-41.840-26.808-41.963Q-26.691-42.086-26.638-42.266Q-26.585-42.446-26.585-42.618L-26.585-43.090L-26.304-43.090L-26.304-42.602Q-26.304-42.348-26.409-42.108Q-26.515-41.868-26.712-41.715Q-26.909-41.563-27.167-41.563Q-27.483-41.563-27.735-41.686Q-27.987-41.809-28.126-42.043Q-28.265-42.278-28.265-42.602M-25.487-42.473Q-25.487-42.957-25.085-43.252Q-24.683-43.547-24.132-43.666Q-23.581-43.786-23.089-43.786L-23.089-44.075Q-23.089-44.301-23.204-44.508Q-23.319-44.715-23.517-44.834Q-23.714-44.953-23.944-44.953Q-24.370-44.953-24.655-44.848Q-24.585-44.821-24.538-44.766Q-24.491-44.711-24.466-44.641Q-24.441-44.571-24.441-44.496Q-24.441-44.391-24.491-44.299Q-24.542-44.207-24.634-44.157Q-24.726-44.106-24.831-44.106Q-24.937-44.106-25.028-44.157Q-25.120-44.207-25.171-44.299Q-25.222-44.391-25.222-44.496Q-25.222-44.914-24.833-45.061Q-24.444-45.207-23.944-45.207Q-23.612-45.207-23.259-45.077Q-22.905-44.946-22.677-44.692Q-22.448-44.438-22.448-44.090L-22.448-42.289Q-22.448-42.157-22.376-42.047Q-22.304-41.938-22.175-41.938Q-22.050-41.938-21.982-42.043Q-21.913-42.149-21.913-42.289L-21.913-42.801L-21.632-42.801L-21.632-42.289Q-21.632-42.086-21.749-41.928Q-21.866-41.770-22.048-41.686Q-22.230-41.602-22.433-41.602Q-22.663-41.602-22.816-41.774Q-22.968-41.946-22.999-42.176Q-23.159-41.895-23.468-41.729Q-23.776-41.563-24.128-41.563Q-24.640-41.563-25.064-41.786Q-25.487-42.008-25.487-42.473M-24.800-42.473Q-24.800-42.188-24.573-42.002Q-24.347-41.817-24.054-41.817Q-23.808-41.817-23.583-41.934Q-23.358-42.051-23.224-42.254Q-23.089-42.457-23.089-42.711L-23.089-43.543Q-23.355-43.543-23.640-43.489Q-23.925-43.434-24.196-43.305Q-24.468-43.176-24.634-42.969Q-24.800-42.762-24.800-42.473M-19.515-41.641L-21.312-41.641L-21.312-41.938Q-21.042-41.938-20.874-41.983Q-20.706-42.028-20.706-42.200L-20.706-46.360Q-20.706-46.575-20.769-46.670Q-20.831-46.766-20.948-46.787Q-21.066-46.809-21.312-46.809L-21.312-47.106L-20.089-47.192L-20.089-43.426L-18.991-44.313Q-18.784-44.493-18.784-44.641Q-18.784-44.707-18.837-44.750Q-18.890-44.793-18.960-44.793L-18.960-45.090L-17.425-45.090L-17.425-44.793Q-17.956-44.793-18.554-44.313L-19.163-43.817L-18.089-42.418Q-17.952-42.243-17.845-42.135Q-17.737-42.028-17.603-41.983Q-17.468-41.938-17.241-41.938L-17.241-41.641L-18.866-41.641L-18.866-41.938Q-18.624-41.938-18.624-42.090Q-18.624-42.168-18.667-42.239Q-18.710-42.309-18.792-42.418L-19.593-43.465L-20.120-43.039L-20.120-42.200Q-20.120-42.032-19.952-41.985Q-19.784-41.938-19.515-41.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 108.053)\">\u003Cpath d=\"M-17.084-43.395Q-17.084-43.875-16.851-44.291Q-16.619-44.707-16.209-44.957Q-15.799-45.207-15.322-45.207Q-14.592-45.207-14.193-44.766Q-13.795-44.325-13.795-43.594Q-13.795-43.489-13.888-43.465L-16.338-43.465L-16.338-43.395Q-16.338-42.985-16.217-42.629Q-16.095-42.274-15.824-42.057Q-15.552-41.840-15.123-41.840Q-14.759-41.840-14.463-42.069Q-14.166-42.297-14.064-42.649Q-14.056-42.696-13.970-42.711L-13.888-42.711Q-13.795-42.684-13.795-42.602Q-13.795-42.594-13.802-42.563Q-13.865-42.336-14.004-42.153Q-14.142-41.969-14.334-41.836Q-14.525-41.703-14.744-41.633Q-14.963-41.563-15.201-41.563Q-15.572-41.563-15.910-41.700Q-16.248-41.836-16.515-42.088Q-16.783-42.340-16.933-42.680Q-17.084-43.020-17.084-43.395M-16.330-43.703L-14.369-43.703Q-14.369-44.008-14.470-44.299Q-14.572-44.590-14.789-44.772Q-15.006-44.953-15.322-44.953Q-15.623-44.953-15.853-44.766Q-16.084-44.578-16.207-44.287Q-16.330-43.996-16.330-43.703M-11.377-41.641L-13.232-41.641L-13.232-41.938Q-12.959-41.938-12.791-41.985Q-12.623-42.032-12.623-42.200L-12.623-44.336Q-12.623-44.551-12.685-44.647Q-12.748-44.743-12.867-44.764Q-12.986-44.786-13.232-44.786L-13.232-45.082L-12.041-45.168L-12.041-44.434Q-11.927-44.649-11.734-44.817Q-11.541-44.985-11.302-45.077Q-11.064-45.168-10.810-45.168Q-9.642-45.168-9.642-44.090L-9.642-42.200Q-9.642-42.032-9.472-41.985Q-9.302-41.938-9.033-41.938L-9.033-41.641L-10.888-41.641L-10.888-41.938Q-10.615-41.938-10.447-41.985Q-10.279-42.032-10.279-42.200L-10.279-44.075Q-10.279-44.457-10.400-44.686Q-10.521-44.914-10.873-44.914Q-11.185-44.914-11.439-44.752Q-11.693-44.590-11.840-44.321Q-11.986-44.051-11.986-43.754L-11.986-42.200Q-11.986-42.032-11.816-41.985Q-11.646-41.938-11.377-41.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(259.608 106.997)\">\u003Cpath d=\"M-54.515-43.090L-56.769-43.090L-56.769-43.641L-54.515-43.641\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(316.513 108.33)\">\u003Cpath d=\"M-54.245-41.529Q-54.933-41.529-55.424-42.034Q-55.915-42.539-56.152-43.289Q-56.388-44.038-56.388-44.703Q-56.388-45.362-56.152-46.104Q-55.915-46.846-55.424-47.354Q-54.933-47.862-54.245-47.862Q-53.718-47.862-53.305-47.559Q-52.892-47.256-52.631-46.773Q-52.370-46.289-52.238-45.747Q-52.106-45.205-52.106-44.703Q-52.106-44.195-52.238-43.653Q-52.370-43.111-52.634-42.622Q-52.897-42.134-53.307-41.831Q-53.718-41.529-54.245-41.529M-54.245-42.183Q-53.859-42.183-53.588-42.459Q-53.317-42.735-53.154-43.150Q-52.990-43.565-52.914-44.012Q-52.839-44.458-52.839-44.820Q-52.839-45.142-52.917-45.559Q-52.995-45.977-53.159-46.348Q-53.322-46.719-53.598-46.966Q-53.874-47.212-54.245-47.212Q-54.616-47.212-54.885-46.973Q-55.153-46.734-55.322-46.360Q-55.490-45.987-55.573-45.564Q-55.656-45.142-55.656-44.820Q-55.656-44.341-55.517-43.721Q-55.378-43.101-55.055-42.642Q-54.733-42.183-54.245-42.183M-49.587-41.641L-51.047-41.641Q-51.301-41.670-51.330-41.919L-51.330-42.012Q-51.301-42.261-51.047-42.290L-50.519-42.290L-49.318-43.863L-50.446-45.303L-50.988-45.303Q-51.237-45.332-51.266-45.581L-51.266-45.669Q-51.252-45.791-51.183-45.865Q-51.115-45.938-50.988-45.953L-49.528-45.953Q-49.294-45.923-49.250-45.669L-49.250-45.581Q-49.294-45.332-49.528-45.303L-49.719-45.303L-49.030-44.370L-48.346-45.303L-48.556-45.303Q-48.796-45.332-48.840-45.581L-48.840-45.669Q-48.820-45.787-48.744-45.862Q-48.669-45.938-48.556-45.953L-47.096-45.953Q-46.979-45.938-46.906-45.865Q-46.833-45.791-46.818-45.669L-46.818-45.581Q-46.847-45.332-47.096-45.303L-47.629-45.303L-48.727-43.863L-47.497-42.290L-46.960-42.290Q-46.838-42.276-46.764-42.207Q-46.691-42.139-46.677-42.012L-46.677-41.919Q-46.691-41.802-46.764-41.729Q-46.838-41.656-46.960-41.641L-48.420-41.641Q-48.649-41.670-48.698-41.919L-48.698-42.012Q-48.654-42.261-48.420-42.290L-48.200-42.290L-49.030-43.453L-49.816-42.290L-49.587-42.290Q-49.352-42.261-49.308-42.012L-49.308-41.919Q-49.352-41.670-49.587-41.641M-45.280-41.919L-45.280-42.012Q-45.251-42.261-44.997-42.290L-43.967-42.290L-43.967-46.412Q-44.460-45.992-45.021-45.992Q-45.138-45.992-45.231-46.067Q-45.324-46.143-45.339-46.270L-45.339-46.363Q-45.304-46.612-45.060-46.641Q-44.645-46.641-44.328-46.951Q-44.011-47.261-43.849-47.681Q-43.771-47.832-43.591-47.862L-43.517-47.862Q-43.400-47.847-43.327-47.774Q-43.254-47.701-43.239-47.583L-43.239-42.290L-42.209-42.290Q-41.960-42.261-41.930-42.012L-41.930-41.919Q-41.960-41.670-42.209-41.641L-44.997-41.641Q-45.251-41.670-45.280-41.919M-36.760-43.531L-39.831-43.531Q-39.723-42.959-39.255-42.596Q-38.786-42.232-38.190-42.232Q-37.878-42.232-37.597-42.376Q-37.316-42.520-37.209-42.779Q-37.131-43.008-36.930-43.033L-36.760-43.033Q-36.633-43.018-36.557-42.933Q-36.481-42.847-36.481-42.730Q-36.481-42.701-36.484-42.683Q-36.486-42.666-36.491-42.642Q-36.681-42.115-37.177-41.849Q-37.673-41.582-38.268-41.582Q-38.874-41.582-39.413-41.878Q-39.953-42.173-40.270-42.681Q-40.588-43.189-40.588-43.809Q-40.588-44.258-40.422-44.659Q-40.256-45.059-39.960-45.374Q-39.665-45.689-39.267-45.865Q-38.869-46.040-38.420-46.040Q-37.795-46.040-37.355-45.755Q-36.916-45.469-36.699-44.974Q-36.481-44.478-36.481-43.853Q-36.481-43.721-36.559-43.633Q-36.638-43.545-36.760-43.531M-39.821-44.170L-37.228-44.170Q-37.267-44.522-37.409-44.798Q-37.551-45.074-37.804-45.232Q-38.058-45.391-38.420-45.391Q-38.752-45.391-39.052-45.225Q-39.352-45.059-39.555-44.776Q-39.758-44.493-39.821-44.170\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(362.038 107.275)\">\u003Cpath d=\"M-54.715-41.641L-56.547-41.641L-56.547-41.938Q-56.273-41.938-56.105-41.985Q-55.937-42.032-55.937-42.200L-55.937-46.360Q-55.937-46.575-56-46.670Q-56.062-46.766-56.181-46.787Q-56.301-46.809-56.547-46.809L-56.547-47.106L-55.324-47.192L-55.324-42.200Q-55.324-42.032-55.156-41.985Q-54.988-41.938-54.715-41.938L-54.715-41.641M-54.269-43.336Q-54.269-43.840-54.013-44.272Q-53.758-44.703-53.322-44.955Q-52.887-45.207-52.387-45.207Q-52-45.207-51.658-45.063Q-51.316-44.918-51.054-44.657Q-50.793-44.395-50.650-44.059Q-50.508-43.723-50.508-43.336Q-50.508-42.844-50.771-42.434Q-51.035-42.024-51.465-41.793Q-51.894-41.563-52.387-41.563Q-52.879-41.563-53.312-41.795Q-53.746-42.028-54.008-42.436Q-54.269-42.844-54.269-43.336M-52.387-41.840Q-51.929-41.840-51.678-42.063Q-51.426-42.286-51.338-42.637Q-51.250-42.989-51.250-43.434Q-51.250-43.864-51.344-44.202Q-51.437-44.539-51.691-44.746Q-51.945-44.953-52.387-44.953Q-53.035-44.953-53.279-44.537Q-53.523-44.121-53.523-43.434Q-53.523-42.989-53.435-42.637Q-53.347-42.286-53.096-42.063Q-52.844-41.840-52.387-41.840\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(362.038 107.275)\">\u003Cpath d=\"M-49.782-43.336Q-49.782-43.840-49.526-44.272Q-49.270-44.703-48.834-44.955Q-48.399-45.207-47.899-45.207Q-47.512-45.207-47.170-45.063Q-46.829-44.918-46.567-44.657Q-46.305-44.395-46.163-44.059Q-46.020-43.723-46.020-43.336Q-46.020-42.844-46.284-42.434Q-46.547-42.024-46.977-41.793Q-47.407-41.563-47.899-41.563Q-48.391-41.563-48.825-41.795Q-49.258-42.028-49.520-42.436Q-49.782-42.844-49.782-43.336M-47.899-41.840Q-47.442-41.840-47.190-42.063Q-46.938-42.286-46.850-42.637Q-46.762-42.989-46.762-43.434Q-46.762-43.864-46.856-44.202Q-46.950-44.539-47.204-44.746Q-47.458-44.953-47.899-44.953Q-48.547-44.953-48.791-44.537Q-49.036-44.121-49.036-43.434Q-49.036-42.989-48.948-42.637Q-48.860-42.286-48.608-42.063Q-48.356-41.840-47.899-41.840M-43.653-40.090L-45.508-40.090L-45.508-40.383Q-45.239-40.383-45.071-40.428Q-44.903-40.473-44.903-40.649L-44.903-44.473Q-44.903-44.680-45.059-44.733Q-45.215-44.786-45.508-44.786L-45.508-45.082L-44.286-45.168L-44.286-44.703Q-44.055-44.926-43.741-45.047Q-43.426-45.168-43.086-45.168Q-42.614-45.168-42.209-44.922Q-41.805-44.676-41.573-44.260Q-41.340-43.844-41.340-43.368Q-41.340-42.993-41.489-42.664Q-41.637-42.336-41.907-42.084Q-42.176-41.832-42.520-41.698Q-42.864-41.563-43.223-41.563Q-43.512-41.563-43.784-41.684Q-44.055-41.805-44.262-42.016L-44.262-40.649Q-44.262-40.473-44.094-40.428Q-43.926-40.383-43.653-40.383L-43.653-40.090M-44.262-44.305L-44.262-42.465Q-44.110-42.176-43.848-41.996Q-43.586-41.817-43.278-41.817Q-42.993-41.817-42.770-41.955Q-42.547-42.094-42.395-42.325Q-42.243-42.555-42.165-42.827Q-42.086-43.098-42.086-43.368Q-42.086-43.700-42.211-44.057Q-42.336-44.414-42.584-44.651Q-42.833-44.887-43.180-44.887Q-43.504-44.887-43.799-44.731Q-44.094-44.575-44.262-44.305\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(362.038 107.275)\">\u003Cpath d=\"M-37.878-42.473Q-37.878-42.957-37.476-43.252Q-37.073-43.547-36.523-43.666Q-35.972-43.786-35.480-43.786L-35.480-44.075Q-35.480-44.301-35.595-44.508Q-35.710-44.715-35.907-44.834Q-36.105-44.953-36.335-44.953Q-36.761-44.953-37.046-44.848Q-36.976-44.821-36.929-44.766Q-36.882-44.711-36.857-44.641Q-36.831-44.571-36.831-44.496Q-36.831-44.391-36.882-44.299Q-36.933-44.207-37.025-44.157Q-37.116-44.106-37.222-44.106Q-37.327-44.106-37.419-44.157Q-37.511-44.207-37.562-44.299Q-37.612-44.391-37.612-44.496Q-37.612-44.914-37.224-45.061Q-36.835-45.207-36.335-45.207Q-36.003-45.207-35.650-45.077Q-35.296-44.946-35.068-44.692Q-34.839-44.438-34.839-44.090L-34.839-42.289Q-34.839-42.157-34.767-42.047Q-34.694-41.938-34.566-41.938Q-34.441-41.938-34.372-42.043Q-34.304-42.149-34.304-42.289L-34.304-42.801L-34.023-42.801L-34.023-42.289Q-34.023-42.086-34.140-41.928Q-34.257-41.770-34.439-41.686Q-34.620-41.602-34.823-41.602Q-35.054-41.602-35.206-41.774Q-35.359-41.946-35.390-42.176Q-35.550-41.895-35.859-41.729Q-36.167-41.563-36.519-41.563Q-37.030-41.563-37.454-41.786Q-37.878-42.008-37.878-42.473M-37.191-42.473Q-37.191-42.188-36.964-42.002Q-36.737-41.817-36.444-41.817Q-36.198-41.817-35.974-41.934Q-35.749-42.051-35.614-42.254Q-35.480-42.457-35.480-42.711L-35.480-43.543Q-35.745-43.543-36.030-43.489Q-36.316-43.434-36.587-43.305Q-36.859-43.176-37.025-42.969Q-37.191-42.762-37.191-42.473M-33.730-41.032Q-33.730-41.313-33.519-41.524Q-33.308-41.735-33.023-41.825Q-33.179-41.950-33.257-42.139Q-33.335-42.328-33.335-42.528Q-33.335-42.883-33.105-43.176Q-33.472-43.516-33.472-43.985Q-33.472-44.336-33.269-44.606Q-33.066-44.875-32.745-45.022Q-32.425-45.168-32.081-45.168Q-31.562-45.168-31.191-44.887Q-30.827-45.258-30.280-45.258Q-30.101-45.258-29.974-45.131Q-29.847-45.004-29.847-44.825Q-29.847-44.719-29.925-44.641Q-30.003-44.563-30.112-44.563Q-30.222-44.563-30.298-44.639Q-30.374-44.715-30.374-44.825Q-30.374-44.926-30.335-44.977Q-30.327-44.985-30.323-44.991Q-30.319-44.996-30.319-45Q-30.694-45-31.015-44.746Q-30.694-44.407-30.694-43.985Q-30.694-43.715-30.812-43.498Q-30.929-43.282-31.134-43.123Q-31.339-42.965-31.581-42.883Q-31.823-42.801-32.081-42.801Q-32.300-42.801-32.513-42.860Q-32.726-42.918-32.921-43.039Q-33.015-42.899-33.015-42.719Q-33.015-42.512-32.878-42.360Q-32.741-42.207-32.534-42.207L-31.839-42.207Q-31.351-42.207-30.939-42.123Q-30.526-42.039-30.247-41.782Q-29.968-41.524-29.968-41.032Q-29.968-40.668-30.288-40.436Q-30.609-40.203-31.050-40.102Q-31.491-40-31.847-40Q-32.202-40-32.646-40.102Q-33.089-40.203-33.409-40.436Q-33.730-40.668-33.730-41.032M-33.226-41.032Q-33.226-40.836-33.081-40.688Q-32.937-40.539-32.724-40.450Q-32.511-40.360-32.271-40.313Q-32.030-40.266-31.847-40.266Q-31.605-40.266-31.275-40.344Q-30.944-40.422-30.708-40.596Q-30.472-40.770-30.472-41.032Q-30.472-41.438-30.882-41.547Q-31.292-41.657-31.855-41.657L-32.534-41.657Q-32.804-41.657-33.015-41.479Q-33.226-41.301-33.226-41.032M-32.081-43.067Q-31.359-43.067-31.359-43.985Q-31.359-44.907-32.081-44.907Q-32.808-44.907-32.808-43.985Q-32.808-43.067-32.081-43.067M-29.386-42.473Q-29.386-42.957-28.984-43.252Q-28.581-43.547-28.030-43.666Q-27.480-43.786-26.987-43.786L-26.987-44.075Q-26.987-44.301-27.103-44.508Q-27.218-44.715-27.415-44.834Q-27.612-44.953-27.843-44.953Q-28.269-44.953-28.554-44.848Q-28.484-44.821-28.437-44.766Q-28.390-44.711-28.364-44.641Q-28.339-44.571-28.339-44.496Q-28.339-44.391-28.390-44.299Q-28.441-44.207-28.532-44.157Q-28.624-44.106-28.730-44.106Q-28.835-44.106-28.927-44.157Q-29.019-44.207-29.069-44.299Q-29.120-44.391-29.120-44.496Q-29.120-44.914-28.732-45.061Q-28.343-45.207-27.843-45.207Q-27.511-45.207-27.157-45.077Q-26.804-44.946-26.575-44.692Q-26.347-44.438-26.347-44.090L-26.347-42.289Q-26.347-42.157-26.275-42.047Q-26.202-41.938-26.073-41.938Q-25.948-41.938-25.880-42.043Q-25.812-42.149-25.812-42.289L-25.812-42.801L-25.530-42.801L-25.530-42.289Q-25.530-42.086-25.648-41.928Q-25.765-41.770-25.946-41.686Q-26.128-41.602-26.331-41.602Q-26.562-41.602-26.714-41.774Q-26.866-41.946-26.898-42.176Q-27.058-41.895-27.366-41.729Q-27.675-41.563-28.026-41.563Q-28.538-41.563-28.962-41.786Q-29.386-42.008-29.386-42.473M-28.698-42.473Q-28.698-42.188-28.472-42.002Q-28.245-41.817-27.952-41.817Q-27.706-41.817-27.482-41.934Q-27.257-42.051-27.122-42.254Q-26.987-42.457-26.987-42.711L-26.987-43.543Q-27.253-43.543-27.538-43.489Q-27.823-43.434-28.095-43.305Q-28.366-43.176-28.532-42.969Q-28.698-42.762-28.698-42.473M-23.378-41.641L-25.155-41.641L-25.155-41.938Q-24.882-41.938-24.714-41.985Q-24.546-42.032-24.546-42.200L-24.546-44.336Q-24.546-44.551-24.603-44.647Q-24.659-44.743-24.773-44.764Q-24.886-44.786-25.132-44.786L-25.132-45.082L-23.933-45.168L-23.933-42.200Q-23.933-42.032-23.786-41.985Q-23.640-41.938-23.378-41.938L-23.378-41.641M-24.819-46.563Q-24.819-46.754-24.685-46.885Q-24.550-47.016-24.355-47.016Q-24.234-47.016-24.130-46.953Q-24.026-46.891-23.964-46.787Q-23.901-46.684-23.901-46.563Q-23.901-46.368-24.032-46.233Q-24.163-46.098-24.355-46.098Q-24.554-46.098-24.687-46.231Q-24.819-46.364-24.819-46.563M-20.948-41.641L-22.804-41.641L-22.804-41.938Q-22.530-41.938-22.362-41.985Q-22.194-42.032-22.194-42.200L-22.194-44.336Q-22.194-44.551-22.257-44.647Q-22.319-44.743-22.439-44.764Q-22.558-44.786-22.804-44.786L-22.804-45.082L-21.612-45.168L-21.612-44.434Q-21.499-44.649-21.306-44.817Q-21.112-44.985-20.874-45.077Q-20.636-45.168-20.382-45.168Q-19.214-45.168-19.214-44.090L-19.214-42.200Q-19.214-42.032-19.044-41.985Q-18.874-41.938-18.605-41.938L-18.605-41.641L-20.460-41.641L-20.460-41.938Q-20.187-41.938-20.019-41.985Q-19.851-42.032-19.851-42.200L-19.851-44.075Q-19.851-44.457-19.972-44.686Q-20.093-44.914-20.444-44.914Q-20.757-44.914-21.011-44.752Q-21.265-44.590-21.411-44.321Q-21.558-44.051-21.558-43.754L-21.558-42.200Q-21.558-42.032-21.388-41.985Q-21.218-41.938-20.948-41.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 73.593h423.946\"\u002F>\u003Cg transform=\"translate(-2.157 133.46)\">\u003Cpath d=\"M-53.273-41.641L-56.066-41.641L-56.066-41.938Q-55.004-41.938-55.004-42.200L-55.004-46.368Q-55.433-46.153-56.113-46.153L-56.113-46.450Q-55.094-46.450-54.578-46.961L-54.433-46.961Q-54.359-46.942-54.340-46.864L-54.340-42.200Q-54.340-41.938-53.273-41.938L-53.273-41.641M-50.500-41.473Q-51.203-41.473-51.603-41.873Q-52.004-42.274-52.148-42.883Q-52.293-43.493-52.293-44.192Q-52.293-44.715-52.222-45.178Q-52.152-45.641-51.959-46.053Q-51.765-46.465-51.408-46.713Q-51.051-46.961-50.500-46.961Q-49.949-46.961-49.592-46.713Q-49.234-46.465-49.043-46.055Q-48.851-45.645-48.781-45.176Q-48.711-44.707-48.711-44.192Q-48.711-43.493-48.853-42.885Q-48.996-42.278-49.396-41.875Q-49.797-41.473-50.500-41.473M-50.500-41.731Q-50.027-41.731-49.795-42.166Q-49.562-42.602-49.508-43.141Q-49.453-43.680-49.453-44.321Q-49.453-45.317-49.637-46.010Q-49.820-46.703-50.500-46.703Q-50.867-46.703-51.088-46.465Q-51.308-46.227-51.404-45.870Q-51.500-45.512-51.525-45.141Q-51.551-44.770-51.551-44.321Q-51.551-43.680-51.496-43.141Q-51.441-42.602-51.209-42.166Q-50.976-41.731-50.500-41.731\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(27.718 133.938)\">\u003Cpath d=\"M-54.245-41.529Q-54.933-41.529-55.424-42.034Q-55.915-42.539-56.152-43.289Q-56.388-44.038-56.388-44.703Q-56.388-45.362-56.152-46.104Q-55.915-46.846-55.424-47.354Q-54.933-47.862-54.245-47.862Q-53.718-47.862-53.305-47.559Q-52.892-47.256-52.631-46.773Q-52.370-46.289-52.238-45.747Q-52.106-45.205-52.106-44.703Q-52.106-44.195-52.238-43.653Q-52.370-43.111-52.634-42.622Q-52.897-42.134-53.307-41.831Q-53.718-41.529-54.245-41.529M-54.245-42.183Q-53.859-42.183-53.588-42.459Q-53.317-42.735-53.154-43.150Q-52.990-43.565-52.914-44.012Q-52.839-44.458-52.839-44.820Q-52.839-45.142-52.917-45.559Q-52.995-45.977-53.159-46.348Q-53.322-46.719-53.598-46.966Q-53.874-47.212-54.245-47.212Q-54.616-47.212-54.885-46.973Q-55.153-46.734-55.322-46.360Q-55.490-45.987-55.573-45.564Q-55.656-45.142-55.656-44.820Q-55.656-44.341-55.517-43.721Q-55.378-43.101-55.055-42.642Q-54.733-42.183-54.245-42.183M-49.587-41.641L-51.047-41.641Q-51.301-41.670-51.330-41.919L-51.330-42.012Q-51.301-42.261-51.047-42.290L-50.519-42.290L-49.318-43.863L-50.446-45.303L-50.988-45.303Q-51.237-45.332-51.266-45.581L-51.266-45.669Q-51.252-45.791-51.183-45.865Q-51.115-45.938-50.988-45.953L-49.528-45.953Q-49.294-45.923-49.250-45.669L-49.250-45.581Q-49.294-45.332-49.528-45.303L-49.719-45.303L-49.030-44.370L-48.346-45.303L-48.556-45.303Q-48.796-45.332-48.840-45.581L-48.840-45.669Q-48.820-45.787-48.744-45.862Q-48.669-45.938-48.556-45.953L-47.096-45.953Q-46.979-45.938-46.906-45.865Q-46.833-45.791-46.818-45.669L-46.818-45.581Q-46.847-45.332-47.096-45.303L-47.629-45.303L-48.727-43.863L-47.497-42.290L-46.960-42.290Q-46.838-42.276-46.764-42.207Q-46.691-42.139-46.677-42.012L-46.677-41.919Q-46.691-41.802-46.764-41.729Q-46.838-41.656-46.960-41.641L-48.420-41.641Q-48.649-41.670-48.698-41.919L-48.698-42.012Q-48.654-42.261-48.420-42.290L-48.200-42.290L-49.030-43.453L-49.816-42.290L-49.587-42.290Q-49.352-42.261-49.308-42.012L-49.308-41.919Q-49.352-41.670-49.587-41.641M-45.280-41.919L-45.280-42.012Q-45.251-42.261-44.997-42.290L-43.967-42.290L-43.967-46.412Q-44.460-45.992-45.021-45.992Q-45.138-45.992-45.231-46.067Q-45.324-46.143-45.339-46.270L-45.339-46.363Q-45.304-46.612-45.060-46.641Q-44.645-46.641-44.328-46.951Q-44.011-47.261-43.849-47.681Q-43.771-47.832-43.591-47.862L-43.517-47.862Q-43.400-47.847-43.327-47.774Q-43.254-47.701-43.239-47.583L-43.239-42.290L-42.209-42.290Q-41.960-42.261-41.930-42.012L-41.930-41.919Q-41.960-41.670-42.209-41.641L-44.997-41.641Q-45.251-41.670-45.280-41.919M-36.760-43.531L-39.831-43.531Q-39.723-42.959-39.255-42.596Q-38.786-42.232-38.190-42.232Q-37.878-42.232-37.597-42.376Q-37.316-42.520-37.209-42.779Q-37.131-43.008-36.930-43.033L-36.760-43.033Q-36.633-43.018-36.557-42.933Q-36.481-42.847-36.481-42.730Q-36.481-42.701-36.484-42.683Q-36.486-42.666-36.491-42.642Q-36.681-42.115-37.177-41.849Q-37.673-41.582-38.268-41.582Q-38.874-41.582-39.413-41.878Q-39.953-42.173-40.270-42.681Q-40.588-43.189-40.588-43.809Q-40.588-44.258-40.422-44.659Q-40.256-45.059-39.960-45.374Q-39.665-45.689-39.267-45.865Q-38.869-46.040-38.420-46.040Q-37.795-46.040-37.355-45.755Q-36.916-45.469-36.699-44.974Q-36.481-44.478-36.481-43.853Q-36.481-43.721-36.559-43.633Q-36.638-43.545-36.760-43.531M-39.821-44.170L-37.228-44.170Q-37.267-44.522-37.409-44.798Q-37.551-45.074-37.804-45.232Q-38.058-45.391-38.420-45.391Q-38.752-45.391-39.052-45.225Q-39.352-45.059-39.555-44.776Q-39.758-44.493-39.821-44.170\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(66.129 132.772)\">\u003Cpath d=\"M-56.461-42.754Q-56.461-43.200-56.047-43.457Q-55.633-43.715-55.092-43.815Q-54.551-43.914-54.043-43.922Q-54.043-44.137-54.178-44.289Q-54.312-44.442-54.519-44.518Q-54.726-44.594-54.937-44.594Q-55.281-44.594-55.441-44.571L-55.441-44.512Q-55.441-44.344-55.560-44.229Q-55.679-44.114-55.844-44.114Q-56.019-44.114-56.135-44.237Q-56.250-44.360-56.250-44.528Q-56.250-44.934-55.869-45.043Q-55.488-45.153-54.929-45.153Q-54.660-45.153-54.392-45.075Q-54.125-44.996-53.900-44.846Q-53.676-44.696-53.539-44.475Q-53.402-44.254-53.402-43.977L-53.402-42.258Q-53.402-42.200-52.875-42.200Q-52.679-42.180-52.629-41.969L-52.629-41.879Q-52.679-41.664-52.875-41.641L-53.019-41.641Q-53.363-41.641-53.592-41.688Q-53.820-41.735-53.965-41.922Q-54.426-41.602-55.133-41.602Q-55.469-41.602-55.773-41.743Q-56.078-41.883-56.269-42.145Q-56.461-42.407-56.461-42.754M-55.820-42.746Q-55.820-42.473-55.578-42.317Q-55.336-42.161-55.051-42.161Q-54.832-42.161-54.599-42.219Q-54.367-42.278-54.205-42.416Q-54.043-42.555-54.043-42.778L-54.043-43.368Q-54.324-43.368-54.740-43.311Q-55.156-43.254-55.488-43.116Q-55.820-42.977-55.820-42.746M-50.758-41.602Q-51.222-41.602-51.588-41.852Q-51.953-42.102-52.158-42.506Q-52.363-42.911-52.363-43.368Q-52.363-43.711-52.238-44.032Q-52.113-44.352-51.881-44.602Q-51.648-44.852-51.344-44.991Q-51.039-45.129-50.683-45.129Q-50.172-45.129-49.765-44.809L-49.765-45.969L-50.187-45.969Q-50.398-45.993-50.437-46.207L-50.437-46.297Q-50.398-46.504-50.187-46.528L-49.375-46.528Q-49.176-46.504-49.125-46.297L-49.125-42.200L-48.699-42.200Q-48.492-42.176-48.453-41.969L-48.453-41.879Q-48.492-41.664-48.699-41.641L-49.515-41.641Q-49.715-41.664-49.765-41.879L-49.765-42.008Q-49.961-41.817-50.222-41.709Q-50.484-41.602-50.758-41.602M-50.719-42.161Q-50.359-42.161-50.107-42.430Q-49.855-42.700-49.765-43.075L-49.765-43.907Q-49.824-44.094-49.951-44.245Q-50.078-44.395-50.256-44.483Q-50.433-44.571-50.629-44.571Q-50.937-44.571-51.187-44.401Q-51.437-44.231-51.582-43.946Q-51.726-43.661-51.726-43.360Q-51.726-42.911-51.441-42.536Q-51.156-42.161-50.719-42.161M-46.512-41.602Q-46.976-41.602-47.342-41.852Q-47.707-42.102-47.912-42.506Q-48.117-42.911-48.117-43.368Q-48.117-43.711-47.992-44.032Q-47.867-44.352-47.635-44.602Q-47.402-44.852-47.097-44.991Q-46.793-45.129-46.437-45.129Q-45.926-45.129-45.519-44.809L-45.519-45.969L-45.941-45.969Q-46.152-45.993-46.191-46.207L-46.191-46.297Q-46.152-46.504-45.941-46.528L-45.129-46.528Q-44.929-46.504-44.879-46.297L-44.879-42.200L-44.453-42.200Q-44.246-42.176-44.207-41.969L-44.207-41.879Q-44.246-41.664-44.453-41.641L-45.269-41.641Q-45.469-41.664-45.519-41.879L-45.519-42.008Q-45.715-41.817-45.976-41.709Q-46.238-41.602-46.512-41.602M-46.472-42.161Q-46.113-42.161-45.861-42.430Q-45.609-42.700-45.519-43.075L-45.519-43.907Q-45.578-44.094-45.705-44.245Q-45.832-44.395-46.010-44.483Q-46.187-44.571-46.383-44.571Q-46.691-44.571-46.941-44.401Q-47.191-44.231-47.336-43.946Q-47.480-43.661-47.480-43.360Q-47.480-42.911-47.195-42.536Q-46.910-42.161-46.472-42.161M-41.816-40.098L-41.816-40.184Q-41.765-40.403-41.570-40.426L-41.105-40.426L-41.105-42.024Q-41.558-41.602-42.168-41.602Q-42.523-41.602-42.828-41.745Q-43.133-41.887-43.365-42.137Q-43.597-42.387-43.722-42.709Q-43.847-43.032-43.847-43.368Q-43.847-43.852-43.609-44.252Q-43.371-44.653-42.965-44.891Q-42.558-45.129-42.082-45.129Q-41.519-45.129-41.105-44.739L-41.105-44.899Q-41.054-45.110-40.855-45.129L-40.715-45.129Q-40.515-45.106-40.465-44.899L-40.465-40.426L-40-40.426Q-39.804-40.403-39.754-40.184L-39.754-40.098Q-39.804-39.887-40-39.864L-41.570-39.864Q-41.765-39.887-41.816-40.098M-42.121-42.161Q-41.750-42.161-41.474-42.414Q-41.199-42.668-41.105-43.032L-41.105-43.649Q-41.148-43.887-41.271-44.100Q-41.394-44.313-41.592-44.442Q-41.789-44.571-42.031-44.571Q-42.347-44.571-42.619-44.405Q-42.890-44.239-43.049-43.957Q-43.207-43.676-43.207-43.360Q-43.207-42.895-42.892-42.528Q-42.578-42.161-42.121-42.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(66.129 132.772)\">\u003Cpath d=\"M-34.937-41.282Q-34.937-41.336-34.914-41.403L-32.648-47.008Q-32.554-47.192-32.359-47.192Q-32.234-47.192-32.146-47.104Q-32.058-47.016-32.058-46.887Q-32.058-46.828-32.082-46.770L-34.344-41.161Q-34.445-40.977-34.625-40.977Q-34.750-40.977-34.844-41.067Q-34.937-41.157-34.937-41.282M-32.359-40.977Q-32.711-40.977-32.892-41.317Q-33.074-41.657-33.074-42.039Q-33.074-42.426-32.894-42.766Q-32.715-43.106-32.359-43.106Q-32.121-43.106-31.963-42.936Q-31.804-42.766-31.730-42.522Q-31.656-42.278-31.656-42.039Q-31.656-41.805-31.730-41.561Q-31.804-41.317-31.963-41.147Q-32.121-40.977-32.359-40.977M-32.359-41.536Q-32.277-41.567-32.230-41.735Q-32.183-41.903-32.183-42.039Q-32.183-42.176-32.230-42.346Q-32.277-42.516-32.359-42.543Q-32.445-42.516-32.496-42.348Q-32.547-42.180-32.547-42.039Q-32.547-41.911-32.496-41.739Q-32.445-41.567-32.359-41.536M-34.625-45.055Q-34.867-45.055-35.027-45.225Q-35.187-45.395-35.262-45.641Q-35.336-45.887-35.336-46.129Q-35.336-46.512-35.156-46.852Q-34.976-47.192-34.625-47.192Q-34.387-47.192-34.228-47.022Q-34.070-46.852-33.996-46.608Q-33.922-46.364-33.922-46.129Q-33.922-45.887-33.996-45.641Q-34.070-45.395-34.228-45.225Q-34.387-45.055-34.625-45.055M-34.625-45.618Q-34.535-45.661-34.492-45.817Q-34.449-45.973-34.449-46.129Q-34.449-46.258-34.496-46.434Q-34.543-46.610-34.633-46.633Q-34.648-46.633-34.678-46.598Q-34.707-46.563-34.715-46.543Q-34.808-46.356-34.808-46.129Q-34.808-45.993-34.760-45.821Q-34.711-45.649-34.625-45.618M-31.148-41.879L-31.148-41.969Q-31.090-42.176-30.898-42.200L-30.187-42.200L-30.187-44.528L-30.898-44.528Q-31.094-44.551-31.148-44.770L-31.148-44.856Q-31.090-45.067-30.898-45.090L-29.797-45.090Q-29.597-45.071-29.547-44.856L-29.547-44.528Q-29.285-44.813-28.929-44.971Q-28.574-45.129-28.187-45.129Q-27.894-45.129-27.660-44.995Q-27.426-44.860-27.426-44.594Q-27.426-44.426-27.535-44.309Q-27.644-44.192-27.812-44.192Q-27.965-44.192-28.080-44.303Q-28.195-44.414-28.195-44.571Q-28.570-44.571-28.885-44.370Q-29.199-44.168-29.373-43.834Q-29.547-43.500-29.547-43.121L-29.547-42.200L-28.601-42.200Q-28.394-42.176-28.355-41.969L-28.355-41.879Q-28.394-41.664-28.601-41.641L-30.898-41.641Q-31.090-41.664-31.148-41.879M-25.262-41.602Q-25.726-41.602-26.092-41.852Q-26.457-42.102-26.662-42.506Q-26.867-42.911-26.867-43.368Q-26.867-43.711-26.742-44.032Q-26.617-44.352-26.385-44.602Q-26.152-44.852-25.847-44.991Q-25.543-45.129-25.187-45.129Q-24.676-45.129-24.269-44.809L-24.269-45.969L-24.691-45.969Q-24.902-45.993-24.941-46.207L-24.941-46.297Q-24.902-46.504-24.691-46.528L-23.879-46.528Q-23.679-46.504-23.629-46.297L-23.629-42.200L-23.203-42.200Q-22.996-42.176-22.957-41.969L-22.957-41.879Q-22.996-41.664-23.203-41.641L-24.019-41.641Q-24.219-41.664-24.269-41.879L-24.269-42.008Q-24.465-41.817-24.726-41.709Q-24.988-41.602-25.262-41.602M-25.222-42.161Q-24.863-42.161-24.611-42.430Q-24.359-42.700-24.269-43.075L-24.269-43.907Q-24.328-44.094-24.455-44.245Q-24.582-44.395-24.760-44.483Q-24.937-44.571-25.133-44.571Q-25.441-44.571-25.691-44.401Q-25.941-44.231-26.086-43.946Q-26.230-43.661-26.230-43.360Q-26.230-42.911-25.945-42.536Q-25.660-42.161-25.222-42.161M-22.262-41.879L-22.262-41.969Q-22.211-42.176-22.015-42.200L-20.976-42.200L-20.976-44.528L-21.949-44.528Q-22.148-44.551-22.199-44.770L-22.199-44.856Q-22.148-45.067-21.949-45.090L-20.582-45.090Q-20.387-45.071-20.336-44.856L-20.336-42.200L-19.422-42.200Q-19.226-42.176-19.176-41.969L-19.176-41.879Q-19.226-41.664-19.422-41.641L-22.015-41.641Q-22.211-41.664-22.262-41.879M-21.230-46.067L-21.230-46.121Q-21.230-46.293-21.094-46.414Q-20.957-46.536-20.781-46.536Q-20.609-46.536-20.472-46.414Q-20.336-46.293-20.336-46.121L-20.336-46.067Q-20.336-45.891-20.472-45.770Q-20.609-45.649-20.781-45.649Q-20.957-45.649-21.094-45.770Q-21.230-45.891-21.230-46.067M-16.914-40.528Q-17.027-40.528-17.117-40.618Q-17.207-40.707-17.207-40.817Q-17.207-40.993-17.015-41.067Q-16.797-41.118-16.625-41.276Q-16.453-41.434-16.387-41.657Q-16.410-41.657-16.441-41.641L-16.504-41.641Q-16.734-41.641-16.900-41.803Q-17.066-41.965-17.066-42.200Q-17.066-42.434-16.902-42.594Q-16.738-42.754-16.504-42.754Q-16.293-42.754-16.129-42.633Q-15.965-42.512-15.875-42.319Q-15.785-42.125-15.785-41.914Q-15.785-41.438-16.084-41.049Q-16.383-40.661-16.847-40.536Q-16.871-40.528-16.914-40.528M-13.707-41.282Q-13.707-41.336-13.683-41.403L-11.418-47.008Q-11.324-47.192-11.129-47.192Q-11.004-47.192-10.916-47.104Q-10.828-47.016-10.828-46.887Q-10.828-46.828-10.851-46.770L-13.113-41.161Q-13.215-40.977-13.394-40.977Q-13.519-40.977-13.613-41.067Q-13.707-41.157-13.707-41.282M-11.129-40.977Q-11.480-40.977-11.662-41.317Q-11.844-41.657-11.844-42.039Q-11.844-42.426-11.664-42.766Q-11.484-43.106-11.129-43.106Q-10.890-43.106-10.732-42.936Q-10.574-42.766-10.500-42.522Q-10.426-42.278-10.426-42.039Q-10.426-41.805-10.500-41.561Q-10.574-41.317-10.732-41.147Q-10.890-40.977-11.129-40.977M-11.129-41.536Q-11.047-41.567-11-41.735Q-10.953-41.903-10.953-42.039Q-10.953-42.176-11-42.346Q-11.047-42.516-11.129-42.543Q-11.215-42.516-11.265-42.348Q-11.316-42.180-11.316-42.039Q-11.316-41.911-11.265-41.739Q-11.215-41.567-11.129-41.536M-13.394-45.055Q-13.637-45.055-13.797-45.225Q-13.957-45.395-14.031-45.641Q-14.105-45.887-14.105-46.129Q-14.105-46.512-13.926-46.852Q-13.746-47.192-13.394-47.192Q-13.156-47.192-12.998-47.022Q-12.840-46.852-12.765-46.608Q-12.691-46.364-12.691-46.129Q-12.691-45.887-12.765-45.641Q-12.840-45.395-12.998-45.225Q-13.156-45.055-13.394-45.055M-13.394-45.618Q-13.304-45.661-13.262-45.817Q-13.219-45.973-13.219-46.129Q-13.219-46.258-13.265-46.434Q-13.312-46.610-13.402-46.633Q-13.418-46.633-13.447-46.598Q-13.476-46.563-13.484-46.543Q-13.578-46.356-13.578-46.129Q-13.578-45.993-13.529-45.821Q-13.480-45.649-13.394-45.618M-9.918-41.879L-9.918-41.969Q-9.859-42.176-9.668-42.200L-8.957-42.200L-8.957-44.528L-9.668-44.528Q-9.863-44.551-9.918-44.770L-9.918-44.856Q-9.859-45.067-9.668-45.090L-8.566-45.090Q-8.367-45.071-8.316-44.856L-8.316-44.528Q-8.054-44.813-7.699-44.971Q-7.344-45.129-6.957-45.129Q-6.664-45.129-6.429-44.995Q-6.195-44.860-6.195-44.594Q-6.195-44.426-6.304-44.309Q-6.414-44.192-6.582-44.192Q-6.734-44.192-6.849-44.303Q-6.965-44.414-6.965-44.571Q-7.340-44.571-7.654-44.370Q-7.969-44.168-8.142-43.834Q-8.316-43.500-8.316-43.121L-8.316-42.200L-7.371-42.200Q-7.164-42.176-7.125-41.969L-7.125-41.879Q-7.164-41.664-7.371-41.641L-9.668-41.641Q-9.859-41.664-9.918-41.879M-5.488-42.754Q-5.488-43.200-5.074-43.457Q-4.660-43.715-4.119-43.815Q-3.578-43.914-3.070-43.922Q-3.070-44.137-3.205-44.289Q-3.340-44.442-3.547-44.518Q-3.754-44.594-3.965-44.594Q-4.308-44.594-4.469-44.571L-4.469-44.512Q-4.469-44.344-4.588-44.229Q-4.707-44.114-4.871-44.114Q-5.047-44.114-5.162-44.237Q-5.277-44.360-5.277-44.528Q-5.277-44.934-4.896-45.043Q-4.515-45.153-3.957-45.153Q-3.687-45.153-3.420-45.075Q-3.152-44.996-2.928-44.846Q-2.703-44.696-2.566-44.475Q-2.429-44.254-2.429-43.977L-2.429-42.258Q-2.429-42.200-1.902-42.200Q-1.707-42.180-1.656-41.969L-1.656-41.879Q-1.707-41.664-1.902-41.641L-2.047-41.641Q-2.390-41.641-2.619-41.688Q-2.847-41.735-2.992-41.922Q-3.453-41.602-4.160-41.602Q-4.496-41.602-4.801-41.743Q-5.105-41.883-5.297-42.145Q-5.488-42.407-5.488-42.754M-4.847-42.746Q-4.847-42.473-4.605-42.317Q-4.363-42.161-4.078-42.161Q-3.859-42.161-3.627-42.219Q-3.394-42.278-3.232-42.416Q-3.070-42.555-3.070-42.778L-3.070-43.368Q-3.351-43.368-3.767-43.311Q-4.183-43.254-4.515-43.116Q-4.847-42.977-4.847-42.746M-1.390-41.879L-1.390-41.969Q-1.351-42.176-1.144-42.200L-0.738-42.200L0.192-43.418L-0.679-44.528L-1.097-44.528Q-1.293-44.547-1.344-44.770L-1.344-44.856Q-1.293-45.067-1.097-45.090L0.063-45.090Q0.262-45.067 0.313-44.856L0.313-44.770Q0.262-44.551 0.063-44.528L-0.047-44.528L0.449-43.871L0.926-44.528L0.809-44.528Q0.610-44.551 0.559-44.770L0.559-44.856Q0.610-45.067 0.809-45.090L1.969-45.090Q2.164-45.071 2.215-44.856L2.215-44.770Q2.164-44.551 1.969-44.528L1.559-44.528L0.711-43.418L1.672-42.200L2.078-42.200Q2.278-42.176 2.328-41.969L2.328-41.879Q2.289-41.664 2.078-41.641L0.926-41.641Q0.719-41.664 0.680-41.879L0.680-41.969Q0.719-42.176 0.926-42.200L1.055-42.200L0.449-43.055L-0.137-42.200L0.008-42.200Q0.215-42.176 0.254-41.969L0.254-41.879Q0.215-41.664 0.008-41.641L-1.144-41.641Q-1.340-41.661-1.390-41.879\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 133.466)\">\u003Cpath d=\"M-55.683-41.375Q-55.683-41.438-55.652-41.481L-51.906-46.739Q-52.363-46.504-52.929-46.504Q-53.582-46.504-54.187-46.825Q-54.043-46.477-54.043-46.032Q-54.043-45.672-54.164-45.301Q-54.285-44.930-54.535-44.674Q-54.785-44.418-55.148-44.418Q-55.535-44.418-55.818-44.662Q-56.101-44.907-56.248-45.280Q-56.394-45.653-56.394-46.032Q-56.394-46.411-56.248-46.782Q-56.101-47.153-55.818-47.397Q-55.535-47.641-55.148-47.641Q-54.832-47.641-54.562-47.403Q-54.226-47.098-53.797-46.926Q-53.367-46.754-52.929-46.754Q-52.437-46.754-52.019-46.967Q-51.601-47.180-51.301-47.578Q-51.258-47.641-51.164-47.641Q-51.090-47.641-51.035-47.586Q-50.980-47.532-50.980-47.457Q-50.980-47.395-51.012-47.352L-55.355-41.258Q-55.402-41.192-55.500-41.192Q-55.582-41.192-55.633-41.243Q-55.683-41.293-55.683-41.375M-55.148-44.672Q-54.875-44.672-54.687-44.897Q-54.500-45.121-54.412-45.444Q-54.324-45.766-54.324-46.032Q-54.324-46.289-54.412-46.612Q-54.500-46.934-54.687-47.159Q-54.875-47.383-55.148-47.383Q-55.535-47.383-55.678-46.955Q-55.820-46.528-55.820-46.032Q-55.820-45.524-55.679-45.098Q-55.539-44.672-55.148-44.672M-51.371-41.192Q-51.758-41.192-52.041-41.438Q-52.324-41.684-52.472-42.057Q-52.621-42.430-52.621-42.809Q-52.621-43.082-52.535-43.370Q-52.449-43.657-52.295-43.891Q-52.140-44.125-51.904-44.272Q-51.668-44.418-51.371-44.418Q-51.090-44.418-50.883-44.266Q-50.676-44.114-50.537-43.871Q-50.398-43.629-50.332-43.348Q-50.265-43.067-50.265-42.809Q-50.265-42.450-50.387-42.077Q-50.508-41.703-50.758-41.448Q-51.008-41.192-51.371-41.192M-51.371-41.450Q-51.097-41.450-50.910-41.674Q-50.722-41.899-50.635-42.221Q-50.547-42.543-50.547-42.809Q-50.547-43.067-50.635-43.389Q-50.722-43.711-50.910-43.936Q-51.097-44.161-51.371-44.161Q-51.762-44.161-51.902-43.731Q-52.043-43.301-52.043-42.809Q-52.043-42.301-51.906-41.875Q-51.769-41.450-51.371-41.450M-47.543-41.641L-49.523-41.641L-49.523-41.938Q-49.254-41.938-49.086-41.983Q-48.918-42.028-48.918-42.200L-48.918-44.336Q-48.918-44.551-48.980-44.647Q-49.043-44.743-49.160-44.764Q-49.277-44.786-49.523-44.786L-49.523-45.082L-48.355-45.168L-48.355-44.383Q-48.277-44.594-48.125-44.780Q-47.972-44.965-47.773-45.067Q-47.574-45.168-47.347-45.168Q-47.101-45.168-46.910-45.024Q-46.719-44.879-46.719-44.649Q-46.719-44.493-46.824-44.383Q-46.929-44.274-47.086-44.274Q-47.242-44.274-47.351-44.383Q-47.461-44.493-47.461-44.649Q-47.461-44.809-47.355-44.914Q-47.679-44.914-47.894-44.686Q-48.109-44.457-48.205-44.118Q-48.301-43.778-48.301-43.473L-48.301-42.200Q-48.301-42.032-48.074-41.985Q-47.847-41.938-47.543-41.938L-47.543-41.641M-46.140-42.473Q-46.140-42.957-45.738-43.252Q-45.336-43.547-44.785-43.666Q-44.234-43.786-43.742-43.786L-43.742-44.075Q-43.742-44.301-43.857-44.508Q-43.972-44.715-44.170-44.834Q-44.367-44.953-44.597-44.953Q-45.023-44.953-45.308-44.848Q-45.238-44.821-45.191-44.766Q-45.144-44.711-45.119-44.641Q-45.094-44.571-45.094-44.496Q-45.094-44.391-45.144-44.299Q-45.195-44.207-45.287-44.157Q-45.379-44.106-45.484-44.106Q-45.590-44.106-45.681-44.157Q-45.773-44.207-45.824-44.299Q-45.875-44.391-45.875-44.496Q-45.875-44.914-45.486-45.061Q-45.097-45.207-44.597-45.207Q-44.265-45.207-43.912-45.077Q-43.558-44.946-43.330-44.692Q-43.101-44.438-43.101-44.090L-43.101-42.289Q-43.101-42.157-43.029-42.047Q-42.957-41.938-42.828-41.938Q-42.703-41.938-42.635-42.043Q-42.566-42.149-42.566-42.289L-42.566-42.801L-42.285-42.801L-42.285-42.289Q-42.285-42.086-42.402-41.928Q-42.519-41.770-42.701-41.686Q-42.883-41.602-43.086-41.602Q-43.316-41.602-43.469-41.774Q-43.621-41.946-43.652-42.176Q-43.812-41.895-44.121-41.729Q-44.429-41.563-44.781-41.563Q-45.293-41.563-45.717-41.786Q-46.140-42.008-46.140-42.473M-45.453-42.473Q-45.453-42.188-45.226-42.002Q-45-41.817-44.707-41.817Q-44.461-41.817-44.236-41.934Q-44.012-42.051-43.877-42.254Q-43.742-42.457-43.742-42.711L-43.742-43.543Q-44.008-43.543-44.293-43.489Q-44.578-43.434-44.849-43.305Q-45.121-43.176-45.287-42.969Q-45.453-42.762-45.453-42.473M-40.605-41.641L-42.101-41.641L-42.101-41.938Q-41.469-41.938-41.047-42.418L-40.277-43.328L-41.269-44.528Q-41.426-44.707-41.588-44.750Q-41.750-44.793-42.054-44.793L-42.054-45.090L-40.367-45.090L-40.367-44.793Q-40.461-44.793-40.537-44.750Q-40.613-44.707-40.613-44.618Q-40.613-44.575-40.582-44.528L-39.926-43.739L-39.445-44.313Q-39.328-44.450-39.328-44.586Q-39.328-44.676-39.379-44.735Q-39.429-44.793-39.512-44.793L-39.512-45.090L-38.023-45.090L-38.023-44.793Q-38.660-44.793-39.070-44.313L-39.750-43.512L-38.664-42.200Q-38.504-42.024-38.344-41.981Q-38.183-41.938-37.879-41.938L-37.879-41.641L-39.566-41.641L-39.566-41.938Q-39.476-41.938-39.398-41.981Q-39.320-42.024-39.320-42.114Q-39.320-42.137-39.351-42.200L-40.094-43.106L-40.679-42.418Q-40.797-42.282-40.797-42.145Q-40.797-42.059-40.746-41.998Q-40.695-41.938-40.605-41.938L-40.605-41.641M-31.789-42.618L-37.101-42.618Q-37.179-42.625-37.228-42.674Q-37.277-42.723-37.277-42.801Q-37.277-42.871-37.230-42.922Q-37.183-42.973-37.101-42.985L-31.789-42.985Q-31.715-42.973-31.668-42.922Q-31.621-42.871-31.621-42.801Q-31.621-42.723-31.670-42.674Q-31.719-42.625-31.789-42.618M-31.789-44.305L-37.101-44.305Q-37.179-44.313-37.228-44.362Q-37.277-44.411-37.277-44.489Q-37.277-44.559-37.230-44.610Q-37.183-44.661-37.101-44.672L-31.789-44.672Q-31.715-44.661-31.668-44.610Q-31.621-44.559-31.621-44.489Q-31.621-44.411-31.670-44.362Q-31.719-44.313-31.789-44.305M-30.301-42.520L-30.363-42.520Q-30.222-42.168-29.898-41.957Q-29.574-41.746-29.187-41.746Q-28.594-41.746-28.344-42.180Q-28.094-42.614-28.094-43.250Q-28.094-43.844-28.263-44.291Q-28.433-44.739-28.933-44.739Q-29.230-44.739-29.435-44.659Q-29.640-44.578-29.742-44.487Q-29.844-44.395-29.959-44.262Q-30.074-44.129-30.125-44.114L-30.195-44.114Q-30.281-44.137-30.301-44.215L-30.301-46.864Q-30.269-46.961-30.195-46.961Q-30.179-46.961-30.172-46.959Q-30.164-46.957-30.156-46.953Q-29.570-46.703-28.972-46.703Q-28.390-46.703-27.773-46.961L-27.750-46.961Q-27.707-46.961-27.679-46.936Q-27.652-46.911-27.652-46.871L-27.652-46.793Q-27.652-46.762-27.676-46.739Q-27.972-46.387-28.394-46.190Q-28.816-45.993-29.277-45.993Q-29.625-45.993-30.004-46.098L-30.004-44.602Q-29.785-44.797-29.510-44.895Q-29.234-44.993-28.933-44.993Q-28.476-44.993-28.107-44.745Q-27.738-44.496-27.531-44.092Q-27.324-43.688-27.324-43.243Q-27.324-42.754-27.580-42.346Q-27.836-41.938-28.267-41.705Q-28.699-41.473-29.187-41.473Q-29.582-41.473-29.937-41.664Q-30.293-41.856-30.504-42.190Q-30.715-42.524-30.715-42.938Q-30.715-43.118-30.597-43.231Q-30.480-43.344-30.301-43.344Q-30.183-43.344-30.092-43.291Q-30-43.239-29.947-43.147Q-29.894-43.055-29.894-42.938Q-29.894-42.754-30.008-42.637Q-30.121-42.520-30.301-42.520M-23.773-43.457L-26.246-43.457Q-26.324-43.469-26.373-43.518Q-26.422-43.567-26.422-43.641Q-26.422-43.715-26.373-43.764Q-26.324-43.813-26.246-43.825L-23.773-43.825L-23.773-46.305Q-23.746-46.473-23.590-46.473Q-23.515-46.473-23.467-46.424Q-23.418-46.375-23.406-46.305L-23.406-43.825L-20.933-43.825Q-20.765-43.793-20.765-43.641Q-20.765-43.489-20.933-43.457L-23.406-43.457L-23.406-40.977Q-23.418-40.907-23.467-40.858Q-23.515-40.809-23.590-40.809Q-23.746-40.809-23.773-40.977L-23.773-43.457M-16.691-41.641L-19.484-41.641L-19.484-41.938Q-18.422-41.938-18.422-42.200L-18.422-46.368Q-18.851-46.153-19.531-46.153L-19.531-46.450Q-18.512-46.450-17.996-46.961L-17.851-46.961Q-17.777-46.942-17.758-46.864L-17.758-42.200Q-17.758-41.938-16.691-41.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(259.608 133.616)\">\u003Cpath d=\"M-52.250-41.641L-56.281-41.641Q-56.332-41.641-56.363-41.672Q-56.394-41.703-56.394-41.754L-56.394-41.856Q-56.394-41.883-56.363-41.930L-53.066-46.809L-54.242-46.809Q-54.679-46.809-55.002-46.743Q-55.324-46.676-55.554-46.465Q-55.781-46.250-55.888-45.928Q-55.996-45.606-55.996-45.258L-56.273-45.258L-56.179-47.106L-52.265-47.106Q-52.219-47.106-52.187-47.073Q-52.156-47.039-52.156-46.993L-52.156-46.907Q-52.156-46.903-52.179-46.832L-55.484-41.961L-54.250-41.961Q-53.957-41.961-53.709-41.987Q-53.461-42.012-53.232-42.094Q-53.004-42.176-52.820-42.352Q-52.582-42.590-52.500-42.944Q-52.418-43.297-52.387-43.825L-52.105-43.825L-52.250-41.641M-48.754-41.641L-51.340-41.641L-51.340-41.938Q-51.019-41.938-50.775-41.985Q-50.531-42.032-50.531-42.200L-50.531-46.543Q-50.531-46.715-50.775-46.762Q-51.019-46.809-51.340-46.809L-51.340-47.106L-46.722-47.106L-46.492-45.258L-46.773-45.258Q-46.859-45.942-47.021-46.262Q-47.183-46.582-47.523-46.696Q-47.863-46.809-48.554-46.809L-49.363-46.809Q-49.582-46.809-49.674-46.766Q-49.765-46.723-49.765-46.543L-49.765-44.520L-49.156-44.520Q-48.730-44.520-48.533-44.586Q-48.336-44.653-48.254-44.846Q-48.172-45.039-48.172-45.457L-47.890-45.457L-47.890-43.289L-48.172-43.289Q-48.172-43.707-48.254-43.901Q-48.336-44.094-48.533-44.161Q-48.730-44.227-49.156-44.227L-49.765-44.227L-49.765-42.200Q-49.765-42.036-49.447-41.987Q-49.129-41.938-48.754-41.938L-48.754-41.641M-44.012-41.473Q-44.715-41.473-45.115-41.873Q-45.515-42.274-45.660-42.883Q-45.804-43.493-45.804-44.192Q-45.804-44.715-45.734-45.178Q-45.664-45.641-45.471-46.053Q-45.277-46.465-44.920-46.713Q-44.562-46.961-44.012-46.961Q-43.461-46.961-43.103-46.713Q-42.746-46.465-42.554-46.055Q-42.363-45.645-42.293-45.176Q-42.222-44.707-42.222-44.192Q-42.222-43.493-42.365-42.885Q-42.508-42.278-42.908-41.875Q-43.308-41.473-44.012-41.473M-44.012-41.731Q-43.539-41.731-43.306-42.166Q-43.074-42.602-43.019-43.141Q-42.965-43.680-42.965-44.321Q-42.965-45.317-43.148-46.010Q-43.332-46.703-44.012-46.703Q-44.379-46.703-44.599-46.465Q-44.820-46.227-44.916-45.870Q-45.012-45.512-45.037-45.141Q-45.062-44.770-45.062-44.321Q-45.062-43.680-45.008-43.141Q-44.953-42.602-44.721-42.166Q-44.488-41.731-44.012-41.731\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(259.608 133.616)\">\u003Cpath d=\"M-38.572-41.563L-38.572-43.368Q-38.572-43.395-38.541-43.426Q-38.510-43.457-38.486-43.457L-38.381-43.457Q-38.350-43.457-38.320-43.428Q-38.291-43.399-38.291-43.368Q-38.291-42.586-37.775-42.178Q-37.260-41.770-36.451-41.770Q-36.154-41.770-35.899-41.920Q-35.643-42.071-35.492-42.327Q-35.342-42.582-35.342-42.879Q-35.342-43.278-35.588-43.582Q-35.834-43.887-36.205-43.969L-37.326-44.227Q-37.666-44.301-37.953-44.522Q-38.240-44.743-38.406-45.061Q-38.572-45.379-38.572-45.731Q-38.572-46.161-38.342-46.516Q-38.111-46.871-37.731-47.073Q-37.350-47.274-36.924-47.274Q-36.674-47.274-36.428-47.215Q-36.182-47.157-35.963-47.034Q-35.744-46.911-35.580-46.731L-35.252-47.227Q-35.221-47.274-35.182-47.274L-35.135-47.274Q-35.108-47.274-35.076-47.243Q-35.045-47.211-35.045-47.184L-35.045-45.375Q-35.045-45.352-35.076-45.321Q-35.108-45.289-35.135-45.289L-35.236-45.289Q-35.268-45.289-35.297-45.319Q-35.326-45.348-35.326-45.375Q-35.326-45.508-35.369-45.694Q-35.412-45.879-35.477-46.034Q-35.541-46.188-35.641-46.346Q-35.740-46.504-35.830-46.594Q-36.260-47-36.924-47Q-37.201-47-37.461-46.868Q-37.721-46.735-37.879-46.500Q-38.037-46.266-38.037-45.985Q-38.037-45.629-37.797-45.358Q-37.557-45.086-37.190-45L-36.076-44.746Q-35.799-44.680-35.566-44.526Q-35.334-44.371-35.164-44.153Q-34.994-43.934-34.900-43.676Q-34.807-43.418-34.807-43.129Q-34.807-42.801-34.932-42.498Q-35.057-42.196-35.291-41.959Q-35.525-41.723-35.818-41.598Q-36.111-41.473-36.451-41.473Q-37.467-41.473-38.037-42.016L-38.365-41.520Q-38.397-41.473-38.436-41.473L-38.486-41.473Q-38.510-41.473-38.541-41.504Q-38.572-41.536-38.572-41.563M-31.404-41.641L-33.990-41.641L-33.990-41.938Q-33.670-41.938-33.426-41.985Q-33.182-42.032-33.182-42.200L-33.182-46.543Q-33.182-46.715-33.426-46.762Q-33.670-46.809-33.990-46.809L-33.990-47.106L-29.373-47.106L-29.143-45.258L-29.424-45.258Q-29.510-45.942-29.672-46.262Q-29.834-46.582-30.174-46.696Q-30.514-46.809-31.205-46.809L-32.014-46.809Q-32.233-46.809-32.324-46.766Q-32.416-46.723-32.416-46.543L-32.416-44.520L-31.807-44.520Q-31.381-44.520-31.184-44.586Q-30.986-44.653-30.904-44.846Q-30.822-45.039-30.822-45.457L-30.541-45.457L-30.541-43.289L-30.822-43.289Q-30.822-43.707-30.904-43.901Q-30.986-44.094-31.184-44.161Q-31.381-44.227-31.807-44.227L-32.416-44.227L-32.416-42.200Q-32.416-42.036-32.098-41.987Q-31.779-41.938-31.404-41.938L-31.404-41.641M-26.662-41.473Q-27.365-41.473-27.766-41.873Q-28.166-42.274-28.311-42.883Q-28.455-43.493-28.455-44.192Q-28.455-44.715-28.385-45.178Q-28.315-45.641-28.121-46.053Q-27.928-46.465-27.570-46.713Q-27.213-46.961-26.662-46.961Q-26.111-46.961-25.754-46.713Q-25.397-46.465-25.205-46.055Q-25.014-45.645-24.943-45.176Q-24.873-44.707-24.873-44.192Q-24.873-43.493-25.016-42.885Q-25.158-42.278-25.559-41.875Q-25.959-41.473-26.662-41.473M-26.662-41.731Q-26.190-41.731-25.957-42.166Q-25.725-42.602-25.670-43.141Q-25.615-43.680-25.615-44.321Q-25.615-45.317-25.799-46.010Q-25.983-46.703-26.662-46.703Q-27.029-46.703-27.250-46.465Q-27.471-46.227-27.566-45.870Q-27.662-45.512-27.688-45.141Q-27.713-44.770-27.713-44.321Q-27.713-43.680-27.658-43.141Q-27.604-42.602-27.371-42.166Q-27.139-41.731-26.662-41.731\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(316.513 133.938)\">\u003Cpath d=\"M-54.245-41.529Q-54.933-41.529-55.424-42.034Q-55.915-42.539-56.152-43.289Q-56.388-44.038-56.388-44.703Q-56.388-45.362-56.152-46.104Q-55.915-46.846-55.424-47.354Q-54.933-47.862-54.245-47.862Q-53.718-47.862-53.305-47.559Q-52.892-47.256-52.631-46.773Q-52.370-46.289-52.238-45.747Q-52.106-45.205-52.106-44.703Q-52.106-44.195-52.238-43.653Q-52.370-43.111-52.634-42.622Q-52.897-42.134-53.307-41.831Q-53.718-41.529-54.245-41.529M-54.245-42.183Q-53.859-42.183-53.588-42.459Q-53.317-42.735-53.154-43.150Q-52.990-43.565-52.914-44.012Q-52.839-44.458-52.839-44.820Q-52.839-45.142-52.917-45.559Q-52.995-45.977-53.159-46.348Q-53.322-46.719-53.598-46.966Q-53.874-47.212-54.245-47.212Q-54.616-47.212-54.885-46.973Q-55.153-46.734-55.322-46.360Q-55.490-45.987-55.573-45.564Q-55.656-45.142-55.656-44.820Q-55.656-44.341-55.517-43.721Q-55.378-43.101-55.055-42.642Q-54.733-42.183-54.245-42.183M-49.587-41.641L-51.047-41.641Q-51.301-41.670-51.330-41.919L-51.330-42.012Q-51.301-42.261-51.047-42.290L-50.519-42.290L-49.318-43.863L-50.446-45.303L-50.988-45.303Q-51.237-45.332-51.266-45.581L-51.266-45.669Q-51.252-45.791-51.183-45.865Q-51.115-45.938-50.988-45.953L-49.528-45.953Q-49.294-45.923-49.250-45.669L-49.250-45.581Q-49.294-45.332-49.528-45.303L-49.719-45.303L-49.030-44.370L-48.346-45.303L-48.556-45.303Q-48.796-45.332-48.840-45.581L-48.840-45.669Q-48.820-45.787-48.744-45.862Q-48.669-45.938-48.556-45.953L-47.096-45.953Q-46.979-45.938-46.906-45.865Q-46.833-45.791-46.818-45.669L-46.818-45.581Q-46.847-45.332-47.096-45.303L-47.629-45.303L-48.727-43.863L-47.497-42.290L-46.960-42.290Q-46.838-42.276-46.764-42.207Q-46.691-42.139-46.677-42.012L-46.677-41.919Q-46.691-41.802-46.764-41.729Q-46.838-41.656-46.960-41.641L-48.420-41.641Q-48.649-41.670-48.698-41.919L-48.698-42.012Q-48.654-42.261-48.420-42.290L-48.200-42.290L-49.030-43.453L-49.816-42.290L-49.587-42.290Q-49.352-42.261-49.308-42.012L-49.308-41.919Q-49.352-41.670-49.587-41.641M-45.851-41.919L-45.851-42.012Q-45.851-42.129-45.710-42.251L-44.098-43.589Q-44.025-43.648-43.615-43.992Q-43.205-44.336-42.951-44.617Q-42.697-44.898-42.538-45.223Q-42.380-45.547-42.380-45.899Q-42.380-46.319-42.604-46.617Q-42.829-46.914-43.198-47.063Q-43.566-47.212-43.967-47.212Q-44.318-47.212-44.628-47.027Q-44.938-46.841-45.060-46.509Q-44.919-46.377-44.919-46.182Q-44.919-45.996-45.055-45.855Q-45.192-45.713-45.378-45.713Q-45.588-45.713-45.720-45.857Q-45.851-46.001-45.851-46.202Q-45.851-46.690-45.566-47.071Q-45.280-47.452-44.831-47.657Q-44.382-47.862-43.898-47.862Q-43.454-47.862-43.049-47.732Q-42.643-47.603-42.324-47.344Q-42.004-47.085-41.825-46.719Q-41.647-46.353-41.647-45.899Q-41.647-45.332-41.933-44.849Q-42.219-44.366-42.565-44.046Q-42.912-43.726-43.610-43.160L-44.660-42.290L-42.380-42.290L-42.380-42.481Q-42.350-42.730-42.101-42.759L-41.930-42.759Q-41.808-42.745-41.735-42.676Q-41.662-42.608-41.647-42.481L-41.647-41.919Q-41.662-41.802-41.735-41.729Q-41.808-41.656-41.930-41.641L-45.568-41.641Q-45.812-41.670-45.851-41.919M-38.498-41.529Q-39.186-41.529-39.677-42.034Q-40.168-42.539-40.405-43.289Q-40.641-44.038-40.641-44.703Q-40.641-45.362-40.405-46.104Q-40.168-46.846-39.677-47.354Q-39.186-47.862-38.498-47.862Q-37.971-47.862-37.558-47.559Q-37.145-47.256-36.884-46.773Q-36.623-46.289-36.491-45.747Q-36.359-45.205-36.359-44.703Q-36.359-44.195-36.491-43.653Q-36.623-43.111-36.887-42.622Q-37.150-42.134-37.560-41.831Q-37.971-41.529-38.498-41.529M-38.498-42.183Q-38.112-42.183-37.841-42.459Q-37.570-42.735-37.407-43.150Q-37.243-43.565-37.167-44.012Q-37.092-44.458-37.092-44.820Q-37.092-45.142-37.170-45.559Q-37.248-45.977-37.411-46.348Q-37.575-46.719-37.851-46.966Q-38.127-47.212-38.498-47.212Q-38.869-47.212-39.138-46.973Q-39.406-46.734-39.575-46.360Q-39.743-45.987-39.826-45.564Q-39.909-45.142-39.909-44.820Q-39.909-44.341-39.770-43.721Q-39.631-43.101-39.308-42.642Q-38.986-42.183-38.498-42.183\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(362.038 133.66)\">\u003Cpath d=\"M-55.683-41.375Q-55.683-41.438-55.652-41.481L-51.906-46.739Q-52.363-46.504-52.929-46.504Q-53.582-46.504-54.187-46.825Q-54.043-46.477-54.043-46.032Q-54.043-45.672-54.164-45.301Q-54.285-44.930-54.535-44.674Q-54.785-44.418-55.148-44.418Q-55.535-44.418-55.818-44.662Q-56.101-44.907-56.248-45.280Q-56.394-45.653-56.394-46.032Q-56.394-46.411-56.248-46.782Q-56.101-47.153-55.818-47.397Q-55.535-47.641-55.148-47.641Q-54.832-47.641-54.562-47.403Q-54.226-47.098-53.797-46.926Q-53.367-46.754-52.929-46.754Q-52.437-46.754-52.019-46.967Q-51.601-47.180-51.301-47.578Q-51.258-47.641-51.164-47.641Q-51.090-47.641-51.035-47.586Q-50.980-47.532-50.980-47.457Q-50.980-47.395-51.012-47.352L-55.355-41.258Q-55.402-41.192-55.500-41.192Q-55.582-41.192-55.633-41.243Q-55.683-41.293-55.683-41.375M-55.148-44.672Q-54.875-44.672-54.687-44.897Q-54.500-45.121-54.412-45.444Q-54.324-45.766-54.324-46.032Q-54.324-46.289-54.412-46.612Q-54.500-46.934-54.687-47.159Q-54.875-47.383-55.148-47.383Q-55.535-47.383-55.678-46.955Q-55.820-46.528-55.820-46.032Q-55.820-45.524-55.679-45.098Q-55.539-44.672-55.148-44.672M-51.371-41.192Q-51.758-41.192-52.041-41.438Q-52.324-41.684-52.472-42.057Q-52.621-42.430-52.621-42.809Q-52.621-43.082-52.535-43.370Q-52.449-43.657-52.295-43.891Q-52.140-44.125-51.904-44.272Q-51.668-44.418-51.371-44.418Q-51.090-44.418-50.883-44.266Q-50.676-44.114-50.537-43.871Q-50.398-43.629-50.332-43.348Q-50.265-43.067-50.265-42.809Q-50.265-42.450-50.387-42.077Q-50.508-41.703-50.758-41.448Q-51.008-41.192-51.371-41.192M-51.371-41.450Q-51.097-41.450-50.910-41.674Q-50.722-41.899-50.635-42.221Q-50.547-42.543-50.547-42.809Q-50.547-43.067-50.635-43.389Q-50.722-43.711-50.910-43.936Q-51.097-44.161-51.371-44.161Q-51.762-44.161-51.902-43.731Q-52.043-43.301-52.043-42.809Q-52.043-42.301-51.906-41.875Q-51.769-41.450-51.371-41.450M-47.543-41.641L-49.523-41.641L-49.523-41.938Q-49.254-41.938-49.086-41.983Q-48.918-42.028-48.918-42.200L-48.918-44.336Q-48.918-44.551-48.980-44.647Q-49.043-44.743-49.160-44.764Q-49.277-44.786-49.523-44.786L-49.523-45.082L-48.355-45.168L-48.355-44.383Q-48.277-44.594-48.125-44.780Q-47.972-44.965-47.773-45.067Q-47.574-45.168-47.347-45.168Q-47.101-45.168-46.910-45.024Q-46.719-44.879-46.719-44.649Q-46.719-44.493-46.824-44.383Q-46.929-44.274-47.086-44.274Q-47.242-44.274-47.351-44.383Q-47.461-44.493-47.461-44.649Q-47.461-44.809-47.355-44.914Q-47.679-44.914-47.894-44.686Q-48.109-44.457-48.205-44.118Q-48.301-43.778-48.301-43.473L-48.301-42.200Q-48.301-42.032-48.074-41.985Q-47.847-41.938-47.543-41.938L-47.543-41.641M-46.140-42.473Q-46.140-42.957-45.738-43.252Q-45.336-43.547-44.785-43.666Q-44.234-43.786-43.742-43.786L-43.742-44.075Q-43.742-44.301-43.857-44.508Q-43.972-44.715-44.170-44.834Q-44.367-44.953-44.597-44.953Q-45.023-44.953-45.308-44.848Q-45.238-44.821-45.191-44.766Q-45.144-44.711-45.119-44.641Q-45.094-44.571-45.094-44.496Q-45.094-44.391-45.144-44.299Q-45.195-44.207-45.287-44.157Q-45.379-44.106-45.484-44.106Q-45.590-44.106-45.681-44.157Q-45.773-44.207-45.824-44.299Q-45.875-44.391-45.875-44.496Q-45.875-44.914-45.486-45.061Q-45.097-45.207-44.597-45.207Q-44.265-45.207-43.912-45.077Q-43.558-44.946-43.330-44.692Q-43.101-44.438-43.101-44.090L-43.101-42.289Q-43.101-42.157-43.029-42.047Q-42.957-41.938-42.828-41.938Q-42.703-41.938-42.635-42.043Q-42.566-42.149-42.566-42.289L-42.566-42.801L-42.285-42.801L-42.285-42.289Q-42.285-42.086-42.402-41.928Q-42.519-41.770-42.701-41.686Q-42.883-41.602-43.086-41.602Q-43.316-41.602-43.469-41.774Q-43.621-41.946-43.652-42.176Q-43.812-41.895-44.121-41.729Q-44.429-41.563-44.781-41.563Q-45.293-41.563-45.717-41.786Q-46.140-42.008-46.140-42.473M-45.453-42.473Q-45.453-42.188-45.226-42.002Q-45-41.817-44.707-41.817Q-44.461-41.817-44.236-41.934Q-44.012-42.051-43.877-42.254Q-43.742-42.457-43.742-42.711L-43.742-43.543Q-44.008-43.543-44.293-43.489Q-44.578-43.434-44.849-43.305Q-45.121-43.176-45.287-42.969Q-45.453-42.762-45.453-42.473M-40.605-41.641L-42.101-41.641L-42.101-41.938Q-41.469-41.938-41.047-42.418L-40.277-43.328L-41.269-44.528Q-41.426-44.707-41.588-44.750Q-41.750-44.793-42.054-44.793L-42.054-45.090L-40.367-45.090L-40.367-44.793Q-40.461-44.793-40.537-44.750Q-40.613-44.707-40.613-44.618Q-40.613-44.575-40.582-44.528L-39.926-43.739L-39.445-44.313Q-39.328-44.450-39.328-44.586Q-39.328-44.676-39.379-44.735Q-39.429-44.793-39.512-44.793L-39.512-45.090L-38.023-45.090L-38.023-44.793Q-38.660-44.793-39.070-44.313L-39.750-43.512L-38.664-42.200Q-38.504-42.024-38.344-41.981Q-38.183-41.938-37.879-41.938L-37.879-41.641L-39.566-41.641L-39.566-41.938Q-39.476-41.938-39.398-41.981Q-39.320-42.024-39.320-42.114Q-39.320-42.137-39.351-42.200L-40.094-43.106L-40.679-42.418Q-40.797-42.282-40.797-42.145Q-40.797-42.059-40.746-41.998Q-40.695-41.938-40.605-41.938L-40.605-41.641M-31.789-42.618L-37.101-42.618Q-37.179-42.625-37.228-42.674Q-37.277-42.723-37.277-42.801Q-37.277-42.871-37.230-42.922Q-37.183-42.973-37.101-42.985L-31.789-42.985Q-31.715-42.973-31.668-42.922Q-31.621-42.871-31.621-42.801Q-31.621-42.723-31.670-42.674Q-31.719-42.625-31.789-42.618M-31.789-44.305L-37.101-44.305Q-37.179-44.313-37.228-44.362Q-37.277-44.411-37.277-44.489Q-37.277-44.559-37.230-44.610Q-37.183-44.661-37.101-44.672L-31.789-44.672Q-31.715-44.661-31.668-44.610Q-31.621-44.559-31.621-44.489Q-31.621-44.411-31.670-44.362Q-31.719-44.313-31.789-44.305M-29.019-41.473Q-29.691-41.473-30.088-41.897Q-30.484-42.321-30.637-42.940Q-30.789-43.559-30.789-44.227Q-30.789-44.887-30.517-45.520Q-30.246-46.153-29.732-46.557Q-29.219-46.961-28.547-46.961Q-28.258-46.961-28.010-46.862Q-27.762-46.762-27.615-46.561Q-27.469-46.360-27.469-46.055Q-27.469-45.950-27.519-45.858Q-27.570-45.766-27.662-45.715Q-27.754-45.664-27.859-45.664Q-28.027-45.664-28.140-45.778Q-28.254-45.891-28.254-46.055Q-28.254-46.215-28.144-46.332Q-28.035-46.450-27.867-46.450Q-28.066-46.719-28.547-46.719Q-28.965-46.719-29.297-46.442Q-29.629-46.164-29.804-45.746Q-30.004-45.246-30.004-44.344Q-29.840-44.668-29.560-44.868Q-29.281-45.067-28.933-45.067Q-28.449-45.067-28.064-44.821Q-27.679-44.575-27.467-44.166Q-27.254-43.758-27.254-43.274Q-27.254-42.782-27.484-42.370Q-27.715-41.957-28.125-41.715Q-28.535-41.473-29.019-41.473M-29.019-41.746Q-28.594-41.746-28.377-41.967Q-28.160-42.188-28.097-42.514Q-28.035-42.840-28.035-43.274Q-28.035-43.586-28.060-43.836Q-28.086-44.086-28.176-44.311Q-28.265-44.536-28.461-44.672Q-28.656-44.809-28.972-44.809Q-29.301-44.809-29.533-44.600Q-29.765-44.391-29.877-44.073Q-29.988-43.754-29.988-43.442Q-29.984-43.403-29.982-43.370Q-29.980-43.336-29.980-43.282Q-29.980-43.266-29.982-43.258Q-29.984-43.250-29.988-43.243Q-29.988-42.668-29.762-42.207Q-29.535-41.746-29.019-41.746\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 99.2h423.946\"\u002F>\u003Cg transform=\"translate(-2.157 153.377)\">\u003Cpath d=\"M-53.273-41.641L-56.066-41.641L-56.066-41.938Q-55.004-41.938-55.004-42.200L-55.004-46.368Q-55.433-46.153-56.113-46.153L-56.113-46.450Q-55.094-46.450-54.578-46.961L-54.433-46.961Q-54.359-46.942-54.340-46.864L-54.340-42.200Q-54.340-41.938-53.273-41.938L-53.273-41.641M-49.027-41.641L-51.820-41.641L-51.820-41.938Q-50.758-41.938-50.758-42.200L-50.758-46.368Q-51.187-46.153-51.867-46.153L-51.867-46.450Q-50.847-46.450-50.332-46.961L-50.187-46.961Q-50.113-46.942-50.094-46.864L-50.094-42.200Q-50.094-41.938-49.027-41.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(27.718 153.855)\">\u003Cpath d=\"M-54.245-41.529Q-54.933-41.529-55.424-42.034Q-55.915-42.539-56.152-43.289Q-56.388-44.038-56.388-44.703Q-56.388-45.362-56.152-46.104Q-55.915-46.846-55.424-47.354Q-54.933-47.862-54.245-47.862Q-53.718-47.862-53.305-47.559Q-52.892-47.256-52.631-46.773Q-52.370-46.289-52.238-45.747Q-52.106-45.205-52.106-44.703Q-52.106-44.195-52.238-43.653Q-52.370-43.111-52.634-42.622Q-52.897-42.134-53.307-41.831Q-53.718-41.529-54.245-41.529M-54.245-42.183Q-53.859-42.183-53.588-42.459Q-53.317-42.735-53.154-43.150Q-52.990-43.565-52.914-44.012Q-52.839-44.458-52.839-44.820Q-52.839-45.142-52.917-45.559Q-52.995-45.977-53.159-46.348Q-53.322-46.719-53.598-46.966Q-53.874-47.212-54.245-47.212Q-54.616-47.212-54.885-46.973Q-55.153-46.734-55.322-46.360Q-55.490-45.987-55.573-45.564Q-55.656-45.142-55.656-44.820Q-55.656-44.341-55.517-43.721Q-55.378-43.101-55.055-42.642Q-54.733-42.183-54.245-42.183M-49.587-41.641L-51.047-41.641Q-51.301-41.670-51.330-41.919L-51.330-42.012Q-51.301-42.261-51.047-42.290L-50.519-42.290L-49.318-43.863L-50.446-45.303L-50.988-45.303Q-51.237-45.332-51.266-45.581L-51.266-45.669Q-51.252-45.791-51.183-45.865Q-51.115-45.938-50.988-45.953L-49.528-45.953Q-49.294-45.923-49.250-45.669L-49.250-45.581Q-49.294-45.332-49.528-45.303L-49.719-45.303L-49.030-44.370L-48.346-45.303L-48.556-45.303Q-48.796-45.332-48.840-45.581L-48.840-45.669Q-48.820-45.787-48.744-45.862Q-48.669-45.938-48.556-45.953L-47.096-45.953Q-46.979-45.938-46.906-45.865Q-46.833-45.791-46.818-45.669L-46.818-45.581Q-46.847-45.332-47.096-45.303L-47.629-45.303L-48.727-43.863L-47.497-42.290L-46.960-42.290Q-46.838-42.276-46.764-42.207Q-46.691-42.139-46.677-42.012L-46.677-41.919Q-46.691-41.802-46.764-41.729Q-46.838-41.656-46.960-41.641L-48.420-41.641Q-48.649-41.670-48.698-41.919L-48.698-42.012Q-48.654-42.261-48.420-42.290L-48.200-42.290L-49.030-43.453L-49.816-42.290L-49.587-42.290Q-49.352-42.261-49.308-42.012L-49.308-41.919Q-49.352-41.670-49.587-41.641M-45.851-41.919L-45.851-42.012Q-45.851-42.129-45.710-42.251L-44.098-43.589Q-44.025-43.648-43.615-43.992Q-43.205-44.336-42.951-44.617Q-42.697-44.898-42.538-45.223Q-42.380-45.547-42.380-45.899Q-42.380-46.319-42.604-46.617Q-42.829-46.914-43.198-47.063Q-43.566-47.212-43.967-47.212Q-44.318-47.212-44.628-47.027Q-44.938-46.841-45.060-46.509Q-44.919-46.377-44.919-46.182Q-44.919-45.996-45.055-45.855Q-45.192-45.713-45.378-45.713Q-45.588-45.713-45.720-45.857Q-45.851-46.001-45.851-46.202Q-45.851-46.690-45.566-47.071Q-45.280-47.452-44.831-47.657Q-44.382-47.862-43.898-47.862Q-43.454-47.862-43.049-47.732Q-42.643-47.603-42.324-47.344Q-42.004-47.085-41.825-46.719Q-41.647-46.353-41.647-45.899Q-41.647-45.332-41.933-44.849Q-42.219-44.366-42.565-44.046Q-42.912-43.726-43.610-43.160L-44.660-42.290L-42.380-42.290L-42.380-42.481Q-42.350-42.730-42.101-42.759L-41.930-42.759Q-41.808-42.745-41.735-42.676Q-41.662-42.608-41.647-42.481L-41.647-41.919Q-41.662-41.802-41.735-41.729Q-41.808-41.656-41.930-41.641L-45.568-41.641Q-45.812-41.670-45.851-41.919M-38.498-41.529Q-39.186-41.529-39.677-42.034Q-40.168-42.539-40.405-43.289Q-40.641-44.038-40.641-44.703Q-40.641-45.362-40.405-46.104Q-40.168-46.846-39.677-47.354Q-39.186-47.862-38.498-47.862Q-37.971-47.862-37.558-47.559Q-37.145-47.256-36.884-46.773Q-36.623-46.289-36.491-45.747Q-36.359-45.205-36.359-44.703Q-36.359-44.195-36.491-43.653Q-36.623-43.111-36.887-42.622Q-37.150-42.134-37.560-41.831Q-37.971-41.529-38.498-41.529M-38.498-42.183Q-38.112-42.183-37.841-42.459Q-37.570-42.735-37.407-43.150Q-37.243-43.565-37.167-44.012Q-37.092-44.458-37.092-44.820Q-37.092-45.142-37.170-45.559Q-37.248-45.977-37.411-46.348Q-37.575-46.719-37.851-46.966Q-38.127-47.212-38.498-47.212Q-38.869-47.212-39.138-46.973Q-39.406-46.734-39.575-46.360Q-39.743-45.987-39.826-45.564Q-39.909-45.142-39.909-44.820Q-39.909-44.341-39.770-43.721Q-39.631-43.101-39.308-42.642Q-38.986-42.183-38.498-42.183\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(66.129 152.689)\">\u003Cpath d=\"M-56.281-41.840L-56.281-42.754Q-56.254-42.961-56.043-42.985L-55.875-42.985Q-55.711-42.961-55.652-42.801Q-55.449-42.161-54.722-42.161Q-54.515-42.161-54.287-42.196Q-54.058-42.231-53.890-42.346Q-53.722-42.461-53.722-42.664Q-53.722-42.875-53.945-42.989Q-54.168-43.102-54.441-43.145L-55.140-43.258Q-56.281-43.469-56.281-44.192Q-56.281-44.481-56.137-44.670Q-55.992-44.860-55.752-44.967Q-55.512-45.075-55.256-45.114Q-55-45.153-54.722-45.153Q-54.472-45.153-54.279-45.123Q-54.086-45.094-53.922-45.016Q-53.844-45.133-53.715-45.153L-53.637-45.153Q-53.539-45.141-53.476-45.078Q-53.414-45.016-53.402-44.922L-53.402-44.215Q-53.414-44.121-53.476-44.055Q-53.539-43.989-53.637-43.977L-53.804-43.977Q-53.898-43.989-53.965-44.055Q-54.031-44.121-54.043-44.215Q-54.043-44.594-54.738-44.594Q-55.086-44.594-55.404-44.512Q-55.722-44.430-55.722-44.184Q-55.722-43.918-55.051-43.809L-54.347-43.688Q-53.863-43.606-53.513-43.358Q-53.164-43.110-53.164-42.664Q-53.164-42.274-53.400-42.032Q-53.637-41.789-53.986-41.696Q-54.336-41.602-54.722-41.602Q-55.301-41.602-55.699-41.856Q-55.769-41.731-55.818-41.674Q-55.867-41.618-55.972-41.602L-56.043-41.602Q-56.258-41.625-56.281-41.840M-51.879-42.496L-51.879-44.528L-52.301-44.528Q-52.508-44.551-52.551-44.770L-52.551-44.856Q-52.504-45.067-52.301-45.090L-51.484-45.090Q-51.289-45.067-51.238-44.856L-51.238-42.528Q-51.238-42.293-51.068-42.227Q-50.898-42.161-50.613-42.161Q-50.406-42.161-50.211-42.237Q-50.015-42.313-49.890-42.463Q-49.765-42.614-49.765-42.825L-49.765-44.528L-50.187-44.528Q-50.398-44.551-50.437-44.770L-50.437-44.856Q-50.398-45.067-50.187-45.090L-49.375-45.090Q-49.176-45.067-49.125-44.856L-49.125-42.200L-48.699-42.200Q-48.492-42.176-48.453-41.969L-48.453-41.879Q-48.492-41.664-48.699-41.641L-49.515-41.641Q-49.715-41.664-49.765-41.864Q-50.168-41.602-50.676-41.602Q-50.910-41.602-51.125-41.643Q-51.340-41.684-51.506-41.786Q-51.672-41.887-51.775-42.065Q-51.879-42.243-51.879-42.496M-47.633-41.879L-47.633-45.969L-48.054-45.969Q-48.262-45.993-48.304-46.207L-48.304-46.297Q-48.262-46.504-48.054-46.528L-47.238-46.528Q-47.043-46.504-46.992-46.297L-46.992-44.786Q-46.781-44.953-46.517-45.041Q-46.254-45.129-45.984-45.129Q-45.644-45.129-45.347-44.985Q-45.051-44.840-44.836-44.588Q-44.621-44.336-44.506-44.024Q-44.390-43.711-44.390-43.368Q-44.390-42.903-44.617-42.493Q-44.844-42.082-45.230-41.842Q-45.617-41.602-46.086-41.602Q-46.605-41.602-46.992-41.969L-46.992-41.879Q-47.043-41.661-47.238-41.641L-47.383-41.641Q-47.574-41.664-47.633-41.879M-46.129-42.161Q-45.820-42.161-45.570-42.330Q-45.320-42.500-45.176-42.782Q-45.031-43.063-45.031-43.368Q-45.031-43.657-45.156-43.936Q-45.281-44.215-45.513-44.393Q-45.746-44.571-46.047-44.571Q-46.367-44.571-46.629-44.385Q-46.890-44.200-46.992-43.899L-46.992-43.047Q-46.902-42.680-46.681-42.420Q-46.461-42.161-46.129-42.161M-41.816-40.098L-41.816-40.184Q-41.765-40.403-41.570-40.426L-41.105-40.426L-41.105-42.024Q-41.558-41.602-42.168-41.602Q-42.523-41.602-42.828-41.745Q-43.133-41.887-43.365-42.137Q-43.597-42.387-43.722-42.709Q-43.847-43.032-43.847-43.368Q-43.847-43.852-43.609-44.252Q-43.371-44.653-42.965-44.891Q-42.558-45.129-42.082-45.129Q-41.519-45.129-41.105-44.739L-41.105-44.899Q-41.054-45.110-40.855-45.129L-40.715-45.129Q-40.515-45.106-40.465-44.899L-40.465-40.426L-40-40.426Q-39.804-40.403-39.754-40.184L-39.754-40.098Q-39.804-39.887-40-39.864L-41.570-39.864Q-41.765-39.887-41.816-40.098M-42.121-42.161Q-41.750-42.161-41.474-42.414Q-41.199-42.668-41.105-43.032L-41.105-43.649Q-41.148-43.887-41.271-44.100Q-41.394-44.313-41.592-44.442Q-41.789-44.571-42.031-44.571Q-42.347-44.571-42.619-44.405Q-42.890-44.239-43.049-43.957Q-43.207-43.676-43.207-43.360Q-43.207-42.895-42.892-42.528Q-42.578-42.161-42.121-42.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(66.129 152.689)\">\u003Cpath d=\"M-34.937-41.282Q-34.937-41.336-34.914-41.403L-32.648-47.008Q-32.554-47.192-32.359-47.192Q-32.234-47.192-32.146-47.104Q-32.058-47.016-32.058-46.887Q-32.058-46.828-32.082-46.770L-34.344-41.161Q-34.445-40.977-34.625-40.977Q-34.750-40.977-34.844-41.067Q-34.937-41.157-34.937-41.282M-32.359-40.977Q-32.711-40.977-32.892-41.317Q-33.074-41.657-33.074-42.039Q-33.074-42.426-32.894-42.766Q-32.715-43.106-32.359-43.106Q-32.121-43.106-31.963-42.936Q-31.804-42.766-31.730-42.522Q-31.656-42.278-31.656-42.039Q-31.656-41.805-31.730-41.561Q-31.804-41.317-31.963-41.147Q-32.121-40.977-32.359-40.977M-32.359-41.536Q-32.277-41.567-32.230-41.735Q-32.183-41.903-32.183-42.039Q-32.183-42.176-32.230-42.346Q-32.277-42.516-32.359-42.543Q-32.445-42.516-32.496-42.348Q-32.547-42.180-32.547-42.039Q-32.547-41.911-32.496-41.739Q-32.445-41.567-32.359-41.536M-34.625-45.055Q-34.867-45.055-35.027-45.225Q-35.187-45.395-35.262-45.641Q-35.336-45.887-35.336-46.129Q-35.336-46.512-35.156-46.852Q-34.976-47.192-34.625-47.192Q-34.387-47.192-34.228-47.022Q-34.070-46.852-33.996-46.608Q-33.922-46.364-33.922-46.129Q-33.922-45.887-33.996-45.641Q-34.070-45.395-34.228-45.225Q-34.387-45.055-34.625-45.055M-34.625-45.618Q-34.535-45.661-34.492-45.817Q-34.449-45.973-34.449-46.129Q-34.449-46.258-34.496-46.434Q-34.543-46.610-34.633-46.633Q-34.648-46.633-34.678-46.598Q-34.707-46.563-34.715-46.543Q-34.808-46.356-34.808-46.129Q-34.808-45.993-34.760-45.821Q-34.711-45.649-34.625-45.618M-31.148-41.879L-31.148-41.969Q-31.090-42.176-30.898-42.200L-30.187-42.200L-30.187-44.528L-30.898-44.528Q-31.094-44.551-31.148-44.770L-31.148-44.856Q-31.090-45.067-30.898-45.090L-29.797-45.090Q-29.597-45.071-29.547-44.856L-29.547-44.528Q-29.285-44.813-28.929-44.971Q-28.574-45.129-28.187-45.129Q-27.894-45.129-27.660-44.995Q-27.426-44.860-27.426-44.594Q-27.426-44.426-27.535-44.309Q-27.644-44.192-27.812-44.192Q-27.965-44.192-28.080-44.303Q-28.195-44.414-28.195-44.571Q-28.570-44.571-28.885-44.370Q-29.199-44.168-29.373-43.834Q-29.547-43.500-29.547-43.121L-29.547-42.200L-28.601-42.200Q-28.394-42.176-28.355-41.969L-28.355-41.879Q-28.394-41.664-28.601-41.641L-30.898-41.641Q-31.090-41.664-31.148-41.879M-26.773-43.055Q-26.773-43.340-26.617-43.594Q-26.461-43.848-26.211-44.022Q-25.961-44.196-25.676-44.282Q-25.914-44.356-26.140-44.498Q-26.367-44.641-26.510-44.850Q-26.652-45.059-26.652-45.305Q-26.652-45.703-26.406-45.998Q-26.160-46.293-25.777-46.452Q-25.394-46.610-25.004-46.610Q-24.613-46.610-24.230-46.452Q-23.847-46.293-23.601-45.995Q-23.355-45.696-23.355-45.305Q-23.355-45.059-23.498-44.852Q-23.640-44.645-23.867-44.500Q-24.094-44.356-24.332-44.282Q-23.879-44.145-23.558-43.819Q-23.238-43.493-23.238-43.055Q-23.238-42.618-23.496-42.274Q-23.754-41.930-24.164-41.746Q-24.574-41.563-25.004-41.563Q-25.433-41.563-25.844-41.745Q-26.254-41.926-26.513-42.270Q-26.773-42.614-26.773-43.055M-26.133-43.055Q-26.133-42.782-25.967-42.567Q-25.801-42.352-25.539-42.237Q-25.277-42.121-25.004-42.121Q-24.730-42.121-24.471-42.237Q-24.211-42.352-24.045-42.569Q-23.879-42.786-23.879-43.055Q-23.879-43.332-24.045-43.549Q-24.211-43.766-24.471-43.883Q-24.730-44-25.004-44Q-25.277-44-25.539-43.883Q-25.801-43.766-25.967-43.551Q-26.133-43.336-26.133-43.055M-26.012-45.305Q-26.012-45.067-25.855-44.899Q-25.699-44.731-25.463-44.647Q-25.226-44.563-25.004-44.563Q-24.785-44.563-24.547-44.647Q-24.308-44.731-24.152-44.901Q-23.996-45.071-23.996-45.305Q-23.996-45.539-24.152-45.709Q-24.308-45.879-24.547-45.963Q-24.785-46.047-25.004-46.047Q-25.226-46.047-25.463-45.963Q-25.699-45.879-25.855-45.711Q-26.012-45.543-26.012-45.305M-21.160-40.528Q-21.273-40.528-21.363-40.618Q-21.453-40.707-21.453-40.817Q-21.453-40.993-21.262-41.067Q-21.043-41.118-20.871-41.276Q-20.699-41.434-20.633-41.657Q-20.656-41.657-20.687-41.641L-20.750-41.641Q-20.980-41.641-21.146-41.803Q-21.312-41.965-21.312-42.200Q-21.312-42.434-21.148-42.594Q-20.984-42.754-20.750-42.754Q-20.539-42.754-20.375-42.633Q-20.211-42.512-20.121-42.319Q-20.031-42.125-20.031-41.914Q-20.031-41.438-20.330-41.049Q-20.629-40.661-21.094-40.536Q-21.117-40.528-21.160-40.528M-17.953-41.282Q-17.953-41.336-17.929-41.403L-15.664-47.008Q-15.570-47.192-15.375-47.192Q-15.250-47.192-15.162-47.104Q-15.074-47.016-15.074-46.887Q-15.074-46.828-15.097-46.770L-17.359-41.161Q-17.461-40.977-17.640-40.977Q-17.765-40.977-17.859-41.067Q-17.953-41.157-17.953-41.282M-15.375-40.977Q-15.726-40.977-15.908-41.317Q-16.090-41.657-16.090-42.039Q-16.090-42.426-15.910-42.766Q-15.730-43.106-15.375-43.106Q-15.137-43.106-14.978-42.936Q-14.820-42.766-14.746-42.522Q-14.672-42.278-14.672-42.039Q-14.672-41.805-14.746-41.561Q-14.820-41.317-14.978-41.147Q-15.137-40.977-15.375-40.977M-15.375-41.536Q-15.293-41.567-15.246-41.735Q-15.199-41.903-15.199-42.039Q-15.199-42.176-15.246-42.346Q-15.293-42.516-15.375-42.543Q-15.461-42.516-15.512-42.348Q-15.562-42.180-15.562-42.039Q-15.562-41.911-15.512-41.739Q-15.461-41.567-15.375-41.536M-17.640-45.055Q-17.883-45.055-18.043-45.225Q-18.203-45.395-18.277-45.641Q-18.351-45.887-18.351-46.129Q-18.351-46.512-18.172-46.852Q-17.992-47.192-17.640-47.192Q-17.402-47.192-17.244-47.022Q-17.086-46.852-17.012-46.608Q-16.937-46.364-16.937-46.129Q-16.937-45.887-17.012-45.641Q-17.086-45.395-17.244-45.225Q-17.402-45.055-17.640-45.055M-17.640-45.618Q-17.551-45.661-17.508-45.817Q-17.465-45.973-17.465-46.129Q-17.465-46.258-17.512-46.434Q-17.558-46.610-17.648-46.633Q-17.664-46.633-17.693-46.598Q-17.722-46.563-17.730-46.543Q-17.824-46.356-17.824-46.129Q-17.824-45.993-17.775-45.821Q-17.726-45.649-17.640-45.618M-14.164-41.879L-14.164-41.969Q-14.105-42.176-13.914-42.200L-13.203-42.200L-13.203-44.528L-13.914-44.528Q-14.109-44.551-14.164-44.770L-14.164-44.856Q-14.105-45.067-13.914-45.090L-12.812-45.090Q-12.613-45.071-12.562-44.856L-12.562-44.528Q-12.301-44.813-11.945-44.971Q-11.590-45.129-11.203-45.129Q-10.910-45.129-10.676-44.995Q-10.441-44.860-10.441-44.594Q-10.441-44.426-10.551-44.309Q-10.660-44.192-10.828-44.192Q-10.980-44.192-11.096-44.303Q-11.211-44.414-11.211-44.571Q-11.586-44.571-11.900-44.370Q-12.215-44.168-12.388-43.834Q-12.562-43.500-12.562-43.121L-12.562-42.200L-11.617-42.200Q-11.410-42.176-11.371-41.969L-11.371-41.879Q-11.410-41.664-11.617-41.641L-13.914-41.641Q-14.105-41.664-14.164-41.879M-8.277-41.602Q-8.742-41.602-9.107-41.852Q-9.472-42.102-9.678-42.506Q-9.883-42.911-9.883-43.368Q-9.883-43.711-9.758-44.032Q-9.633-44.352-9.400-44.602Q-9.168-44.852-8.863-44.991Q-8.558-45.129-8.203-45.129Q-7.691-45.129-7.285-44.809L-7.285-45.969L-7.707-45.969Q-7.918-45.993-7.957-46.207L-7.957-46.297Q-7.918-46.504-7.707-46.528L-6.894-46.528Q-6.695-46.504-6.644-46.297L-6.644-42.200L-6.219-42.200Q-6.012-42.176-5.972-41.969L-5.972-41.879Q-6.012-41.664-6.219-41.641L-7.035-41.641Q-7.234-41.664-7.285-41.879L-7.285-42.008Q-7.480-41.817-7.742-41.709Q-8.004-41.602-8.277-41.602M-8.238-42.161Q-7.879-42.161-7.627-42.430Q-7.375-42.700-7.285-43.075L-7.285-43.907Q-7.344-44.094-7.471-44.245Q-7.597-44.395-7.775-44.483Q-7.953-44.571-8.148-44.571Q-8.457-44.571-8.707-44.401Q-8.957-44.231-9.101-43.946Q-9.246-43.661-9.246-43.360Q-9.246-42.911-8.961-42.536Q-8.676-42.161-8.238-42.161M-5.277-41.879L-5.277-41.969Q-5.226-42.176-5.031-42.200L-3.992-42.200L-3.992-44.528L-4.965-44.528Q-5.164-44.551-5.215-44.770L-5.215-44.856Q-5.164-45.067-4.965-45.090L-3.597-45.090Q-3.402-45.071-3.351-44.856L-3.351-42.200L-2.437-42.200Q-2.242-42.176-2.191-41.969L-2.191-41.879Q-2.242-41.664-2.437-41.641L-5.031-41.641Q-5.226-41.664-5.277-41.879M-4.246-46.067L-4.246-46.121Q-4.246-46.293-4.109-46.414Q-3.972-46.536-3.797-46.536Q-3.625-46.536-3.488-46.414Q-3.351-46.293-3.351-46.121L-3.351-46.067Q-3.351-45.891-3.488-45.770Q-3.625-45.649-3.797-45.649Q-3.972-45.649-4.109-45.770Q-4.246-45.891-4.246-46.067\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(157.178 153.577)\">\u003Cpath d=\"M-55.683-41.375Q-55.683-41.438-55.652-41.481L-51.906-46.739Q-52.363-46.504-52.929-46.504Q-53.582-46.504-54.187-46.825Q-54.043-46.477-54.043-46.032Q-54.043-45.672-54.164-45.301Q-54.285-44.930-54.535-44.674Q-54.785-44.418-55.148-44.418Q-55.535-44.418-55.818-44.662Q-56.101-44.907-56.248-45.280Q-56.394-45.653-56.394-46.032Q-56.394-46.411-56.248-46.782Q-56.101-47.153-55.818-47.397Q-55.535-47.641-55.148-47.641Q-54.832-47.641-54.562-47.403Q-54.226-47.098-53.797-46.926Q-53.367-46.754-52.929-46.754Q-52.437-46.754-52.019-46.967Q-51.601-47.180-51.301-47.578Q-51.258-47.641-51.164-47.641Q-51.090-47.641-51.035-47.586Q-50.980-47.532-50.980-47.457Q-50.980-47.395-51.012-47.352L-55.355-41.258Q-55.402-41.192-55.500-41.192Q-55.582-41.192-55.633-41.243Q-55.683-41.293-55.683-41.375M-55.148-44.672Q-54.875-44.672-54.687-44.897Q-54.500-45.121-54.412-45.444Q-54.324-45.766-54.324-46.032Q-54.324-46.289-54.412-46.612Q-54.500-46.934-54.687-47.159Q-54.875-47.383-55.148-47.383Q-55.535-47.383-55.678-46.955Q-55.820-46.528-55.820-46.032Q-55.820-45.524-55.679-45.098Q-55.539-44.672-55.148-44.672M-51.371-41.192Q-51.758-41.192-52.041-41.438Q-52.324-41.684-52.472-42.057Q-52.621-42.430-52.621-42.809Q-52.621-43.082-52.535-43.370Q-52.449-43.657-52.295-43.891Q-52.140-44.125-51.904-44.272Q-51.668-44.418-51.371-44.418Q-51.090-44.418-50.883-44.266Q-50.676-44.114-50.537-43.871Q-50.398-43.629-50.332-43.348Q-50.265-43.067-50.265-42.809Q-50.265-42.450-50.387-42.077Q-50.508-41.703-50.758-41.448Q-51.008-41.192-51.371-41.192M-51.371-41.450Q-51.097-41.450-50.910-41.674Q-50.722-41.899-50.635-42.221Q-50.547-42.543-50.547-42.809Q-50.547-43.067-50.635-43.389Q-50.722-43.711-50.910-43.936Q-51.097-44.161-51.371-44.161Q-51.762-44.161-51.902-43.731Q-52.043-43.301-52.043-42.809Q-52.043-42.301-51.906-41.875Q-51.769-41.450-51.371-41.450M-47.543-41.641L-49.523-41.641L-49.523-41.938Q-49.254-41.938-49.086-41.983Q-48.918-42.028-48.918-42.200L-48.918-44.336Q-48.918-44.551-48.980-44.647Q-49.043-44.743-49.160-44.764Q-49.277-44.786-49.523-44.786L-49.523-45.082L-48.355-45.168L-48.355-44.383Q-48.277-44.594-48.125-44.780Q-47.972-44.965-47.773-45.067Q-47.574-45.168-47.347-45.168Q-47.101-45.168-46.910-45.024Q-46.719-44.879-46.719-44.649Q-46.719-44.493-46.824-44.383Q-46.929-44.274-47.086-44.274Q-47.242-44.274-47.351-44.383Q-47.461-44.493-47.461-44.649Q-47.461-44.809-47.355-44.914Q-47.679-44.914-47.894-44.686Q-48.109-44.457-48.205-44.118Q-48.301-43.778-48.301-43.473L-48.301-42.200Q-48.301-42.032-48.074-41.985Q-47.847-41.938-47.543-41.938L-47.543-41.641M-44.422-41.563Q-44.902-41.563-45.310-41.807Q-45.719-42.051-45.957-42.465Q-46.195-42.879-46.195-43.368Q-46.195-43.860-45.937-44.276Q-45.679-44.692-45.248-44.930Q-44.816-45.168-44.324-45.168Q-43.703-45.168-43.254-44.731L-43.254-46.360Q-43.254-46.575-43.316-46.670Q-43.379-46.766-43.496-46.787Q-43.613-46.809-43.859-46.809L-43.859-47.106L-42.637-47.192L-42.637-42.383Q-42.637-42.172-42.574-42.077Q-42.512-41.981-42.394-41.959Q-42.277-41.938-42.027-41.938L-42.027-41.641L-43.277-41.563L-43.277-42.047Q-43.742-41.563-44.422-41.563M-44.355-41.817Q-44.015-41.817-43.722-42.008Q-43.429-42.200-43.277-42.496L-43.277-44.328Q-43.426-44.602-43.687-44.758Q-43.949-44.914-44.262-44.914Q-44.887-44.914-45.170-44.467Q-45.453-44.020-45.453-43.360Q-45.453-42.715-45.201-42.266Q-44.949-41.817-44.355-41.817M-39.660-41.641L-41.437-41.641L-41.437-41.938Q-41.164-41.938-40.996-41.985Q-40.828-42.032-40.828-42.200L-40.828-44.336Q-40.828-44.551-40.885-44.647Q-40.941-44.743-41.054-44.764Q-41.168-44.786-41.414-44.786L-41.414-45.082L-40.215-45.168L-40.215-42.200Q-40.215-42.032-40.068-41.985Q-39.922-41.938-39.660-41.938L-39.660-41.641M-41.101-46.563Q-41.101-46.754-40.967-46.885Q-40.832-47.016-40.637-47.016Q-40.515-47.016-40.412-46.953Q-40.308-46.891-40.246-46.787Q-40.183-46.684-40.183-46.563Q-40.183-46.368-40.314-46.233Q-40.445-46.098-40.637-46.098Q-40.836-46.098-40.969-46.231Q-41.101-46.364-41.101-46.563M-33.437-42.618L-38.750-42.618Q-38.828-42.625-38.877-42.674Q-38.926-42.723-38.926-42.801Q-38.926-42.871-38.879-42.922Q-38.832-42.973-38.750-42.985L-33.437-42.985Q-33.363-42.973-33.316-42.922Q-33.269-42.871-33.269-42.801Q-33.269-42.723-33.318-42.674Q-33.367-42.625-33.437-42.618M-33.437-44.305L-38.750-44.305Q-38.828-44.313-38.877-44.362Q-38.926-44.411-38.926-44.489Q-38.926-44.559-38.879-44.610Q-38.832-44.661-38.750-44.672L-33.437-44.672Q-33.363-44.661-33.316-44.610Q-33.269-44.559-33.269-44.489Q-33.269-44.411-33.318-44.362Q-33.367-44.313-33.437-44.305M-29.195-41.641L-31.988-41.641L-31.988-41.938Q-30.926-41.938-30.926-42.200L-30.926-46.368Q-31.355-46.153-32.035-46.153L-32.035-46.450Q-31.015-46.450-30.500-46.961L-30.355-46.961Q-30.281-46.942-30.262-46.864L-30.262-42.200Q-30.262-41.938-29.195-41.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 153.577)\">\u003Cpath d=\"M-23.341-43.090L-25.595-43.090L-25.595-43.641L-23.341-43.641\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 153.577)\">\u003Cpath d=\"M-16.433-41.641L-19.226-41.641L-19.226-41.938Q-18.164-41.938-18.164-42.200L-18.164-46.368Q-18.593-46.153-19.273-46.153L-19.273-46.450Q-18.254-46.450-17.738-46.961L-17.593-46.961Q-17.519-46.942-17.500-46.864L-17.500-42.200Q-17.500-41.938-16.433-41.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(259.608 153.533)\">\u003Cpath d=\"M-52.250-41.641L-56.281-41.641Q-56.332-41.641-56.363-41.672Q-56.394-41.703-56.394-41.754L-56.394-41.856Q-56.394-41.883-56.363-41.930L-53.066-46.809L-54.242-46.809Q-54.679-46.809-55.002-46.743Q-55.324-46.676-55.554-46.465Q-55.781-46.250-55.888-45.928Q-55.996-45.606-55.996-45.258L-56.273-45.258L-56.179-47.106L-52.265-47.106Q-52.219-47.106-52.187-47.073Q-52.156-47.039-52.156-46.993L-52.156-46.907Q-52.156-46.903-52.179-46.832L-55.484-41.961L-54.250-41.961Q-53.957-41.961-53.709-41.987Q-53.461-42.012-53.232-42.094Q-53.004-42.176-52.820-42.352Q-52.582-42.590-52.500-42.944Q-52.418-43.297-52.387-43.825L-52.105-43.825L-52.250-41.641M-48.754-41.641L-51.340-41.641L-51.340-41.938Q-51.019-41.938-50.775-41.985Q-50.531-42.032-50.531-42.200L-50.531-46.543Q-50.531-46.715-50.775-46.762Q-51.019-46.809-51.340-46.809L-51.340-47.106L-46.722-47.106L-46.492-45.258L-46.773-45.258Q-46.859-45.942-47.021-46.262Q-47.183-46.582-47.523-46.696Q-47.863-46.809-48.554-46.809L-49.363-46.809Q-49.582-46.809-49.674-46.766Q-49.765-46.723-49.765-46.543L-49.765-44.520L-49.156-44.520Q-48.730-44.520-48.533-44.586Q-48.336-44.653-48.254-44.846Q-48.172-45.039-48.172-45.457L-47.890-45.457L-47.890-43.289L-48.172-43.289Q-48.172-43.707-48.254-43.901Q-48.336-44.094-48.533-44.161Q-48.730-44.227-49.156-44.227L-49.765-44.227L-49.765-42.200Q-49.765-42.036-49.447-41.987Q-49.129-41.938-48.754-41.938L-48.754-41.641M-42.539-41.641L-45.332-41.641L-45.332-41.938Q-44.269-41.938-44.269-42.200L-44.269-46.368Q-44.699-46.153-45.379-46.153L-45.379-46.450Q-44.359-46.450-43.844-46.961L-43.699-46.961Q-43.625-46.942-43.605-46.864L-43.605-42.200Q-43.605-41.938-42.539-41.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(259.608 153.533)\">\u003Cpath d=\"M-38.572-41.563L-38.572-43.368Q-38.572-43.395-38.541-43.426Q-38.510-43.457-38.486-43.457L-38.381-43.457Q-38.350-43.457-38.320-43.428Q-38.291-43.399-38.291-43.368Q-38.291-42.586-37.775-42.178Q-37.260-41.770-36.451-41.770Q-36.154-41.770-35.899-41.920Q-35.643-42.071-35.492-42.327Q-35.342-42.582-35.342-42.879Q-35.342-43.278-35.588-43.582Q-35.834-43.887-36.205-43.969L-37.326-44.227Q-37.666-44.301-37.953-44.522Q-38.240-44.743-38.406-45.061Q-38.572-45.379-38.572-45.731Q-38.572-46.161-38.342-46.516Q-38.111-46.871-37.731-47.073Q-37.350-47.274-36.924-47.274Q-36.674-47.274-36.428-47.215Q-36.182-47.157-35.963-47.034Q-35.744-46.911-35.580-46.731L-35.252-47.227Q-35.221-47.274-35.182-47.274L-35.135-47.274Q-35.108-47.274-35.076-47.243Q-35.045-47.211-35.045-47.184L-35.045-45.375Q-35.045-45.352-35.076-45.321Q-35.108-45.289-35.135-45.289L-35.236-45.289Q-35.268-45.289-35.297-45.319Q-35.326-45.348-35.326-45.375Q-35.326-45.508-35.369-45.694Q-35.412-45.879-35.477-46.034Q-35.541-46.188-35.641-46.346Q-35.740-46.504-35.830-46.594Q-36.260-47-36.924-47Q-37.201-47-37.461-46.868Q-37.721-46.735-37.879-46.500Q-38.037-46.266-38.037-45.985Q-38.037-45.629-37.797-45.358Q-37.557-45.086-37.190-45L-36.076-44.746Q-35.799-44.680-35.566-44.526Q-35.334-44.371-35.164-44.153Q-34.994-43.934-34.900-43.676Q-34.807-43.418-34.807-43.129Q-34.807-42.801-34.932-42.498Q-35.057-42.196-35.291-41.959Q-35.525-41.723-35.818-41.598Q-36.111-41.473-36.451-41.473Q-37.467-41.473-38.037-42.016L-38.365-41.520Q-38.397-41.473-38.436-41.473L-38.486-41.473Q-38.510-41.473-38.541-41.504Q-38.572-41.536-38.572-41.563M-31.404-41.641L-33.990-41.641L-33.990-41.938Q-33.670-41.938-33.426-41.985Q-33.182-42.032-33.182-42.200L-33.182-46.543Q-33.182-46.715-33.426-46.762Q-33.670-46.809-33.990-46.809L-33.990-47.106L-29.373-47.106L-29.143-45.258L-29.424-45.258Q-29.510-45.942-29.672-46.262Q-29.834-46.582-30.174-46.696Q-30.514-46.809-31.205-46.809L-32.014-46.809Q-32.233-46.809-32.324-46.766Q-32.416-46.723-32.416-46.543L-32.416-44.520L-31.807-44.520Q-31.381-44.520-31.184-44.586Q-30.986-44.653-30.904-44.846Q-30.822-45.039-30.822-45.457L-30.541-45.457L-30.541-43.289L-30.822-43.289Q-30.822-43.707-30.904-43.901Q-30.986-44.094-31.184-44.161Q-31.381-44.227-31.807-44.227L-32.416-44.227L-32.416-42.200Q-32.416-42.036-32.098-41.987Q-31.779-41.938-31.404-41.938L-31.404-41.641M-26.662-41.473Q-27.365-41.473-27.766-41.873Q-28.166-42.274-28.311-42.883Q-28.455-43.493-28.455-44.192Q-28.455-44.715-28.385-45.178Q-28.315-45.641-28.121-46.053Q-27.928-46.465-27.570-46.713Q-27.213-46.961-26.662-46.961Q-26.111-46.961-25.754-46.713Q-25.397-46.465-25.205-46.055Q-25.014-45.645-24.943-45.176Q-24.873-44.707-24.873-44.192Q-24.873-43.493-25.016-42.885Q-25.158-42.278-25.559-41.875Q-25.959-41.473-26.662-41.473M-26.662-41.731Q-26.190-41.731-25.957-42.166Q-25.725-42.602-25.670-43.141Q-25.615-43.680-25.615-44.321Q-25.615-45.317-25.799-46.010Q-25.983-46.703-26.662-46.703Q-27.029-46.703-27.250-46.465Q-27.471-46.227-27.566-45.870Q-27.662-45.512-27.688-45.141Q-27.713-44.770-27.713-44.321Q-27.713-43.680-27.658-43.141Q-27.604-42.602-27.371-42.166Q-27.139-41.731-26.662-41.731\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(316.513 153.855)\">\u003Cpath d=\"M-54.245-41.529Q-54.933-41.529-55.424-42.034Q-55.915-42.539-56.152-43.289Q-56.388-44.038-56.388-44.703Q-56.388-45.362-56.152-46.104Q-55.915-46.846-55.424-47.354Q-54.933-47.862-54.245-47.862Q-53.718-47.862-53.305-47.559Q-52.892-47.256-52.631-46.773Q-52.370-46.289-52.238-45.747Q-52.106-45.205-52.106-44.703Q-52.106-44.195-52.238-43.653Q-52.370-43.111-52.634-42.622Q-52.897-42.134-53.307-41.831Q-53.718-41.529-54.245-41.529M-54.245-42.183Q-53.859-42.183-53.588-42.459Q-53.317-42.735-53.154-43.150Q-52.990-43.565-52.914-44.012Q-52.839-44.458-52.839-44.820Q-52.839-45.142-52.917-45.559Q-52.995-45.977-53.159-46.348Q-53.322-46.719-53.598-46.966Q-53.874-47.212-54.245-47.212Q-54.616-47.212-54.885-46.973Q-55.153-46.734-55.322-46.360Q-55.490-45.987-55.573-45.564Q-55.656-45.142-55.656-44.820Q-55.656-44.341-55.517-43.721Q-55.378-43.101-55.055-42.642Q-54.733-42.183-54.245-42.183M-49.587-41.641L-51.047-41.641Q-51.301-41.670-51.330-41.919L-51.330-42.012Q-51.301-42.261-51.047-42.290L-50.519-42.290L-49.318-43.863L-50.446-45.303L-50.988-45.303Q-51.237-45.332-51.266-45.581L-51.266-45.669Q-51.252-45.791-51.183-45.865Q-51.115-45.938-50.988-45.953L-49.528-45.953Q-49.294-45.923-49.250-45.669L-49.250-45.581Q-49.294-45.332-49.528-45.303L-49.719-45.303L-49.030-44.370L-48.346-45.303L-48.556-45.303Q-48.796-45.332-48.840-45.581L-48.840-45.669Q-48.820-45.787-48.744-45.862Q-48.669-45.938-48.556-45.953L-47.096-45.953Q-46.979-45.938-46.906-45.865Q-46.833-45.791-46.818-45.669L-46.818-45.581Q-46.847-45.332-47.096-45.303L-47.629-45.303L-48.727-43.863L-47.497-42.290L-46.960-42.290Q-46.838-42.276-46.764-42.207Q-46.691-42.139-46.677-42.012L-46.677-41.919Q-46.691-41.802-46.764-41.729Q-46.838-41.656-46.960-41.641L-48.420-41.641Q-48.649-41.670-48.698-41.919L-48.698-42.012Q-48.654-42.261-48.420-42.290L-48.200-42.290L-49.030-43.453L-49.816-42.290L-49.587-42.290Q-49.352-42.261-49.308-42.012L-49.308-41.919Q-49.352-41.670-49.587-41.641M-45.851-41.919L-45.851-42.012Q-45.851-42.129-45.710-42.251L-44.098-43.589Q-44.025-43.648-43.615-43.992Q-43.205-44.336-42.951-44.617Q-42.697-44.898-42.538-45.223Q-42.380-45.547-42.380-45.899Q-42.380-46.319-42.604-46.617Q-42.829-46.914-43.198-47.063Q-43.566-47.212-43.967-47.212Q-44.318-47.212-44.628-47.027Q-44.938-46.841-45.060-46.509Q-44.919-46.377-44.919-46.182Q-44.919-45.996-45.055-45.855Q-45.192-45.713-45.378-45.713Q-45.588-45.713-45.720-45.857Q-45.851-46.001-45.851-46.202Q-45.851-46.690-45.566-47.071Q-45.280-47.452-44.831-47.657Q-44.382-47.862-43.898-47.862Q-43.454-47.862-43.049-47.732Q-42.643-47.603-42.324-47.344Q-42.004-47.085-41.825-46.719Q-41.647-46.353-41.647-45.899Q-41.647-45.332-41.933-44.849Q-42.219-44.366-42.565-44.046Q-42.912-43.726-43.610-43.160L-44.660-42.290L-42.380-42.290L-42.380-42.481Q-42.350-42.730-42.101-42.759L-41.930-42.759Q-41.808-42.745-41.735-42.676Q-41.662-42.608-41.647-42.481L-41.647-41.919Q-41.662-41.802-41.735-41.729Q-41.808-41.656-41.930-41.641L-45.568-41.641Q-45.812-41.670-45.851-41.919M-40.602-41.919L-40.602-42.012Q-40.602-42.129-40.461-42.251L-38.849-43.589Q-38.776-43.648-38.366-43.992Q-37.956-44.336-37.702-44.617Q-37.448-44.898-37.289-45.223Q-37.131-45.547-37.131-45.899Q-37.131-46.319-37.355-46.617Q-37.580-46.914-37.949-47.063Q-38.317-47.212-38.718-47.212Q-39.069-47.212-39.379-47.027Q-39.689-46.841-39.811-46.509Q-39.670-46.377-39.670-46.182Q-39.670-45.996-39.806-45.855Q-39.943-45.713-40.129-45.713Q-40.339-45.713-40.471-45.857Q-40.602-46.001-40.602-46.202Q-40.602-46.690-40.317-47.071Q-40.031-47.452-39.582-47.657Q-39.133-47.862-38.649-47.862Q-38.205-47.862-37.800-47.732Q-37.394-47.603-37.075-47.344Q-36.755-47.085-36.576-46.719Q-36.398-46.353-36.398-45.899Q-36.398-45.332-36.684-44.849Q-36.970-44.366-37.316-44.046Q-37.663-43.726-38.361-43.160L-39.411-42.290L-37.131-42.290L-37.131-42.481Q-37.101-42.730-36.852-42.759L-36.681-42.759Q-36.559-42.745-36.486-42.676Q-36.413-42.608-36.398-42.481L-36.398-41.919Q-36.413-41.802-36.486-41.729Q-36.559-41.656-36.681-41.641L-40.319-41.641Q-40.563-41.670-40.602-41.919\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(362.038 153.577)\">\u003Cpath d=\"M-55.683-41.375Q-55.683-41.438-55.652-41.481L-51.906-46.739Q-52.363-46.504-52.929-46.504Q-53.582-46.504-54.187-46.825Q-54.043-46.477-54.043-46.032Q-54.043-45.672-54.164-45.301Q-54.285-44.930-54.535-44.674Q-54.785-44.418-55.148-44.418Q-55.535-44.418-55.818-44.662Q-56.101-44.907-56.248-45.280Q-56.394-45.653-56.394-46.032Q-56.394-46.411-56.248-46.782Q-56.101-47.153-55.818-47.397Q-55.535-47.641-55.148-47.641Q-54.832-47.641-54.562-47.403Q-54.226-47.098-53.797-46.926Q-53.367-46.754-52.929-46.754Q-52.437-46.754-52.019-46.967Q-51.601-47.180-51.301-47.578Q-51.258-47.641-51.164-47.641Q-51.090-47.641-51.035-47.586Q-50.980-47.532-50.980-47.457Q-50.980-47.395-51.012-47.352L-55.355-41.258Q-55.402-41.192-55.500-41.192Q-55.582-41.192-55.633-41.243Q-55.683-41.293-55.683-41.375M-55.148-44.672Q-54.875-44.672-54.687-44.897Q-54.500-45.121-54.412-45.444Q-54.324-45.766-54.324-46.032Q-54.324-46.289-54.412-46.612Q-54.500-46.934-54.687-47.159Q-54.875-47.383-55.148-47.383Q-55.535-47.383-55.678-46.955Q-55.820-46.528-55.820-46.032Q-55.820-45.524-55.679-45.098Q-55.539-44.672-55.148-44.672M-51.371-41.192Q-51.758-41.192-52.041-41.438Q-52.324-41.684-52.472-42.057Q-52.621-42.430-52.621-42.809Q-52.621-43.082-52.535-43.370Q-52.449-43.657-52.295-43.891Q-52.140-44.125-51.904-44.272Q-51.668-44.418-51.371-44.418Q-51.090-44.418-50.883-44.266Q-50.676-44.114-50.537-43.871Q-50.398-43.629-50.332-43.348Q-50.265-43.067-50.265-42.809Q-50.265-42.450-50.387-42.077Q-50.508-41.703-50.758-41.448Q-51.008-41.192-51.371-41.192M-51.371-41.450Q-51.097-41.450-50.910-41.674Q-50.722-41.899-50.635-42.221Q-50.547-42.543-50.547-42.809Q-50.547-43.067-50.635-43.389Q-50.722-43.711-50.910-43.936Q-51.097-44.161-51.371-44.161Q-51.762-44.161-51.902-43.731Q-52.043-43.301-52.043-42.809Q-52.043-42.301-51.906-41.875Q-51.769-41.450-51.371-41.450M-47.543-41.641L-49.523-41.641L-49.523-41.938Q-49.254-41.938-49.086-41.983Q-48.918-42.028-48.918-42.200L-48.918-44.336Q-48.918-44.551-48.980-44.647Q-49.043-44.743-49.160-44.764Q-49.277-44.786-49.523-44.786L-49.523-45.082L-48.355-45.168L-48.355-44.383Q-48.277-44.594-48.125-44.780Q-47.972-44.965-47.773-45.067Q-47.574-45.168-47.347-45.168Q-47.101-45.168-46.910-45.024Q-46.719-44.879-46.719-44.649Q-46.719-44.493-46.824-44.383Q-46.929-44.274-47.086-44.274Q-47.242-44.274-47.351-44.383Q-47.461-44.493-47.461-44.649Q-47.461-44.809-47.355-44.914Q-47.679-44.914-47.894-44.686Q-48.109-44.457-48.205-44.118Q-48.301-43.778-48.301-43.473L-48.301-42.200Q-48.301-42.032-48.074-41.985Q-47.847-41.938-47.543-41.938L-47.543-41.641M-44.422-41.563Q-44.902-41.563-45.310-41.807Q-45.719-42.051-45.957-42.465Q-46.195-42.879-46.195-43.368Q-46.195-43.860-45.937-44.276Q-45.679-44.692-45.248-44.930Q-44.816-45.168-44.324-45.168Q-43.703-45.168-43.254-44.731L-43.254-46.360Q-43.254-46.575-43.316-46.670Q-43.379-46.766-43.496-46.787Q-43.613-46.809-43.859-46.809L-43.859-47.106L-42.637-47.192L-42.637-42.383Q-42.637-42.172-42.574-42.077Q-42.512-41.981-42.394-41.959Q-42.277-41.938-42.027-41.938L-42.027-41.641L-43.277-41.563L-43.277-42.047Q-43.742-41.563-44.422-41.563M-44.355-41.817Q-44.015-41.817-43.722-42.008Q-43.429-42.200-43.277-42.496L-43.277-44.328Q-43.426-44.602-43.687-44.758Q-43.949-44.914-44.262-44.914Q-44.887-44.914-45.170-44.467Q-45.453-44.020-45.453-43.360Q-45.453-42.715-45.201-42.266Q-44.949-41.817-44.355-41.817M-39.660-41.641L-41.437-41.641L-41.437-41.938Q-41.164-41.938-40.996-41.985Q-40.828-42.032-40.828-42.200L-40.828-44.336Q-40.828-44.551-40.885-44.647Q-40.941-44.743-41.054-44.764Q-41.168-44.786-41.414-44.786L-41.414-45.082L-40.215-45.168L-40.215-42.200Q-40.215-42.032-40.068-41.985Q-39.922-41.938-39.660-41.938L-39.660-41.641M-41.101-46.563Q-41.101-46.754-40.967-46.885Q-40.832-47.016-40.637-47.016Q-40.515-47.016-40.412-46.953Q-40.308-46.891-40.246-46.787Q-40.183-46.684-40.183-46.563Q-40.183-46.368-40.314-46.233Q-40.445-46.098-40.637-46.098Q-40.836-46.098-40.969-46.231Q-41.101-46.364-41.101-46.563M-33.437-42.618L-38.750-42.618Q-38.828-42.625-38.877-42.674Q-38.926-42.723-38.926-42.801Q-38.926-42.871-38.879-42.922Q-38.832-42.973-38.750-42.985L-33.437-42.985Q-33.363-42.973-33.316-42.922Q-33.269-42.871-33.269-42.801Q-33.269-42.723-33.318-42.674Q-33.367-42.625-33.437-42.618M-33.437-44.305L-38.750-44.305Q-38.828-44.313-38.877-44.362Q-38.926-44.411-38.926-44.489Q-38.926-44.559-38.879-44.610Q-38.832-44.661-38.750-44.672L-33.437-44.672Q-33.363-44.661-33.316-44.610Q-33.269-44.559-33.269-44.489Q-33.269-44.411-33.318-44.362Q-33.367-44.313-33.437-44.305M-30.668-41.473Q-31.371-41.473-31.771-41.873Q-32.172-42.274-32.316-42.883Q-32.461-43.493-32.461-44.192Q-32.461-44.715-32.390-45.178Q-32.320-45.641-32.127-46.053Q-31.933-46.465-31.576-46.713Q-31.219-46.961-30.668-46.961Q-30.117-46.961-29.760-46.713Q-29.402-46.465-29.211-46.055Q-29.019-45.645-28.949-45.176Q-28.879-44.707-28.879-44.192Q-28.879-43.493-29.021-42.885Q-29.164-42.278-29.564-41.875Q-29.965-41.473-30.668-41.473M-30.668-41.731Q-30.195-41.731-29.963-42.166Q-29.730-42.602-29.676-43.141Q-29.621-43.680-29.621-44.321Q-29.621-45.317-29.804-46.010Q-29.988-46.703-30.668-46.703Q-31.035-46.703-31.256-46.465Q-31.476-46.227-31.572-45.870Q-31.668-45.512-31.693-45.141Q-31.719-44.770-31.719-44.321Q-31.719-43.680-31.664-43.141Q-31.609-42.602-31.377-42.166Q-31.144-41.731-30.668-41.731\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 119.117h423.946\"\u002F>\u003Cg transform=\"translate(-2.157 173.294)\">\u003Cpath d=\"M-53.273-41.641L-56.066-41.641L-56.066-41.938Q-55.004-41.938-55.004-42.200L-55.004-46.368Q-55.433-46.153-56.113-46.153L-56.113-46.450Q-55.094-46.450-54.578-46.961L-54.433-46.961Q-54.359-46.942-54.340-46.864L-54.340-42.200Q-54.340-41.938-53.273-41.938L-53.273-41.641M-49.035-41.641L-52.195-41.641L-52.195-41.848Q-52.195-41.875-52.172-41.907L-50.820-43.305Q-50.441-43.692-50.193-43.981Q-49.945-44.270-49.771-44.627Q-49.597-44.985-49.597-45.375Q-49.597-45.723-49.730-46.016Q-49.863-46.309-50.117-46.487Q-50.371-46.664-50.726-46.664Q-51.086-46.664-51.377-46.469Q-51.668-46.274-51.812-45.946L-51.758-45.946Q-51.574-45.946-51.449-45.825Q-51.324-45.703-51.324-45.512Q-51.324-45.332-51.449-45.203Q-51.574-45.075-51.758-45.075Q-51.937-45.075-52.066-45.203Q-52.195-45.332-52.195-45.512Q-52.195-45.914-51.974-46.250Q-51.754-46.586-51.388-46.774Q-51.023-46.961-50.621-46.961Q-50.140-46.961-49.724-46.774Q-49.308-46.586-49.056-46.225Q-48.804-45.864-48.804-45.375Q-48.804-45.016-48.959-44.713Q-49.113-44.411-49.365-44.151Q-49.617-43.891-49.967-43.606Q-50.316-43.321-50.484-43.168L-51.414-42.328L-50.699-42.328Q-49.324-42.328-49.285-42.368Q-49.215-42.446-49.172-42.631Q-49.129-42.817-49.086-43.106L-48.804-43.106\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(27.718 173.772)\">\u003Cpath d=\"M-54.245-41.529Q-54.933-41.529-55.424-42.034Q-55.915-42.539-56.152-43.289Q-56.388-44.038-56.388-44.703Q-56.388-45.362-56.152-46.104Q-55.915-46.846-55.424-47.354Q-54.933-47.862-54.245-47.862Q-53.718-47.862-53.305-47.559Q-52.892-47.256-52.631-46.773Q-52.370-46.289-52.238-45.747Q-52.106-45.205-52.106-44.703Q-52.106-44.195-52.238-43.653Q-52.370-43.111-52.634-42.622Q-52.897-42.134-53.307-41.831Q-53.718-41.529-54.245-41.529M-54.245-42.183Q-53.859-42.183-53.588-42.459Q-53.317-42.735-53.154-43.150Q-52.990-43.565-52.914-44.012Q-52.839-44.458-52.839-44.820Q-52.839-45.142-52.917-45.559Q-52.995-45.977-53.159-46.348Q-53.322-46.719-53.598-46.966Q-53.874-47.212-54.245-47.212Q-54.616-47.212-54.885-46.973Q-55.153-46.734-55.322-46.360Q-55.490-45.987-55.573-45.564Q-55.656-45.142-55.656-44.820Q-55.656-44.341-55.517-43.721Q-55.378-43.101-55.055-42.642Q-54.733-42.183-54.245-42.183M-49.587-41.641L-51.047-41.641Q-51.301-41.670-51.330-41.919L-51.330-42.012Q-51.301-42.261-51.047-42.290L-50.519-42.290L-49.318-43.863L-50.446-45.303L-50.988-45.303Q-51.237-45.332-51.266-45.581L-51.266-45.669Q-51.252-45.791-51.183-45.865Q-51.115-45.938-50.988-45.953L-49.528-45.953Q-49.294-45.923-49.250-45.669L-49.250-45.581Q-49.294-45.332-49.528-45.303L-49.719-45.303L-49.030-44.370L-48.346-45.303L-48.556-45.303Q-48.796-45.332-48.840-45.581L-48.840-45.669Q-48.820-45.787-48.744-45.862Q-48.669-45.938-48.556-45.953L-47.096-45.953Q-46.979-45.938-46.906-45.865Q-46.833-45.791-46.818-45.669L-46.818-45.581Q-46.847-45.332-47.096-45.303L-47.629-45.303L-48.727-43.863L-47.497-42.290L-46.960-42.290Q-46.838-42.276-46.764-42.207Q-46.691-42.139-46.677-42.012L-46.677-41.919Q-46.691-41.802-46.764-41.729Q-46.838-41.656-46.960-41.641L-48.420-41.641Q-48.649-41.670-48.698-41.919L-48.698-42.012Q-48.654-42.261-48.420-42.290L-48.200-42.290L-49.030-43.453L-49.816-42.290L-49.587-42.290Q-49.352-42.261-49.308-42.012L-49.308-41.919Q-49.352-41.670-49.587-41.641M-45.851-41.919L-45.851-42.012Q-45.851-42.129-45.710-42.251L-44.098-43.589Q-44.025-43.648-43.615-43.992Q-43.205-44.336-42.951-44.617Q-42.697-44.898-42.538-45.223Q-42.380-45.547-42.380-45.899Q-42.380-46.319-42.604-46.617Q-42.829-46.914-43.198-47.063Q-43.566-47.212-43.967-47.212Q-44.318-47.212-44.628-47.027Q-44.938-46.841-45.060-46.509Q-44.919-46.377-44.919-46.182Q-44.919-45.996-45.055-45.855Q-45.192-45.713-45.378-45.713Q-45.588-45.713-45.720-45.857Q-45.851-46.001-45.851-46.202Q-45.851-46.690-45.566-47.071Q-45.280-47.452-44.831-47.657Q-44.382-47.862-43.898-47.862Q-43.454-47.862-43.049-47.732Q-42.643-47.603-42.324-47.344Q-42.004-47.085-41.825-46.719Q-41.647-46.353-41.647-45.899Q-41.647-45.332-41.933-44.849Q-42.219-44.366-42.565-44.046Q-42.912-43.726-43.610-43.160L-44.660-42.290L-42.380-42.290L-42.380-42.481Q-42.350-42.730-42.101-42.759L-41.930-42.759Q-41.808-42.745-41.735-42.676Q-41.662-42.608-41.647-42.481L-41.647-41.919Q-41.662-41.802-41.735-41.729Q-41.808-41.656-41.930-41.641L-45.568-41.641Q-45.812-41.670-45.851-41.919M-40.602-41.919L-40.602-42.012Q-40.602-42.129-40.461-42.251L-38.849-43.589Q-38.776-43.648-38.366-43.992Q-37.956-44.336-37.702-44.617Q-37.448-44.898-37.289-45.223Q-37.131-45.547-37.131-45.899Q-37.131-46.319-37.355-46.617Q-37.580-46.914-37.949-47.063Q-38.317-47.212-38.718-47.212Q-39.069-47.212-39.379-47.027Q-39.689-46.841-39.811-46.509Q-39.670-46.377-39.670-46.182Q-39.670-45.996-39.806-45.855Q-39.943-45.713-40.129-45.713Q-40.339-45.713-40.471-45.857Q-40.602-46.001-40.602-46.202Q-40.602-46.690-40.317-47.071Q-40.031-47.452-39.582-47.657Q-39.133-47.862-38.649-47.862Q-38.205-47.862-37.800-47.732Q-37.394-47.603-37.075-47.344Q-36.755-47.085-36.576-46.719Q-36.398-46.353-36.398-45.899Q-36.398-45.332-36.684-44.849Q-36.970-44.366-37.316-44.046Q-37.663-43.726-38.361-43.160L-39.411-42.290L-37.131-42.290L-37.131-42.481Q-37.101-42.730-36.852-42.759L-36.681-42.759Q-36.559-42.745-36.486-42.676Q-36.413-42.608-36.398-42.481L-36.398-41.919Q-36.413-41.802-36.486-41.729Q-36.559-41.656-36.681-41.641L-40.319-41.641Q-40.563-41.670-40.602-41.919\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(66.129 172.272)\">\u003Cpath d=\"M-56.484-40.457L-56.484-40.512Q-56.484-40.668-56.359-40.778Q-56.234-40.887-56.074-40.887Q-55.922-40.887-55.799-40.776Q-55.676-40.664-55.676-40.512L-55.676-40.457Q-55.676-40.434-55.678-40.426Q-55.679-40.418-55.683-40.411Q-55.523-40.383-55.211-40.383Q-54.859-40.383-54.676-40.678Q-54.492-40.973-54.492-41.336L-54.492-44.528L-55.594-44.528Q-55.793-44.551-55.844-44.770L-55.844-44.856Q-55.793-45.067-55.594-45.090L-54.097-45.090Q-53.902-45.067-53.851-44.856L-53.851-41.282Q-53.851-40.911-54.033-40.571Q-54.215-40.231-54.531-40.028Q-54.847-39.825-55.219-39.825Q-55.465-39.825-55.652-39.836Q-55.840-39.848-56.037-39.911Q-56.234-39.973-56.359-40.104Q-56.484-40.235-56.484-40.457M-54.746-46.067L-54.746-46.121Q-54.746-46.293-54.609-46.414Q-54.472-46.536-54.301-46.536Q-54.125-46.536-53.988-46.414Q-53.851-46.293-53.851-46.121L-53.851-46.067Q-53.851-45.891-53.988-45.770Q-54.125-45.649-54.301-45.649Q-54.472-45.649-54.609-45.770Q-54.746-45.891-54.746-46.067M-52.551-41.879L-52.551-41.969Q-52.508-42.176-52.301-42.200L-51.879-42.200L-51.879-44.528L-52.301-44.528Q-52.508-44.551-52.551-44.770L-52.551-44.856Q-52.504-45.067-52.301-45.090L-51.484-45.090Q-51.289-45.067-51.238-44.856L-51.238-44.770L-51.246-44.746Q-51.019-44.926-50.746-45.028Q-50.472-45.129-50.179-45.129Q-49.832-45.129-49.594-44.989Q-49.355-44.848-49.240-44.590Q-49.125-44.332-49.125-43.977L-49.125-42.200L-48.699-42.200Q-48.492-42.176-48.453-41.969L-48.453-41.879Q-48.492-41.664-48.699-41.641L-50.094-41.641Q-50.289-41.664-50.340-41.879L-50.340-41.969Q-50.289-42.180-50.094-42.200L-49.765-42.200L-49.765-43.946Q-49.765-44.254-49.855-44.412Q-49.945-44.571-50.238-44.571Q-50.508-44.571-50.736-44.440Q-50.965-44.309-51.101-44.080Q-51.238-43.852-51.238-43.586L-51.238-42.200L-50.812-42.200Q-50.605-42.176-50.566-41.969L-50.566-41.879Q-50.605-41.664-50.812-41.641L-52.301-41.641Q-52.508-41.664-52.551-41.879M-44.863-43.129L-47.304-43.129Q-47.250-42.852-47.053-42.629Q-46.855-42.407-46.578-42.284Q-46.301-42.161-46.015-42.161Q-45.543-42.161-45.320-42.450Q-45.312-42.461-45.256-42.567Q-45.199-42.672-45.150-42.715Q-45.101-42.758-45.008-42.770L-44.863-42.770Q-44.672-42.750-44.613-42.536L-44.613-42.481Q-44.679-42.180-44.910-41.983Q-45.140-41.786-45.453-41.694Q-45.765-41.602-46.070-41.602Q-46.554-41.602-46.994-41.830Q-47.433-42.059-47.701-42.459Q-47.969-42.860-47.969-43.352L-47.969-43.411Q-47.969-43.879-47.722-44.282Q-47.476-44.684-47.068-44.918Q-46.660-45.153-46.191-45.153Q-45.687-45.153-45.334-44.930Q-44.980-44.707-44.797-44.319Q-44.613-43.930-44.613-43.426L-44.613-43.368Q-44.672-43.153-44.863-43.129M-47.297-43.680L-45.269-43.680Q-45.316-44.090-45.554-44.342Q-45.793-44.594-46.191-44.594Q-46.586-44.594-46.892-44.332Q-47.199-44.071-47.297-43.680\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(66.129 172.272)\">\u003Cpath d=\"M-37.746-41.563Q-38.179-41.563-38.512-41.801Q-38.844-42.039-39.064-42.428Q-39.285-42.817-39.392-43.254Q-39.500-43.692-39.500-44.090Q-39.500-44.481-39.390-44.924Q-39.281-45.368-39.064-45.748Q-38.847-46.129-38.513-46.370Q-38.179-46.610-37.746-46.610Q-37.191-46.610-36.791-46.211Q-36.390-45.813-36.193-45.227Q-35.996-44.641-35.996-44.090Q-35.996-43.536-36.193-42.948Q-36.390-42.360-36.791-41.961Q-37.191-41.563-37.746-41.563M-37.746-42.121Q-37.445-42.121-37.228-42.338Q-37.012-42.555-36.885-42.883Q-36.758-43.211-36.697-43.557Q-36.637-43.903-36.637-44.184Q-36.637-44.434-36.699-44.760Q-36.762-45.086-36.892-45.377Q-37.023-45.668-37.236-45.858Q-37.449-46.047-37.746-46.047Q-38.121-46.047-38.373-45.735Q-38.625-45.422-38.742-44.989Q-38.859-44.555-38.859-44.184Q-38.859-43.786-38.746-43.305Q-38.633-42.825-38.385-42.473Q-38.137-42.121-37.746-42.121M-35.363-41.879L-35.363-41.969Q-35.324-42.176-35.117-42.200L-34.711-42.200L-33.781-43.418L-34.652-44.528L-35.070-44.528Q-35.265-44.547-35.316-44.770L-35.316-44.856Q-35.265-45.067-35.070-45.090L-33.910-45.090Q-33.711-45.067-33.660-44.856L-33.660-44.770Q-33.711-44.551-33.910-44.528L-34.019-44.528L-33.523-43.871L-33.047-44.528L-33.164-44.528Q-33.363-44.551-33.414-44.770L-33.414-44.856Q-33.363-45.067-33.164-45.090L-32.004-45.090Q-31.808-45.071-31.758-44.856L-31.758-44.770Q-31.808-44.551-32.004-44.528L-32.414-44.528L-33.262-43.418L-32.301-42.200L-31.894-42.200Q-31.695-42.176-31.644-41.969L-31.644-41.879Q-31.683-41.664-31.894-41.641L-33.047-41.641Q-33.254-41.664-33.293-41.879L-33.293-41.969Q-33.254-42.176-33.047-42.200L-32.918-42.200L-33.523-43.055L-34.109-42.200L-33.965-42.200Q-33.758-42.176-33.719-41.969L-33.719-41.879Q-33.758-41.664-33.965-41.641L-35.117-41.641Q-35.312-41.661-35.363-41.879M-30.519-41.879L-30.519-41.969Q-30.469-42.176-30.269-42.200L-29.453-42.200L-29.453-45.383Q-29.832-45.075-30.285-45.075Q-30.515-45.075-30.566-45.305L-30.566-45.395Q-30.515-45.610-30.320-45.633Q-29.992-45.633-29.738-45.871Q-29.484-46.110-29.344-46.457Q-29.273-46.586-29.117-46.610L-29.062-46.610Q-28.867-46.590-28.816-46.375L-28.816-42.200L-28-42.200Q-27.801-42.176-27.750-41.969L-27.750-41.879Q-27.801-41.664-28-41.641L-30.269-41.641Q-30.469-41.664-30.519-41.879M-23.617-43.129L-26.058-43.129Q-26.004-42.852-25.806-42.629Q-25.609-42.407-25.332-42.284Q-25.054-42.161-24.769-42.161Q-24.297-42.161-24.074-42.450Q-24.066-42.461-24.010-42.567Q-23.953-42.672-23.904-42.715Q-23.855-42.758-23.762-42.770L-23.617-42.770Q-23.426-42.750-23.367-42.536L-23.367-42.481Q-23.433-42.180-23.664-41.983Q-23.894-41.786-24.207-41.694Q-24.519-41.602-24.824-41.602Q-25.308-41.602-25.748-41.830Q-26.187-42.059-26.455-42.459Q-26.722-42.860-26.722-43.352L-26.722-43.411Q-26.722-43.879-26.476-44.282Q-26.230-44.684-25.822-44.918Q-25.414-45.153-24.945-45.153Q-24.441-45.153-24.088-44.930Q-23.734-44.707-23.551-44.319Q-23.367-43.930-23.367-43.426L-23.367-43.368Q-23.426-43.153-23.617-43.129M-26.051-43.680L-24.023-43.680Q-24.070-44.090-24.308-44.342Q-24.547-44.594-24.945-44.594Q-25.340-44.594-25.646-44.332Q-25.953-44.071-26.051-43.680\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(157.178 173.494)\">\u003Cpath d=\"M-52.250-41.641L-56.281-41.641Q-56.332-41.641-56.363-41.672Q-56.394-41.703-56.394-41.754L-56.394-41.856Q-56.394-41.883-56.363-41.930L-53.066-46.809L-54.242-46.809Q-54.679-46.809-55.002-46.743Q-55.324-46.676-55.554-46.465Q-55.781-46.250-55.888-45.928Q-55.996-45.606-55.996-45.258L-56.273-45.258L-56.179-47.106L-52.265-47.106Q-52.219-47.106-52.187-47.073Q-52.156-47.039-52.156-46.993L-52.156-46.907Q-52.156-46.903-52.179-46.832L-55.484-41.961L-54.250-41.961Q-53.957-41.961-53.709-41.987Q-53.461-42.012-53.232-42.094Q-53.004-42.176-52.820-42.352Q-52.582-42.590-52.500-42.944Q-52.418-43.297-52.387-43.825L-52.105-43.825L-52.250-41.641M-48.754-41.641L-51.340-41.641L-51.340-41.938Q-51.019-41.938-50.775-41.985Q-50.531-42.032-50.531-42.200L-50.531-46.543Q-50.531-46.715-50.775-46.762Q-51.019-46.809-51.340-46.809L-51.340-47.106L-46.722-47.106L-46.492-45.258L-46.773-45.258Q-46.859-45.942-47.021-46.262Q-47.183-46.582-47.523-46.696Q-47.863-46.809-48.554-46.809L-49.363-46.809Q-49.582-46.809-49.674-46.766Q-49.765-46.723-49.765-46.543L-49.765-44.520L-49.156-44.520Q-48.730-44.520-48.533-44.586Q-48.336-44.653-48.254-44.846Q-48.172-45.039-48.172-45.457L-47.890-45.457L-47.890-43.289L-48.172-43.289Q-48.172-43.707-48.254-43.901Q-48.336-44.094-48.533-44.161Q-48.730-44.227-49.156-44.227L-49.765-44.227L-49.765-42.200Q-49.765-42.036-49.447-41.987Q-49.129-41.938-48.754-41.938L-48.754-41.641M-40.172-42.618L-45.484-42.618Q-45.562-42.625-45.611-42.674Q-45.660-42.723-45.660-42.801Q-45.660-42.871-45.613-42.922Q-45.566-42.973-45.484-42.985L-40.172-42.985Q-40.097-42.973-40.051-42.922Q-40.004-42.871-40.004-42.801Q-40.004-42.723-40.053-42.674Q-40.101-42.625-40.172-42.618M-40.172-44.305L-45.484-44.305Q-45.562-44.313-45.611-44.362Q-45.660-44.411-45.660-44.489Q-45.660-44.559-45.613-44.610Q-45.566-44.661-45.484-44.672L-40.172-44.672Q-40.097-44.661-40.051-44.610Q-40.004-44.559-40.004-44.489Q-40.004-44.411-40.053-44.362Q-40.101-44.313-40.172-44.305M-35.929-41.641L-38.722-41.641L-38.722-41.938Q-37.660-41.938-37.660-42.200L-37.660-46.368Q-38.090-46.153-38.769-46.153L-38.769-46.450Q-37.750-46.450-37.234-46.961L-37.090-46.961Q-37.015-46.942-36.996-46.864L-36.996-42.200Q-36.996-41.938-35.929-41.938L-35.929-41.641M-34.558-42.106Q-34.558-42.289-34.422-42.426Q-34.285-42.563-34.094-42.563Q-33.902-42.563-33.769-42.430Q-33.637-42.297-33.637-42.106Q-33.637-41.907-33.769-41.774Q-33.902-41.641-34.094-41.641Q-34.285-41.641-34.422-41.778Q-34.558-41.914-34.558-42.106M-34.558-44.633Q-34.558-44.817-34.422-44.953Q-34.285-45.090-34.094-45.090Q-33.902-45.090-33.769-44.957Q-33.637-44.825-33.637-44.633Q-33.637-44.434-33.769-44.301Q-33.902-44.168-34.094-44.168Q-34.285-44.168-34.422-44.305Q-34.558-44.442-34.558-44.633\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 173.494)\">\u003Cpath d=\"M-26.823-41.641L-28.808-41.641L-28.808-41.938Q-28.534-41.938-28.366-41.985Q-28.198-42.032-28.198-42.200L-28.198-44.793L-28.839-44.793L-28.839-45.090L-28.198-45.090L-28.198-46.024Q-28.198-46.289-28.081-46.526Q-27.964-46.762-27.771-46.926Q-27.577-47.090-27.329-47.182Q-27.081-47.274-26.816-47.274Q-26.530-47.274-26.306-47.116Q-26.081-46.957-26.081-46.680Q-26.081-46.524-26.187-46.414Q-26.292-46.305-26.456-46.305Q-26.612-46.305-26.722-46.414Q-26.831-46.524-26.831-46.680Q-26.831-46.887-26.671-46.993Q-26.769-47.016-26.862-47.016Q-27.093-47.016-27.265-46.860Q-27.437-46.703-27.523-46.467Q-27.608-46.231-27.608-46.008L-27.608-45.090L-26.640-45.090L-26.640-44.793L-27.585-44.793L-27.585-42.200Q-27.585-42.032-27.358-41.985Q-27.132-41.938-26.823-41.938L-26.823-41.641M-26.198-42.473Q-26.198-42.957-25.796-43.252Q-25.394-43.547-24.843-43.666Q-24.292-43.786-23.800-43.786L-23.800-44.075Q-23.800-44.301-23.915-44.508Q-24.030-44.715-24.228-44.834Q-24.425-44.953-24.655-44.953Q-25.081-44.953-25.366-44.848Q-25.296-44.821-25.249-44.766Q-25.202-44.711-25.177-44.641Q-25.151-44.571-25.151-44.496Q-25.151-44.391-25.202-44.299Q-25.253-44.207-25.345-44.157Q-25.437-44.106-25.542-44.106Q-25.648-44.106-25.739-44.157Q-25.831-44.207-25.882-44.299Q-25.933-44.391-25.933-44.496Q-25.933-44.914-25.544-45.061Q-25.155-45.207-24.655-45.207Q-24.323-45.207-23.970-45.077Q-23.616-44.946-23.388-44.692Q-23.159-44.438-23.159-44.090L-23.159-42.289Q-23.159-42.157-23.087-42.047Q-23.015-41.938-22.886-41.938Q-22.761-41.938-22.692-42.043Q-22.624-42.149-22.624-42.289L-22.624-42.801L-22.343-42.801L-22.343-42.289Q-22.343-42.086-22.460-41.928Q-22.577-41.770-22.759-41.686Q-22.941-41.602-23.144-41.602Q-23.374-41.602-23.526-41.774Q-23.679-41.946-23.710-42.176Q-23.870-41.895-24.179-41.729Q-24.487-41.563-24.839-41.563Q-25.351-41.563-25.774-41.786Q-26.198-42.008-26.198-42.473M-25.511-42.473Q-25.511-42.188-25.284-42.002Q-25.058-41.817-24.765-41.817Q-24.519-41.817-24.294-41.934Q-24.069-42.051-23.935-42.254Q-23.800-42.457-23.800-42.711L-23.800-43.543Q-24.066-43.543-24.351-43.489Q-24.636-43.434-24.907-43.305Q-25.179-43.176-25.345-42.969Q-25.511-42.762-25.511-42.473M-20.136-41.641L-21.968-41.641L-21.968-41.938Q-21.694-41.938-21.526-41.985Q-21.358-42.032-21.358-42.200L-21.358-46.360Q-21.358-46.575-21.421-46.670Q-21.483-46.766-21.603-46.787Q-21.722-46.809-21.968-46.809L-21.968-47.106L-20.745-47.192L-20.745-42.200Q-20.745-42.032-20.577-41.985Q-20.409-41.938-20.136-41.938L-20.136-41.641M-17.776-41.641L-19.608-41.641L-19.608-41.938Q-19.335-41.938-19.167-41.985Q-18.999-42.032-18.999-42.200L-18.999-46.360Q-18.999-46.575-19.062-46.670Q-19.124-46.766-19.243-46.787Q-19.362-46.809-19.608-46.809L-19.608-47.106L-18.386-47.192L-18.386-42.200Q-18.386-42.032-18.218-41.985Q-18.050-41.938-17.776-41.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(259.608 172.439)\">\u003Cpath d=\"M-54.515-43.090L-56.769-43.090L-56.769-43.641L-54.515-43.641\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(316.513 173.772)\">\u003Cpath d=\"M-54.245-41.529Q-54.933-41.529-55.424-42.034Q-55.915-42.539-56.152-43.289Q-56.388-44.038-56.388-44.703Q-56.388-45.362-56.152-46.104Q-55.915-46.846-55.424-47.354Q-54.933-47.862-54.245-47.862Q-53.718-47.862-53.305-47.559Q-52.892-47.256-52.631-46.773Q-52.370-46.289-52.238-45.747Q-52.106-45.205-52.106-44.703Q-52.106-44.195-52.238-43.653Q-52.370-43.111-52.634-42.622Q-52.897-42.134-53.307-41.831Q-53.718-41.529-54.245-41.529M-54.245-42.183Q-53.859-42.183-53.588-42.459Q-53.317-42.735-53.154-43.150Q-52.990-43.565-52.914-44.012Q-52.839-44.458-52.839-44.820Q-52.839-45.142-52.917-45.559Q-52.995-45.977-53.159-46.348Q-53.322-46.719-53.598-46.966Q-53.874-47.212-54.245-47.212Q-54.616-47.212-54.885-46.973Q-55.153-46.734-55.322-46.360Q-55.490-45.987-55.573-45.564Q-55.656-45.142-55.656-44.820Q-55.656-44.341-55.517-43.721Q-55.378-43.101-55.055-42.642Q-54.733-42.183-54.245-42.183M-49.587-41.641L-51.047-41.641Q-51.301-41.670-51.330-41.919L-51.330-42.012Q-51.301-42.261-51.047-42.290L-50.519-42.290L-49.318-43.863L-50.446-45.303L-50.988-45.303Q-51.237-45.332-51.266-45.581L-51.266-45.669Q-51.252-45.791-51.183-45.865Q-51.115-45.938-50.988-45.953L-49.528-45.953Q-49.294-45.923-49.250-45.669L-49.250-45.581Q-49.294-45.332-49.528-45.303L-49.719-45.303L-49.030-44.370L-48.346-45.303L-48.556-45.303Q-48.796-45.332-48.840-45.581L-48.840-45.669Q-48.820-45.787-48.744-45.862Q-48.669-45.938-48.556-45.953L-47.096-45.953Q-46.979-45.938-46.906-45.865Q-46.833-45.791-46.818-45.669L-46.818-45.581Q-46.847-45.332-47.096-45.303L-47.629-45.303L-48.727-43.863L-47.497-42.290L-46.960-42.290Q-46.838-42.276-46.764-42.207Q-46.691-42.139-46.677-42.012L-46.677-41.919Q-46.691-41.802-46.764-41.729Q-46.838-41.656-46.960-41.641L-48.420-41.641Q-48.649-41.670-48.698-41.919L-48.698-42.012Q-48.654-42.261-48.420-42.290L-48.200-42.290L-49.030-43.453L-49.816-42.290L-49.587-42.290Q-49.352-42.261-49.308-42.012L-49.308-41.919Q-49.352-41.670-49.587-41.641M-45.851-41.919L-45.851-42.012Q-45.851-42.129-45.710-42.251L-44.098-43.589Q-44.025-43.648-43.615-43.992Q-43.205-44.336-42.951-44.617Q-42.697-44.898-42.538-45.223Q-42.380-45.547-42.380-45.899Q-42.380-46.319-42.604-46.617Q-42.829-46.914-43.198-47.063Q-43.566-47.212-43.967-47.212Q-44.318-47.212-44.628-47.027Q-44.938-46.841-45.060-46.509Q-44.919-46.377-44.919-46.182Q-44.919-45.996-45.055-45.855Q-45.192-45.713-45.378-45.713Q-45.588-45.713-45.720-45.857Q-45.851-46.001-45.851-46.202Q-45.851-46.690-45.566-47.071Q-45.280-47.452-44.831-47.657Q-44.382-47.862-43.898-47.862Q-43.454-47.862-43.049-47.732Q-42.643-47.603-42.324-47.344Q-42.004-47.085-41.825-46.719Q-41.647-46.353-41.647-45.899Q-41.647-45.332-41.933-44.849Q-42.219-44.366-42.565-44.046Q-42.912-43.726-43.610-43.160L-44.660-42.290L-42.380-42.290L-42.380-42.481Q-42.350-42.730-42.101-42.759L-41.930-42.759Q-41.808-42.745-41.735-42.676Q-41.662-42.608-41.647-42.481L-41.647-41.919Q-41.662-41.802-41.735-41.729Q-41.808-41.656-41.930-41.641L-45.568-41.641Q-45.812-41.670-45.851-41.919M-40.168-41.919L-40.168-47.100L-40.739-47.100Q-40.983-47.129-41.022-47.383L-41.022-47.471Q-40.983-47.720-40.739-47.749L-39.719-47.749Q-39.470-47.720-39.440-47.471L-39.440-45.542Q-38.888-46.011-38.171-46.011Q-37.609-46.011-37.160-45.694Q-36.711-45.376-36.464-44.866Q-36.218-44.356-36.218-43.799Q-36.218-43.228-36.489-42.713Q-36.760-42.198-37.236-41.890Q-37.712-41.582-38.288-41.582Q-38.928-41.582-39.440-42.071L-39.440-41.919Q-39.455-41.802-39.528-41.729Q-39.601-41.656-39.719-41.641L-39.889-41.641Q-40.138-41.670-40.168-41.919M-38.342-42.232Q-37.941-42.232-37.621-42.456Q-37.302-42.681-37.126-43.047Q-36.950-43.413-36.950-43.799Q-36.950-44.165-37.109-44.532Q-37.267-44.898-37.560-45.130Q-37.853-45.362-38.239-45.362Q-38.503-45.362-38.754-45.247Q-39.006-45.132-39.186-44.922Q-39.367-44.712-39.440-44.449L-39.440-43.389Q-39.338-42.920-39.059-42.576Q-38.781-42.232-38.342-42.232\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(362.038 172.716)\">\u003Cpath d=\"M-56.629-43.395Q-56.629-43.875-56.396-44.291Q-56.164-44.707-55.754-44.957Q-55.344-45.207-54.867-45.207Q-54.137-45.207-53.738-44.766Q-53.340-44.325-53.340-43.594Q-53.340-43.489-53.433-43.465L-55.883-43.465L-55.883-43.395Q-55.883-42.985-55.762-42.629Q-55.640-42.274-55.369-42.057Q-55.097-41.840-54.668-41.840Q-54.304-41.840-54.008-42.069Q-53.711-42.297-53.609-42.649Q-53.601-42.696-53.515-42.711L-53.433-42.711Q-53.340-42.684-53.340-42.602Q-53.340-42.594-53.347-42.563Q-53.410-42.336-53.549-42.153Q-53.687-41.969-53.879-41.836Q-54.070-41.703-54.289-41.633Q-54.508-41.563-54.746-41.563Q-55.117-41.563-55.455-41.700Q-55.793-41.836-56.060-42.088Q-56.328-42.340-56.478-42.680Q-56.629-43.020-56.629-43.395M-55.875-43.703L-53.914-43.703Q-53.914-44.008-54.015-44.299Q-54.117-44.590-54.334-44.772Q-54.551-44.953-54.867-44.953Q-55.168-44.953-55.398-44.766Q-55.629-44.578-55.752-44.287Q-55.875-43.996-55.875-43.703M-51.465-41.641L-52.961-41.641L-52.961-41.938Q-52.328-41.938-51.906-42.418L-51.137-43.328L-52.129-44.528Q-52.285-44.707-52.447-44.750Q-52.609-44.793-52.914-44.793L-52.914-45.090L-51.226-45.090L-51.226-44.793Q-51.320-44.793-51.396-44.750Q-51.472-44.707-51.472-44.618Q-51.472-44.575-51.441-44.528L-50.785-43.739L-50.304-44.313Q-50.187-44.450-50.187-44.586Q-50.187-44.676-50.238-44.735Q-50.289-44.793-50.371-44.793L-50.371-45.090L-48.883-45.090L-48.883-44.793Q-49.519-44.793-49.929-44.313L-50.609-43.512L-49.523-42.200Q-49.363-42.024-49.203-41.981Q-49.043-41.938-48.738-41.938L-48.738-41.641L-50.426-41.641L-50.426-41.938Q-50.336-41.938-50.258-41.981Q-50.179-42.024-50.179-42.114Q-50.179-42.137-50.211-42.200L-50.953-43.106L-51.539-42.418Q-51.656-42.282-51.656-42.145Q-51.656-42.059-51.605-41.998Q-51.554-41.938-51.465-41.938L-51.465-41.641M-46.512-41.641L-48.289-41.641L-48.289-41.938Q-48.015-41.938-47.847-41.985Q-47.679-42.032-47.679-42.200L-47.679-44.336Q-47.679-44.551-47.736-44.647Q-47.793-44.743-47.906-44.764Q-48.019-44.786-48.265-44.786L-48.265-45.082L-47.066-45.168L-47.066-42.200Q-47.066-42.032-46.920-41.985Q-46.773-41.938-46.512-41.938L-46.512-41.641M-47.953-46.563Q-47.953-46.754-47.818-46.885Q-47.683-47.016-47.488-47.016Q-47.367-47.016-47.263-46.953Q-47.160-46.891-47.097-46.787Q-47.035-46.684-47.035-46.563Q-47.035-46.368-47.166-46.233Q-47.297-46.098-47.488-46.098Q-47.687-46.098-47.820-46.231Q-47.953-46.364-47.953-46.563M-45.387-42.602L-45.387-44.793L-46.090-44.793L-46.090-45.047Q-45.734-45.047-45.492-45.280Q-45.250-45.512-45.138-45.860Q-45.027-46.207-45.027-46.563L-44.746-46.563L-44.746-45.090L-43.570-45.090L-43.570-44.793L-44.746-44.793L-44.746-42.618Q-44.746-42.297-44.627-42.069Q-44.508-41.840-44.226-41.840Q-44.047-41.840-43.929-41.963Q-43.812-42.086-43.760-42.266Q-43.707-42.446-43.707-42.618L-43.707-43.090L-43.426-43.090L-43.426-42.602Q-43.426-42.348-43.531-42.108Q-43.637-41.868-43.834-41.715Q-44.031-41.563-44.289-41.563Q-44.605-41.563-44.857-41.686Q-45.109-41.809-45.248-42.043Q-45.387-42.278-45.387-42.602\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(362.038 172.716)\">\u003Cpath d=\"M-37.951-41.641L-39.783-41.641L-39.783-41.938Q-39.509-41.938-39.341-41.985Q-39.173-42.032-39.173-42.200L-39.173-46.360Q-39.173-46.575-39.236-46.670Q-39.298-46.766-39.417-46.787Q-39.537-46.809-39.783-46.809L-39.783-47.106L-38.560-47.192L-38.560-42.200Q-38.560-42.032-38.392-41.985Q-38.224-41.938-37.951-41.938L-37.951-41.641M-37.505-43.336Q-37.505-43.840-37.249-44.272Q-36.994-44.703-36.558-44.955Q-36.123-45.207-35.623-45.207Q-35.236-45.207-34.894-45.063Q-34.552-44.918-34.291-44.657Q-34.029-44.395-33.886-44.059Q-33.744-43.723-33.744-43.336Q-33.744-42.844-34.007-42.434Q-34.271-42.024-34.701-41.793Q-35.130-41.563-35.623-41.563Q-36.115-41.563-36.548-41.795Q-36.982-42.028-37.244-42.436Q-37.505-42.844-37.505-43.336M-35.623-41.840Q-35.166-41.840-34.914-42.063Q-34.662-42.286-34.574-42.637Q-34.486-42.989-34.486-43.434Q-34.486-43.864-34.580-44.202Q-34.673-44.539-34.927-44.746Q-35.181-44.953-35.623-44.953Q-36.271-44.953-36.515-44.537Q-36.759-44.121-36.759-43.434Q-36.759-42.989-36.671-42.637Q-36.583-42.286-36.332-42.063Q-36.080-41.840-35.623-41.840\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(362.038 172.716)\">\u003Cpath d=\"M-33.018-43.336Q-33.018-43.840-32.762-44.272Q-32.506-44.703-32.070-44.955Q-31.635-45.207-31.135-45.207Q-30.748-45.207-30.406-45.063Q-30.065-44.918-29.803-44.657Q-29.541-44.395-29.399-44.059Q-29.256-43.723-29.256-43.336Q-29.256-42.844-29.520-42.434Q-29.783-42.024-30.213-41.793Q-30.643-41.563-31.135-41.563Q-31.627-41.563-32.061-41.795Q-32.494-42.028-32.756-42.436Q-33.018-42.844-33.018-43.336M-31.135-41.840Q-30.678-41.840-30.426-42.063Q-30.174-42.286-30.086-42.637Q-29.998-42.989-29.998-43.434Q-29.998-43.864-30.092-44.202Q-30.186-44.539-30.440-44.746Q-30.694-44.953-31.135-44.953Q-31.783-44.953-32.027-44.537Q-32.272-44.121-32.272-43.434Q-32.272-42.989-32.184-42.637Q-32.096-42.286-31.844-42.063Q-31.592-41.840-31.135-41.840M-26.889-40.090L-28.744-40.090L-28.744-40.383Q-28.475-40.383-28.307-40.428Q-28.139-40.473-28.139-40.649L-28.139-44.473Q-28.139-44.680-28.295-44.733Q-28.451-44.786-28.744-44.786L-28.744-45.082L-27.522-45.168L-27.522-44.703Q-27.291-44.926-26.977-45.047Q-26.662-45.168-26.322-45.168Q-25.850-45.168-25.445-44.922Q-25.041-44.676-24.809-44.260Q-24.576-43.844-24.576-43.368Q-24.576-42.993-24.725-42.664Q-24.873-42.336-25.143-42.084Q-25.412-41.832-25.756-41.698Q-26.100-41.563-26.459-41.563Q-26.748-41.563-27.020-41.684Q-27.291-41.805-27.498-42.016L-27.498-40.649Q-27.498-40.473-27.330-40.428Q-27.162-40.383-26.889-40.383L-26.889-40.090M-27.498-44.305L-27.498-42.465Q-27.346-42.176-27.084-41.996Q-26.822-41.817-26.514-41.817Q-26.229-41.817-26.006-41.955Q-25.783-42.094-25.631-42.325Q-25.479-42.555-25.401-42.827Q-25.322-43.098-25.322-43.368Q-25.322-43.700-25.447-44.057Q-25.572-44.414-25.820-44.651Q-26.069-44.887-26.416-44.887Q-26.740-44.887-27.035-44.731Q-27.330-44.575-27.498-44.305\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 139.034h423.946\"\u002F>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 9.005h423.946M-65.403 74.446h423.946\"\u002F>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">Cycles 4-12: three loop iterations. Each addq adds %rdi into %rax; each subq drops %rdi by 1 and sets ZF; each jne takes the branch (newPC=0x1e) while ZF=0, and falls through (newPC=0x2b) when the last subq makes %rdi 0, setting ZF=1. The sum reaches 6.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:506.810px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 380.107 199.010\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-54.445h367.04\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmbx7\" font-size=\"7\">\u003Cg transform=\"translate(-2.157 -22.435)\">\u003Cpath d=\"M-56.587-42.475Q-56.587-42.899-56.137-43.135Q-55.688-43.370-55.119-43.447Q-54.550-43.524-54.075-43.524L-54.075-43.733Q-54.075-43.965-54.175-44.129Q-54.276-44.293-54.454-44.377Q-54.632-44.461-54.857-44.461Q-55.196-44.461-55.404-44.427Q-55.291-44.293-55.291-44.099Q-55.291-43.893-55.435-43.746Q-55.578-43.599-55.790-43.599Q-56.006-43.599-56.149-43.746Q-56.293-43.893-56.293-44.099Q-56.293-44.420-56.059-44.577Q-55.825-44.734-55.531-44.774Q-55.237-44.813-54.857-44.813Q-54.478-44.813-54.090-44.717Q-53.702-44.621-53.430-44.386Q-53.159-44.150-53.159-43.764L-53.159-42.161Q-53.128-42.061-52.639-42.061Q-52.519-42.041-52.499-41.921L-52.499-41.781Q-52.519-41.662-52.639-41.641L-53.135-41.641Q-53.934-41.641-53.934-42.082Q-54.116-41.836-54.437-41.718Q-54.758-41.600-55.117-41.600Q-55.678-41.600-56.132-41.797Q-56.587-41.993-56.587-42.475M-55.678-42.475Q-55.678-42.225-55.461-42.087Q-55.243-41.949-54.977-41.949Q-54.645-41.949-54.360-42.094Q-54.075-42.239-54.075-42.543L-54.075-43.224Q-54.348-43.224-54.729-43.157Q-55.110-43.090-55.394-42.921Q-55.678-42.752-55.678-42.475M-50.079-41.641L-52.003-41.641L-52.003-42.061L-51.535-42.061L-51.535-44.328L-52.102-44.328L-52.102-44.748L-51.535-44.748L-51.535-45.462Q-51.535-45.852-51.263-46.096Q-50.992-46.341-50.602-46.442Q-50.212-46.542-49.819-46.542Q-49.621-46.542-49.429-46.460Q-49.238-46.378-49.118-46.224Q-48.999-46.071-48.999-45.869Q-48.999-45.661-49.142-45.517Q-49.286-45.373-49.491-45.373Q-49.700-45.373-49.843-45.517Q-49.987-45.661-49.987-45.869Q-49.987-46.054-49.874-46.190L-49.925-46.190Q-50.281-46.190-50.498-45.987Q-50.715-45.784-50.715-45.435L-50.715-44.748L-49.785-44.748L-49.785-44.328L-50.667-44.328L-50.667-42.061L-50.079-42.061L-50.079-41.641M-48.866-42.431L-48.866-44.328L-49.484-44.328L-49.484-44.680Q-49.224-44.680-49.018-44.809Q-48.811-44.939-48.683-45.141Q-48.554-45.343-48.486-45.590Q-48.418-45.838-48.418-46.084L-47.950-46.084L-47.950-44.748L-46.822-44.748L-46.822-44.328L-47.950-44.328L-47.950-42.461Q-47.950-41.983-47.550-41.983Q-47.365-41.983-47.256-42.128Q-47.146-42.273-47.146-42.461L-47.146-42.851L-46.675-42.851L-46.675-42.431Q-46.675-42.184-46.820-41.996Q-46.965-41.808-47.198-41.704Q-47.430-41.600-47.669-41.600Q-48.168-41.600-48.517-41.786Q-48.866-41.973-48.866-42.431M-45.865-43.217Q-45.865-43.610-45.706-43.916Q-45.547-44.222-45.278-44.420Q-45.010-44.618-44.670-44.715Q-44.330-44.813-43.954-44.813Q-43.175-44.813-42.732-44.425Q-42.289-44.037-42.289-43.265Q-42.289-43.128-42.429-43.097L-44.863-43.097Q-44.863-42.530-44.559-42.256Q-44.255-41.983-43.680-41.983Q-43.383-41.983-43.117-42.111Q-42.850-42.239-42.744-42.495Q-42.703-42.571-42.617-42.595L-42.429-42.595Q-42.289-42.564-42.289-42.437Q-42.289-42.403-42.296-42.383Q-42.378-42.171-42.542-42.017Q-42.706-41.863-42.918-41.773Q-43.130-41.682-43.357-41.641Q-43.585-41.600-43.827-41.600Q-44.357-41.600-44.820-41.773Q-45.284-41.945-45.574-42.313Q-45.865-42.680-45.865-43.217M-44.863-43.418L-43.007-43.418Q-43.007-43.887-43.250-44.174Q-43.492-44.461-43.954-44.461Q-44.412-44.461-44.638-44.174Q-44.863-43.887-44.863-43.418M-39.705-41.641L-41.630-41.641L-41.630-42.061L-41.161-42.061L-41.161-44.119Q-41.161-44.249-41.293-44.281Q-41.425-44.314-41.630-44.314L-41.630-44.734L-40.386-44.792L-40.386-44.071Q-40.286-44.287-40.145-44.445Q-40.003-44.604-39.815-44.698Q-39.627-44.792-39.398-44.792Q-39.189-44.792-38.994-44.722Q-38.800-44.652-38.668-44.509Q-38.536-44.365-38.536-44.153Q-38.536-44.016-38.601-43.905Q-38.666-43.794-38.783-43.729Q-38.899-43.664-39.029-43.664Q-39.234-43.664-39.376-43.803Q-39.517-43.941-39.517-44.153Q-39.517-44.321-39.432-44.440Q-39.852-44.440-40.073-44.010Q-40.293-43.579-40.293-43.111L-40.293-42.061L-39.705-42.061\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-2.157 -22.435)\">\u003Cpath d=\"M-34.880-43.196Q-34.880-43.596-34.724-43.900Q-34.569-44.204-34.292-44.410Q-34.015-44.615-33.675-44.714Q-33.335-44.813-32.945-44.813Q-32.375-44.813-31.968-44.680Q-31.561-44.546-31.561-44.099Q-31.561-43.893-31.705-43.746Q-31.848-43.599-32.057-43.599Q-32.272-43.599-32.417-43.745Q-32.562-43.890-32.562-44.099Q-32.562-44.276-32.470-44.399Q-32.665-44.427-32.938-44.427Q-33.226-44.427-33.408-44.331Q-33.591-44.235-33.694-44.066Q-33.796-43.897-33.837-43.682Q-33.878-43.466-33.878-43.196Q-33.878-42.612-33.596-42.297Q-33.314-41.983-32.737-41.983Q-32.463-41.983-32.241-42.109Q-32.019-42.236-31.923-42.482Q-31.886-42.547-31.821-42.564L-31.575-42.564Q-31.462-42.540-31.462-42.437Q-31.462-42.431-31.469-42.396Q-31.633-41.973-32.031-41.786Q-32.429-41.600-32.945-41.600Q-33.461-41.600-33.902-41.776Q-34.343-41.952-34.612-42.314Q-34.880-42.677-34.880-43.196M-30.973-40.954Q-30.973-41.159-30.836-41.292Q-30.700-41.426-30.501-41.426Q-30.378-41.426-30.269-41.364Q-30.160-41.303-30.096-41.192Q-30.033-41.080-30.033-40.954Q-30.033-40.742-30.194-40.592L-30.153-40.592Q-29.876-40.592-29.638-40.744Q-29.401-40.896-29.278-41.139L-29.025-41.641L-30.447-44.328L-30.922-44.328L-30.922-44.748L-29.151-44.748L-29.151-44.328L-29.459-44.328L-28.543-42.584L-27.661-44.307Q-27.668-44.328-27.969-44.328L-27.969-44.748L-26.653-44.748L-26.653-44.328Q-27.101-44.328-27.135-44.307L-28.751-41.139Q-28.957-40.735-29.334-40.487Q-29.712-40.240-30.153-40.240Q-30.464-40.240-30.718-40.441Q-30.973-40.643-30.973-40.954M-26.072-43.196Q-26.072-43.596-25.916-43.900Q-25.761-44.204-25.484-44.410Q-25.207-44.615-24.867-44.714Q-24.527-44.813-24.137-44.813Q-23.566-44.813-23.160-44.680Q-22.753-44.546-22.753-44.099Q-22.753-43.893-22.896-43.746Q-23.040-43.599-23.249-43.599Q-23.464-43.599-23.609-43.745Q-23.754-43.890-23.754-44.099Q-23.754-44.276-23.662-44.399Q-23.857-44.427-24.130-44.427Q-24.417-44.427-24.600-44.331Q-24.783-44.235-24.886-44.066Q-24.988-43.897-25.029-43.682Q-25.070-43.466-25.070-43.196Q-25.070-42.612-24.788-42.297Q-24.506-41.983-23.929-41.983Q-23.655-41.983-23.433-42.109Q-23.211-42.236-23.115-42.482Q-23.078-42.547-23.013-42.564L-22.767-42.564Q-22.654-42.540-22.654-42.437Q-22.654-42.431-22.661-42.396Q-22.825-41.973-23.223-41.786Q-23.621-41.600-24.137-41.600Q-24.653-41.600-25.094-41.776Q-25.535-41.952-25.803-42.314Q-26.072-42.677-26.072-43.196\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 -21.754)\">\u003Cpath d=\"M-54.649-41.641L-56.412-41.641L-56.412-42.061L-55.944-42.061L-55.944-44.119Q-55.944-44.249-56.065-44.281Q-56.187-44.314-56.392-44.314L-56.392-44.734L-55.076-44.792L-55.076-42.061L-54.649-42.061L-54.649-41.641M-56.187-45.924Q-56.187-46.163-56.013-46.334Q-55.838-46.505-55.599-46.505Q-55.438-46.505-55.307-46.424Q-55.175-46.344-55.096-46.209Q-55.018-46.074-55.018-45.924Q-55.018-45.681-55.190-45.508Q-55.363-45.336-55.599-45.336Q-55.835-45.336-56.011-45.508Q-56.187-45.681-56.187-45.924M-52.037-41.641L-53.893-41.641L-53.893-42.061L-53.425-42.061L-53.425-44.119Q-53.425-44.249-53.557-44.281Q-53.688-44.314-53.893-44.314L-53.893-44.734L-52.598-44.792L-52.598-44.099Q-52.465-44.310-52.248-44.473Q-52.031-44.635-51.778-44.714Q-51.525-44.792-51.268-44.792Q-50.670-44.792-50.351-44.565Q-50.031-44.338-50.031-43.764L-50.031-42.061L-49.559-42.061L-49.559-41.641L-51.415-41.641L-51.415-42.061L-50.947-42.061L-50.947-43.733Q-50.947-43.958-50.969-44.099Q-50.992-44.239-51.087-44.339Q-51.183-44.440-51.381-44.440Q-51.825-44.440-52.167-44.151Q-52.509-43.863-52.509-43.425L-52.509-42.061L-52.037-42.061L-52.037-41.641M-48.975-41.709L-48.975-42.608Q-48.954-42.697-48.862-42.718L-48.616-42.718Q-48.541-42.697-48.513-42.636Q-48.305-41.949-47.512-41.949Q-46.644-41.949-46.644-42.403Q-46.644-42.598-46.840-42.704Q-47.037-42.810-47.273-42.844L-47.854-42.936Q-48.117-42.974-48.378-43.087Q-48.640-43.200-48.807-43.389Q-48.975-43.579-48.975-43.859Q-48.975-44.403-48.546-44.608Q-48.117-44.813-47.512-44.813Q-47.034-44.813-46.763-44.700L-46.531-44.806L-46.504-44.813L-46.391-44.813Q-46.299-44.792-46.278-44.700L-46.278-43.999Q-46.299-43.914-46.391-43.887L-46.637-43.887Q-46.726-43.911-46.746-43.999Q-46.746-44.498-47.533-44.498Q-48.387-44.498-48.387-44.119Q-48.387-43.852-47.799-43.770L-47.211-43.678Q-46.921-43.634-46.656-43.504Q-46.391-43.374-46.223-43.155Q-46.056-42.936-46.056-42.649Q-46.056-42.253-46.264-42.019Q-46.473-41.785-46.803-41.692Q-47.133-41.600-47.512-41.600Q-48.035-41.600-48.387-41.795L-48.695-41.620Q-48.725-41.603-48.749-41.600L-48.862-41.600Q-48.954-41.620-48.975-41.709M-44.904-42.431L-44.904-44.328L-45.523-44.328L-45.523-44.680Q-45.263-44.680-45.056-44.809Q-44.849-44.939-44.721-45.141Q-44.593-45.343-44.525-45.590Q-44.456-45.838-44.456-46.084L-43.988-46.084L-43.988-44.748L-42.860-44.748L-42.860-44.328L-43.988-44.328L-43.988-42.461Q-43.988-41.983-43.588-41.983Q-43.404-41.983-43.294-42.128Q-43.185-42.273-43.185-42.461L-43.185-42.851L-42.713-42.851L-42.713-42.431Q-42.713-42.184-42.858-41.996Q-43.004-41.808-43.236-41.704Q-43.469-41.600-43.708-41.600Q-44.207-41.600-44.555-41.786Q-44.904-41.973-44.904-42.431M-39.887-41.641L-41.811-41.641L-41.811-42.061L-41.343-42.061L-41.343-44.119Q-41.343-44.249-41.474-44.281Q-41.606-44.314-41.811-44.314L-41.811-44.734L-40.567-44.792L-40.567-44.071Q-40.468-44.287-40.326-44.445Q-40.184-44.604-39.996-44.698Q-39.808-44.792-39.579-44.792Q-39.370-44.792-39.176-44.722Q-38.981-44.652-38.849-44.509Q-38.718-44.365-38.718-44.153Q-38.718-44.016-38.783-43.905Q-38.847-43.794-38.964-43.729Q-39.080-43.664-39.210-43.664Q-39.415-43.664-39.557-43.803Q-39.699-43.941-39.699-44.153Q-39.699-44.321-39.613-44.440Q-40.034-44.440-40.254-44.010Q-40.474-43.579-40.474-43.111L-40.474-42.061L-39.887-42.061\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(125.88 -21.754)\">\u003Cpath d=\"M-55.592-41.487L-55.592-41.521Q-55.592-41.600-55.531-41.675L-51.870-45.903Q-52.232-45.790-52.618-45.790Q-53.282-45.790-53.948-46.078Q-53.863-45.808-53.863-45.483Q-53.863-45.203-53.931-44.955Q-53.999-44.707-54.145-44.502Q-54.290-44.297-54.505-44.184Q-54.721-44.071-55.011-44.071Q-55.619-44.071-55.980-44.468Q-56.341-44.864-56.341-45.483Q-56.341-45.879-56.182-46.202Q-56.023-46.525-55.717-46.708Q-55.411-46.891-55.011-46.891Q-54.676-46.891-54.403-46.710Q-53.545-46.136-52.632-46.136Q-52.174-46.136-51.771-46.308Q-51.367-46.481-51.084-46.806Q-50.992-46.891-50.909-46.891L-50.875-46.891Q-50.667-46.860-50.636-46.652L-50.636-46.618Q-50.636-46.529-50.701-46.471L-55.144-41.333Q-55.250-41.248-55.319-41.248L-55.356-41.248Q-55.561-41.279-55.592-41.487M-55.011-44.420Q-54.768-44.420-54.613-44.586Q-54.457-44.751-54.396-44.999Q-54.334-45.247-54.334-45.483Q-54.334-45.886-54.493-46.214Q-54.652-46.542-55.011-46.542Q-55.332-46.542-55.418-46.240Q-55.503-45.937-55.503-45.490L-55.503-45.469Q-55.503-45.192-55.478-44.977Q-55.452-44.762-55.344-44.591Q-55.237-44.420-55.011-44.420M-51.036-41.248Q-51.644-41.248-52.005-41.646Q-52.366-42.044-52.366-42.663Q-52.366-43.059-52.207-43.381Q-52.048-43.702-51.743-43.887Q-51.439-44.071-51.036-44.071Q-50.660-44.071-50.400-43.873Q-50.140-43.675-50.014-43.353Q-49.888-43.032-49.888-42.663Q-49.888-42.290-50.014-41.967Q-50.140-41.644-50.400-41.446Q-50.660-41.248-51.036-41.248M-51.036-41.600Q-50.790-41.600-50.634-41.766Q-50.479-41.932-50.417-42.179Q-50.356-42.427-50.356-42.663Q-50.356-43.066-50.513-43.393Q-50.670-43.719-51.036-43.719Q-51.354-43.719-51.439-43.417Q-51.525-43.114-51.525-42.670L-51.525-42.649Q-51.525-42.372-51.499-42.157Q-51.473-41.942-51.366-41.771Q-51.258-41.600-51.036-41.600M-47.057-41.641L-48.982-41.641L-48.982-42.061L-48.513-42.061L-48.513-44.119Q-48.513-44.249-48.645-44.281Q-48.777-44.314-48.982-44.314L-48.982-44.734L-47.738-44.792L-47.738-44.071Q-47.638-44.287-47.497-44.445Q-47.355-44.604-47.167-44.698Q-46.979-44.792-46.750-44.792Q-46.541-44.792-46.346-44.722Q-46.152-44.652-46.020-44.509Q-45.888-44.365-45.888-44.153Q-45.888-44.016-45.953-43.905Q-46.018-43.794-46.135-43.729Q-46.251-43.664-46.381-43.664Q-46.586-43.664-46.728-43.803Q-46.869-43.941-46.869-44.153Q-46.869-44.321-46.784-44.440Q-47.204-44.440-47.425-44.010Q-47.645-43.579-47.645-43.111L-47.645-42.061L-47.057-42.061L-47.057-41.641M-45.335-42.475Q-45.335-42.899-44.885-43.135Q-44.436-43.370-43.867-43.447Q-43.298-43.524-42.823-43.524L-42.823-43.733Q-42.823-43.965-42.923-44.129Q-43.024-44.293-43.202-44.377Q-43.380-44.461-43.605-44.461Q-43.944-44.461-44.152-44.427Q-44.039-44.293-44.039-44.099Q-44.039-43.893-44.183-43.746Q-44.326-43.599-44.538-43.599Q-44.754-43.599-44.897-43.746Q-45.041-43.893-45.041-44.099Q-45.041-44.420-44.807-44.577Q-44.573-44.734-44.279-44.774Q-43.985-44.813-43.605-44.813Q-43.226-44.813-42.838-44.717Q-42.450-44.621-42.178-44.386Q-41.907-44.150-41.907-43.764L-41.907-42.161Q-41.876-42.061-41.387-42.061Q-41.267-42.041-41.247-41.921L-41.247-41.781Q-41.267-41.662-41.387-41.641L-41.883-41.641Q-42.682-41.641-42.682-42.082Q-42.864-41.836-43.185-41.718Q-43.506-41.600-43.865-41.600Q-44.426-41.600-44.880-41.797Q-45.335-41.993-45.335-42.475M-44.426-42.475Q-44.426-42.225-44.209-42.087Q-43.992-41.949-43.725-41.949Q-43.393-41.949-43.108-42.094Q-42.823-42.239-42.823-42.543L-42.823-43.224Q-43.096-43.224-43.477-43.157Q-43.858-43.090-44.142-42.921Q-44.426-42.752-44.426-42.475M-39.476-41.641L-40.967-41.641L-40.967-42.061Q-40.386-42.061-40.324-42.082L-39.268-43.159L-40.379-44.328L-40.932-44.328L-40.932-44.748L-39.217-44.748L-39.217-44.328L-39.377-44.328L-38.755-43.678L-38.133-44.307Q-38.143-44.310-38.164-44.316Q-38.184-44.321-38.188-44.321Q-38.232-44.328-38.321-44.328L-38.321-44.748L-36.831-44.748L-36.831-44.328Q-37.412-44.328-37.473-44.307L-38.434-43.336L-37.224-42.061L-36.670-42.061L-36.670-41.641L-38.386-41.641L-38.386-42.061L-38.225-42.061L-38.943-42.817L-39.664-42.082Q-39.651-42.078-39.632-42.073Q-39.613-42.068-39.610-42.068Q-39.569-42.061-39.476-42.061\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.25 -21.754)\">\u003Cpath d=\"M-55.592-41.487L-55.592-41.521Q-55.592-41.600-55.531-41.675L-51.870-45.903Q-52.232-45.790-52.618-45.790Q-53.282-45.790-53.948-46.078Q-53.863-45.808-53.863-45.483Q-53.863-45.203-53.931-44.955Q-53.999-44.707-54.145-44.502Q-54.290-44.297-54.505-44.184Q-54.721-44.071-55.011-44.071Q-55.619-44.071-55.980-44.468Q-56.341-44.864-56.341-45.483Q-56.341-45.879-56.182-46.202Q-56.023-46.525-55.717-46.708Q-55.411-46.891-55.011-46.891Q-54.676-46.891-54.403-46.710Q-53.545-46.136-52.632-46.136Q-52.174-46.136-51.771-46.308Q-51.367-46.481-51.084-46.806Q-50.992-46.891-50.909-46.891L-50.875-46.891Q-50.667-46.860-50.636-46.652L-50.636-46.618Q-50.636-46.529-50.701-46.471L-55.144-41.333Q-55.250-41.248-55.319-41.248L-55.356-41.248Q-55.561-41.279-55.592-41.487M-55.011-44.420Q-54.768-44.420-54.613-44.586Q-54.457-44.751-54.396-44.999Q-54.334-45.247-54.334-45.483Q-54.334-45.886-54.493-46.214Q-54.652-46.542-55.011-46.542Q-55.332-46.542-55.418-46.240Q-55.503-45.937-55.503-45.490L-55.503-45.469Q-55.503-45.192-55.478-44.977Q-55.452-44.762-55.344-44.591Q-55.237-44.420-55.011-44.420M-51.036-41.248Q-51.644-41.248-52.005-41.646Q-52.366-42.044-52.366-42.663Q-52.366-43.059-52.207-43.381Q-52.048-43.702-51.743-43.887Q-51.439-44.071-51.036-44.071Q-50.660-44.071-50.400-43.873Q-50.140-43.675-50.014-43.353Q-49.888-43.032-49.888-42.663Q-49.888-42.290-50.014-41.967Q-50.140-41.644-50.400-41.446Q-50.660-41.248-51.036-41.248M-51.036-41.600Q-50.790-41.600-50.634-41.766Q-50.479-41.932-50.417-42.179Q-50.356-42.427-50.356-42.663Q-50.356-43.066-50.513-43.393Q-50.670-43.719-51.036-43.719Q-51.354-43.719-51.439-43.417Q-51.525-43.114-51.525-42.670L-51.525-42.649Q-51.525-42.372-51.499-42.157Q-51.473-41.942-51.366-41.771Q-51.258-41.600-51.036-41.600M-47.057-41.641L-48.982-41.641L-48.982-42.061L-48.513-42.061L-48.513-44.119Q-48.513-44.249-48.645-44.281Q-48.777-44.314-48.982-44.314L-48.982-44.734L-47.738-44.792L-47.738-44.071Q-47.638-44.287-47.497-44.445Q-47.355-44.604-47.167-44.698Q-46.979-44.792-46.750-44.792Q-46.541-44.792-46.346-44.722Q-46.152-44.652-46.020-44.509Q-45.888-44.365-45.888-44.153Q-45.888-44.016-45.953-43.905Q-46.018-43.794-46.135-43.729Q-46.251-43.664-46.381-43.664Q-46.586-43.664-46.728-43.803Q-46.869-43.941-46.869-44.153Q-46.869-44.321-46.784-44.440Q-47.204-44.440-47.425-44.010Q-47.645-43.579-47.645-43.111L-47.645-42.061L-47.057-42.061L-47.057-41.641M-45.287-43.196Q-45.287-43.712-45.019-44.075Q-44.750-44.437-44.313-44.615Q-43.875-44.792-43.363-44.792Q-43.086-44.792-42.811-44.722Q-42.535-44.652-42.303-44.505L-42.303-45.828Q-42.303-45.958-42.435-45.990Q-42.566-46.023-42.775-46.023L-42.775-46.443L-41.435-46.498L-41.435-42.256Q-41.435-42.130-41.303-42.096Q-41.172-42.061-40.967-42.061L-40.967-41.641L-42.354-41.600L-42.354-41.928Q-42.836-41.600-43.451-41.600Q-43.957-41.600-44.373-41.781Q-44.788-41.962-45.037-42.326Q-45.287-42.690-45.287-43.196M-43.352-41.949Q-43.055-41.949-42.785-42.090Q-42.515-42.232-42.354-42.468L-42.354-44.040Q-42.515-44.232-42.752-44.336Q-42.990-44.440-43.257-44.440Q-43.851-44.440-44.068-44.122Q-44.285-43.805-44.285-43.189Q-44.285-42.810-44.217-42.542Q-44.149-42.273-43.942-42.111Q-43.735-41.949-43.352-41.949M-38.372-41.641L-40.136-41.641L-40.136-42.061L-39.668-42.061L-39.668-44.119Q-39.668-44.249-39.789-44.281Q-39.910-44.314-40.116-44.314L-40.116-44.734L-38.800-44.792L-38.800-42.061L-38.372-42.061L-38.372-41.641M-39.910-45.924Q-39.910-46.163-39.736-46.334Q-39.562-46.505-39.323-46.505Q-39.162-46.505-39.030-46.424Q-38.899-46.344-38.820-46.209Q-38.742-46.074-38.742-45.924Q-38.742-45.681-38.914-45.508Q-39.087-45.336-39.323-45.336Q-39.558-45.336-39.734-45.508Q-39.910-45.681-39.910-45.924\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 -21.754)\">\u003Cpath d=\"M-55.592-41.487L-55.592-41.521Q-55.592-41.600-55.531-41.675L-51.870-45.903Q-52.232-45.790-52.618-45.790Q-53.282-45.790-53.948-46.078Q-53.863-45.808-53.863-45.483Q-53.863-45.203-53.931-44.955Q-53.999-44.707-54.145-44.502Q-54.290-44.297-54.505-44.184Q-54.721-44.071-55.011-44.071Q-55.619-44.071-55.980-44.468Q-56.341-44.864-56.341-45.483Q-56.341-45.879-56.182-46.202Q-56.023-46.525-55.717-46.708Q-55.411-46.891-55.011-46.891Q-54.676-46.891-54.403-46.710Q-53.545-46.136-52.632-46.136Q-52.174-46.136-51.771-46.308Q-51.367-46.481-51.084-46.806Q-50.992-46.891-50.909-46.891L-50.875-46.891Q-50.667-46.860-50.636-46.652L-50.636-46.618Q-50.636-46.529-50.701-46.471L-55.144-41.333Q-55.250-41.248-55.319-41.248L-55.356-41.248Q-55.561-41.279-55.592-41.487M-55.011-44.420Q-54.768-44.420-54.613-44.586Q-54.457-44.751-54.396-44.999Q-54.334-45.247-54.334-45.483Q-54.334-45.886-54.493-46.214Q-54.652-46.542-55.011-46.542Q-55.332-46.542-55.418-46.240Q-55.503-45.937-55.503-45.490L-55.503-45.469Q-55.503-45.192-55.478-44.977Q-55.452-44.762-55.344-44.591Q-55.237-44.420-55.011-44.420M-51.036-41.248Q-51.644-41.248-52.005-41.646Q-52.366-42.044-52.366-42.663Q-52.366-43.059-52.207-43.381Q-52.048-43.702-51.743-43.887Q-51.439-44.071-51.036-44.071Q-50.660-44.071-50.400-43.873Q-50.140-43.675-50.014-43.353Q-49.888-43.032-49.888-42.663Q-49.888-42.290-50.014-41.967Q-50.140-41.644-50.400-41.446Q-50.660-41.248-51.036-41.248M-51.036-41.600Q-50.790-41.600-50.634-41.766Q-50.479-41.932-50.417-42.179Q-50.356-42.427-50.356-42.663Q-50.356-43.066-50.513-43.393Q-50.670-43.719-51.036-43.719Q-51.354-43.719-51.439-43.417Q-51.525-43.114-51.525-42.670L-51.525-42.649Q-51.525-42.372-51.499-42.157Q-51.473-41.942-51.366-41.771Q-51.258-41.600-51.036-41.600M-47.057-41.641L-48.982-41.641L-48.982-42.061L-48.513-42.061L-48.513-44.119Q-48.513-44.249-48.645-44.281Q-48.777-44.314-48.982-44.314L-48.982-44.734L-47.738-44.792L-47.738-44.071Q-47.638-44.287-47.497-44.445Q-47.355-44.604-47.167-44.698Q-46.979-44.792-46.750-44.792Q-46.541-44.792-46.346-44.722Q-46.152-44.652-46.020-44.509Q-45.888-44.365-45.888-44.153Q-45.888-44.016-45.953-43.905Q-46.018-43.794-46.135-43.729Q-46.251-43.664-46.381-43.664Q-46.586-43.664-46.728-43.803Q-46.869-43.941-46.869-44.153Q-46.869-44.321-46.784-44.440Q-47.204-44.440-47.425-44.010Q-47.645-43.579-47.645-43.111L-47.645-42.061L-47.057-42.061L-47.057-41.641M-45.215-42.789Q-45.215-43.558-44.320-43.958Q-44.497-44.058-44.646-44.216Q-44.795-44.375-44.880-44.570Q-44.966-44.765-44.966-44.974Q-44.966-45.298-44.832-45.539Q-44.699-45.780-44.468-45.934Q-44.238-46.088-43.952-46.160Q-43.667-46.231-43.352-46.231Q-42.689-46.231-42.216-45.997Q-41.742-45.763-41.742-45.175Q-41.742-44.850-41.930-44.623Q-42.118-44.396-42.450-44.225Q-42.013-44.010-41.753-43.709Q-41.493-43.408-41.493-42.977Q-41.493-42.595-41.650-42.321Q-41.807-42.048-42.071-41.880Q-42.334-41.713-42.665-41.634Q-42.997-41.556-43.352-41.556Q-43.824-41.556-44.241-41.660Q-44.658-41.764-44.937-42.039Q-45.215-42.314-45.215-42.789M-44.473-42.789Q-44.473-42.495-44.313-42.304Q-44.152-42.113-43.898-42.027Q-43.643-41.942-43.352-41.942Q-42.905-41.942-42.570-42.078Q-42.235-42.215-42.235-42.601Q-42.235-42.902-42.648-43.111L-43.845-43.712Q-44.473-43.388-44.473-42.789M-44.005-45.008L-42.891-44.447Q-42.388-44.724-42.388-45.175Q-42.388-45.548-42.670-45.715Q-42.952-45.883-43.352-45.883Q-43.749-45.883-44.034-45.785Q-44.320-45.688-44.320-45.380Q-44.320-45.168-44.005-45.008\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(262.453 -21.784)\">\u003Cpath d=\"M-51.966-41.641L-56.187-41.641Q-56.252-41.641-56.296-41.685Q-56.341-41.730-56.341-41.795L-56.341-41.942Q-56.341-41.996-56.306-42.041L-53.220-46.023L-54.075-46.023Q-54.485-46.023-54.780-45.965Q-55.076-45.907-55.305-45.715Q-55.507-45.544-55.626-45.279Q-55.746-45.015-55.746-44.741L-56.218-44.741L-56.118-46.443L-52.031-46.443Q-51.962-46.443-51.919-46.397Q-51.877-46.351-51.877-46.289L-51.877-46.163Q-51.877-46.115-51.911-46.064L-54.984-42.096L-54.075-42.096Q-53.798-42.096-53.570-42.114Q-53.343-42.133-53.128-42.207Q-52.912-42.280-52.745-42.431Q-52.639-42.533-52.550-42.682Q-52.461-42.830-52.410-42.981Q-52.359-43.131-52.328-43.307Q-52.297-43.483-52.297-43.630L-51.825-43.630L-51.966-41.641M-48.172-41.641L-50.944-41.641L-50.944-42.061L-50.195-42.061L-50.195-46.023L-50.944-46.023L-50.944-46.443L-46.326-46.443L-46.087-44.741L-46.555-44.741Q-46.630-45.291-46.810-45.567Q-46.989-45.842-47.304-45.932Q-47.618-46.023-48.192-46.023L-49.112-46.023L-49.112-44.252L-48.797-44.252Q-48.459-44.252-48.283-44.309Q-48.107-44.365-48.025-44.531Q-47.943-44.697-47.943-45.021L-47.471-45.021L-47.471-43.063L-47.943-43.063Q-47.943-43.319-47.989-43.466Q-48.035-43.613-48.136-43.693Q-48.237-43.774-48.392-43.803Q-48.548-43.832-48.797-43.832L-49.112-43.832L-49.112-42.061L-48.172-42.061\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmbx7\" font-size=\"7\">\u003Cg transform=\"translate(293.75 -21.784)\">\u003Cpath d=\"M-53.887-41.641L-56.467-41.641L-56.467-42.061L-55.719-42.061L-55.719-46.023L-56.467-46.023L-56.467-46.443L-53.360-46.443Q-52.854-46.443-52.374-46.308Q-51.894-46.173-51.569-45.855Q-51.244-45.537-51.244-45.035Q-51.244-44.536-51.573-44.225Q-51.901-43.914-52.388-43.786Q-52.875-43.658-53.360-43.658L-54.635-43.658L-54.635-42.061L-53.887-42.061L-53.887-41.641M-54.683-46.023L-54.683-44.040L-53.647-44.040Q-53.302-44.040-53.066-44.085Q-52.830-44.129-52.639-44.280Q-52.485-44.399-52.449-44.579Q-52.413-44.758-52.413-45.035Q-52.413-45.308-52.451-45.490Q-52.489-45.671-52.639-45.790Q-52.820-45.941-53.053-45.982Q-53.285-46.023-53.647-46.023L-54.683-46.023M-50.195-44.040Q-50.195-44.864-49.752-45.430Q-49.310-45.995-48.596-46.262Q-47.881-46.529-47.075-46.529Q-46.654-46.529-46.263-46.407Q-45.871-46.286-45.557-46.050L-45.031-46.498Q-45.017-46.505-45.008-46.508Q-45-46.512-44.984-46.518Q-44.969-46.525-44.959-46.529L-44.849-46.529Q-44.757-46.505-44.737-46.416L-44.737-44.686Q-44.757-44.594-44.849-44.574L-45.150-44.574Q-45.239-44.594-45.263-44.686Q-45.297-44.977-45.439-45.242Q-45.581-45.507-45.805-45.702Q-46.029-45.896-46.304-46.002Q-46.579-46.108-46.887-46.108Q-47.584-46.108-48.066-45.886Q-48.548-45.664-48.787-45.203Q-49.026-44.741-49.026-44.040Q-49.026-43.336-48.782-42.875Q-48.537-42.413-48.062-42.195Q-47.587-41.976-46.873-41.976Q-46.470-41.976-46.082-42.133Q-45.694-42.290-45.449-42.595Q-45.205-42.899-45.205-43.312Q-45.184-43.405-45.092-43.425L-44.849-43.425Q-44.737-43.394-44.737-43.285Q-44.737-42.854-44.947-42.530Q-45.157-42.205-45.509-41.985Q-45.861-41.764-46.270-41.660Q-46.678-41.556-47.075-41.556Q-47.881-41.556-48.597-41.822Q-49.313-42.089-49.754-42.653Q-50.195-43.217-50.195-44.040\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(293.75 -21.784)\">\u003Cpath d=\"M-38.869-41.641L-40.725-41.641L-40.725-42.061L-40.257-42.061L-40.257-44.119Q-40.257-44.249-40.388-44.281Q-40.520-44.314-40.725-44.314L-40.725-44.734L-39.430-44.792L-39.430-44.099Q-39.296-44.310-39.079-44.473Q-38.862-44.635-38.609-44.714Q-38.356-44.792-38.100-44.792Q-37.502-44.792-37.182-44.565Q-36.863-44.338-36.863-43.764L-36.863-42.061L-36.391-42.061L-36.391-41.641L-38.247-41.641L-38.247-42.061L-37.779-42.061L-37.779-43.733Q-37.779-43.958-37.801-44.099Q-37.823-44.239-37.919-44.339Q-38.014-44.440-38.213-44.440Q-38.657-44.440-38.999-44.151Q-39.341-43.863-39.341-43.425L-39.341-42.061L-38.869-42.061L-38.869-41.641M-35.854-43.217Q-35.854-43.610-35.695-43.916Q-35.536-44.222-35.268-44.420Q-35-44.618-34.660-44.715Q-34.320-44.813-33.944-44.813Q-33.164-44.813-32.722-44.425Q-32.279-44.037-32.279-43.265Q-32.279-43.128-32.419-43.097L-34.853-43.097Q-34.853-42.530-34.549-42.256Q-34.244-41.983-33.670-41.983Q-33.373-41.983-33.106-42.111Q-32.840-42.239-32.734-42.495Q-32.693-42.571-32.607-42.595L-32.419-42.595Q-32.279-42.564-32.279-42.437Q-32.279-42.403-32.286-42.383Q-32.368-42.171-32.532-42.017Q-32.696-41.863-32.908-41.773Q-33.120-41.682-33.347-41.641Q-33.575-41.600-33.817-41.600Q-34.347-41.600-34.810-41.773Q-35.273-41.945-35.564-42.313Q-35.854-42.680-35.854-43.217M-34.853-43.418L-32.997-43.418Q-32.997-43.887-33.240-44.174Q-33.482-44.461-33.944-44.461Q-34.402-44.461-34.627-44.174Q-34.853-43.887-34.853-43.418M-30.256-41.641L-31.746-41.641L-31.746-42.061Q-31.165-42.061-31.103-42.082L-30.047-43.159L-31.158-44.328L-31.712-44.328L-31.712-44.748L-29.996-44.748L-29.996-44.328L-30.157-44.328L-29.534-43.678L-28.912-44.307Q-28.923-44.310-28.943-44.316Q-28.964-44.321-28.967-44.321Q-29.012-44.328-29.100-44.328L-29.100-44.748L-27.610-44.748L-27.610-44.328Q-28.191-44.328-28.253-44.307L-29.213-43.336L-28.003-42.061L-27.450-42.061L-27.450-41.641L-29.165-41.641L-29.165-42.061L-29.005-42.061L-29.722-42.817L-30.444-42.082Q-30.430-42.078-30.411-42.073Q-30.392-42.068-30.389-42.068Q-30.348-42.061-30.256-42.061L-30.256-41.641M-26.404-42.431L-26.404-44.328L-27.022-44.328L-27.022-44.680Q-26.763-44.680-26.556-44.809Q-26.349-44.939-26.221-45.141Q-26.093-45.343-26.024-45.590Q-25.956-45.838-25.956-46.084L-25.488-46.084L-25.488-44.748L-24.360-44.748L-24.360-44.328L-25.488-44.328L-25.488-42.461Q-25.488-41.983-25.088-41.983Q-24.903-41.983-24.794-42.128Q-24.684-42.273-24.684-42.461L-24.684-42.851L-24.213-42.851L-24.213-42.431Q-24.213-42.184-24.358-41.996Q-24.503-41.808-24.736-41.704Q-24.968-41.600-25.207-41.600Q-25.706-41.600-26.055-41.786Q-26.404-41.973-26.404-42.431\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-2.157 2.139)\">\u003Cpath d=\"M-54.628-42.817L-56.440-42.817Q-56.611-42.837-56.659-43.029L-56.659-43.237Q-56.659-43.302-56.621-43.364L-55.004-45.876Q-54.929-45.989-54.796-45.989L-54.396-45.989Q-54.300-45.989-54.232-45.920Q-54.163-45.852-54.163-45.756L-54.163-43.306L-53.582-43.306Q-53.411-43.285-53.367-43.104L-53.367-43.029Q-53.411-42.837-53.582-42.817L-54.163-42.817L-54.163-42.130L-53.661-42.130Q-53.480-42.109-53.446-41.928L-53.446-41.849Q-53.480-41.662-53.661-41.641L-55.131-41.641Q-55.312-41.662-55.349-41.849L-55.349-41.928Q-55.312-42.109-55.131-42.130L-54.628-42.130L-54.628-42.817M-54.628-45.575L-56.091-43.306L-54.628-43.306\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 1.361)\">\u003Cpath d=\"M-56.512-42.615Q-56.512-43.005-56.149-43.230Q-55.787-43.456-55.314-43.543Q-54.840-43.630-54.396-43.637Q-54.396-43.825-54.514-43.958Q-54.632-44.092-54.813-44.158Q-54.994-44.225-55.179-44.225Q-55.479-44.225-55.619-44.204L-55.619-44.153Q-55.619-44.006-55.724-43.905Q-55.828-43.805-55.971-43.805Q-56.125-43.805-56.226-43.912Q-56.327-44.020-56.327-44.167Q-56.327-44.522-55.994-44.618Q-55.660-44.714-55.172-44.714Q-54.936-44.714-54.702-44.645Q-54.468-44.577-54.271-44.445Q-54.075-44.314-53.955-44.121Q-53.835-43.928-53.835-43.685L-53.835-42.181Q-53.835-42.130-53.374-42.130Q-53.203-42.113-53.159-41.928L-53.159-41.849Q-53.203-41.662-53.374-41.641L-53.500-41.641Q-53.801-41.641-54.001-41.682Q-54.201-41.723-54.327-41.887Q-54.731-41.607-55.349-41.607Q-55.643-41.607-55.910-41.730Q-56.177-41.853-56.344-42.082Q-56.512-42.311-56.512-42.615M-55.951-42.608Q-55.951-42.369-55.739-42.232Q-55.527-42.096-55.278-42.096Q-55.086-42.096-54.883-42.147Q-54.679-42.198-54.538-42.319Q-54.396-42.441-54.396-42.636L-54.396-43.152Q-54.642-43.152-55.006-43.102Q-55.370-43.053-55.660-42.931Q-55.951-42.810-55.951-42.608M-51.521-41.607Q-51.928-41.607-52.248-41.826Q-52.567-42.044-52.747-42.398Q-52.926-42.752-52.926-43.152Q-52.926-43.453-52.817-43.733Q-52.707-44.013-52.504-44.232Q-52.301-44.451-52.034-44.572Q-51.767-44.693-51.456-44.693Q-51.009-44.693-50.653-44.413L-50.653-45.428L-51.022-45.428Q-51.207-45.449-51.241-45.637L-51.241-45.715Q-51.207-45.896-51.022-45.917L-50.311-45.917Q-50.137-45.896-50.093-45.715L-50.093-42.130L-49.720-42.130Q-49.539-42.109-49.505-41.928L-49.505-41.849Q-49.539-41.662-49.720-41.641L-50.434-41.641Q-50.609-41.662-50.653-41.849L-50.653-41.962Q-50.824-41.795-51.053-41.701Q-51.282-41.607-51.521-41.607M-51.487-42.096Q-51.173-42.096-50.952-42.331Q-50.732-42.567-50.653-42.895L-50.653-43.623Q-50.704-43.787-50.815-43.919Q-50.927-44.051-51.082-44.128Q-51.238-44.204-51.409-44.204Q-51.679-44.204-51.897-44.056Q-52.116-43.907-52.242-43.658Q-52.369-43.408-52.369-43.145Q-52.369-42.752-52.119-42.424Q-51.870-42.096-51.487-42.096M-47.806-41.607Q-48.213-41.607-48.532-41.826Q-48.852-42.044-49.031-42.398Q-49.211-42.752-49.211-43.152Q-49.211-43.453-49.101-43.733Q-48.992-44.013-48.789-44.232Q-48.585-44.451-48.319-44.572Q-48.052-44.693-47.741-44.693Q-47.293-44.693-46.938-44.413L-46.938-45.428L-47.307-45.428Q-47.492-45.449-47.526-45.637L-47.526-45.715Q-47.492-45.896-47.307-45.917L-46.596-45.917Q-46.422-45.896-46.377-45.715L-46.377-42.130L-46.005-42.130Q-45.824-42.109-45.789-41.928L-45.789-41.849Q-45.824-41.662-46.005-41.641L-46.719-41.641Q-46.893-41.662-46.938-41.849L-46.938-41.962Q-47.109-41.795-47.338-41.701Q-47.567-41.607-47.806-41.607M-47.772-42.096Q-47.457-42.096-47.237-42.331Q-47.016-42.567-46.938-42.895L-46.938-43.623Q-46.989-43.787-47.100-43.919Q-47.211-44.051-47.367-44.128Q-47.522-44.204-47.693-44.204Q-47.963-44.204-48.182-44.056Q-48.401-43.907-48.527-43.658Q-48.654-43.408-48.654-43.145Q-48.654-42.752-48.404-42.424Q-48.155-42.096-47.772-42.096M-43.698-40.291L-43.698-40.366Q-43.653-40.558-43.482-40.578L-43.075-40.578L-43.075-41.976Q-43.472-41.607-44.005-41.607Q-44.316-41.607-44.583-41.732Q-44.849-41.856-45.053-42.075Q-45.256-42.294-45.366-42.576Q-45.475-42.858-45.475-43.152Q-45.475-43.576-45.266-43.926Q-45.058-44.276-44.702-44.485Q-44.347-44.693-43.930-44.693Q-43.438-44.693-43.075-44.351L-43.075-44.492Q-43.031-44.676-42.857-44.693L-42.734-44.693Q-42.559-44.673-42.515-44.492L-42.515-40.578L-42.108-40.578Q-41.937-40.558-41.893-40.366L-41.893-40.291Q-41.937-40.106-42.108-40.086L-43.482-40.086Q-43.653-40.106-43.698-40.291M-43.964-42.096Q-43.639-42.096-43.398-42.318Q-43.158-42.540-43.075-42.858L-43.075-43.398Q-43.113-43.606-43.221-43.793Q-43.328-43.979-43.501-44.092Q-43.674-44.204-43.886-44.204Q-44.162-44.204-44.400-44.059Q-44.638-43.914-44.776-43.668Q-44.914-43.422-44.914-43.145Q-44.914-42.738-44.639-42.417Q-44.364-42.096-43.964-42.096\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(125.88 2.139)\">\u003Cpath d=\"M-56.559-42.557Q-56.559-42.711-56.457-42.817Q-56.354-42.923-56.200-42.923Q-56.129-42.923-56.062-42.895Q-55.995-42.868-55.951-42.824Q-55.907-42.779-55.879-42.709Q-55.852-42.639-55.852-42.571Q-55.852-42.454-55.924-42.355Q-55.688-42.061-54.997-42.061Q-54.625-42.061-54.326-42.294Q-54.027-42.526-54.027-42.889Q-54.027-43.128-54.172-43.319Q-54.317-43.511-54.544-43.608Q-54.772-43.705-55.011-43.705L-55.418-43.705Q-55.602-43.726-55.630-43.917L-55.630-43.993Q-55.602-44.170-55.418-44.198L-54.956-44.232Q-54.768-44.232-54.601-44.339Q-54.433-44.447-54.334-44.625Q-54.235-44.803-54.235-44.987Q-54.235-45.226-54.483-45.361Q-54.731-45.496-54.997-45.496Q-55.490-45.496-55.698-45.329Q-55.643-45.230-55.643-45.134Q-55.643-44.984-55.742-44.885Q-55.842-44.786-55.992-44.786Q-56.146-44.786-56.247-44.893Q-56.347-45.001-56.347-45.148Q-56.347-45.609-55.934-45.799Q-55.520-45.989-54.997-45.989Q-54.700-45.989-54.389-45.874Q-54.078-45.760-53.876-45.534Q-53.675-45.308-53.675-44.987Q-53.675-44.686-53.822-44.420Q-53.969-44.153-54.228-43.979Q-53.904-43.822-53.685-43.528Q-53.466-43.234-53.466-42.889Q-53.466-42.499-53.688-42.200Q-53.910-41.901-54.263-41.737Q-54.615-41.573-54.997-41.573Q-55.247-41.573-55.513-41.620Q-55.780-41.668-56.021-41.779Q-56.262-41.891-56.411-42.085Q-56.559-42.280-56.559-42.557\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.25 2.139)\">\u003Cpath d=\"M-56.559-42.557Q-56.559-42.711-56.457-42.817Q-56.354-42.923-56.200-42.923Q-56.129-42.923-56.062-42.895Q-55.995-42.868-55.951-42.824Q-55.907-42.779-55.879-42.709Q-55.852-42.639-55.852-42.571Q-55.852-42.454-55.924-42.355Q-55.688-42.061-54.997-42.061Q-54.625-42.061-54.326-42.294Q-54.027-42.526-54.027-42.889Q-54.027-43.128-54.172-43.319Q-54.317-43.511-54.544-43.608Q-54.772-43.705-55.011-43.705L-55.418-43.705Q-55.602-43.726-55.630-43.917L-55.630-43.993Q-55.602-44.170-55.418-44.198L-54.956-44.232Q-54.768-44.232-54.601-44.339Q-54.433-44.447-54.334-44.625Q-54.235-44.803-54.235-44.987Q-54.235-45.226-54.483-45.361Q-54.731-45.496-54.997-45.496Q-55.490-45.496-55.698-45.329Q-55.643-45.230-55.643-45.134Q-55.643-44.984-55.742-44.885Q-55.842-44.786-55.992-44.786Q-56.146-44.786-56.247-44.893Q-56.347-45.001-56.347-45.148Q-56.347-45.609-55.934-45.799Q-55.520-45.989-54.997-45.989Q-54.700-45.989-54.389-45.874Q-54.078-45.760-53.876-45.534Q-53.675-45.308-53.675-44.987Q-53.675-44.686-53.822-44.420Q-53.969-44.153-54.228-43.979Q-53.904-43.822-53.685-43.528Q-53.466-43.234-53.466-42.889Q-53.466-42.499-53.688-42.200Q-53.910-41.901-54.263-41.737Q-54.615-41.573-54.997-41.573Q-55.247-41.573-55.513-41.620Q-55.780-41.668-56.021-41.779Q-56.262-41.891-56.411-42.085Q-56.559-42.280-56.559-42.557\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 2.139)\">\u003Cpath d=\"M-56.118-41.849L-56.118-41.928Q-56.074-42.109-55.900-42.130L-55.185-42.130L-55.185-44.915Q-55.517-44.645-55.913-44.645Q-56.115-44.645-56.159-44.847L-56.159-44.926Q-56.115-45.114-55.944-45.134Q-55.657-45.134-55.435-45.343Q-55.213-45.551-55.090-45.855Q-55.028-45.968-54.891-45.989L-54.844-45.989Q-54.673-45.972-54.628-45.784L-54.628-42.130L-53.914-42.130Q-53.740-42.109-53.695-41.928L-53.695-41.849Q-53.740-41.662-53.914-41.641L-55.900-41.641Q-56.074-41.662-56.118-41.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(262.453 2.139)\">\u003Cpath d=\"M-55.011-41.573Q-55.390-41.573-55.681-41.781Q-55.971-41.990-56.165-42.330Q-56.358-42.670-56.452-43.053Q-56.546-43.435-56.546-43.784Q-56.546-44.126-56.450-44.514Q-56.354-44.902-56.165-45.235Q-55.975-45.568-55.683-45.778Q-55.390-45.989-55.011-45.989Q-54.526-45.989-54.175-45.640Q-53.825-45.291-53.652-44.779Q-53.480-44.266-53.480-43.784Q-53.480-43.299-53.652-42.784Q-53.825-42.270-54.175-41.921Q-54.526-41.573-55.011-41.573M-55.011-42.061Q-54.748-42.061-54.558-42.251Q-54.368-42.441-54.257-42.728Q-54.146-43.015-54.093-43.318Q-54.040-43.620-54.040-43.866Q-54.040-44.085-54.095-44.370Q-54.150-44.656-54.264-44.910Q-54.379-45.165-54.565-45.331Q-54.751-45.496-55.011-45.496Q-55.339-45.496-55.560-45.223Q-55.780-44.950-55.883-44.570Q-55.985-44.191-55.985-43.866Q-55.985-43.517-55.886-43.097Q-55.787-42.677-55.570-42.369Q-55.353-42.061-55.011-42.061\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(293.75 2.139)\">\u003Cpath d=\"M-55.011-41.573Q-55.390-41.573-55.681-41.781Q-55.971-41.990-56.165-42.330Q-56.358-42.670-56.452-43.053Q-56.546-43.435-56.546-43.784Q-56.546-44.126-56.450-44.514Q-56.354-44.902-56.165-45.235Q-55.975-45.568-55.683-45.778Q-55.390-45.989-55.011-45.989Q-54.526-45.989-54.175-45.640Q-53.825-45.291-53.652-44.779Q-53.480-44.266-53.480-43.784Q-53.480-43.299-53.652-42.784Q-53.825-42.270-54.175-41.921Q-54.526-41.573-55.011-41.573M-55.011-42.061Q-54.748-42.061-54.558-42.251Q-54.368-42.441-54.257-42.728Q-54.146-43.015-54.093-43.318Q-54.040-43.620-54.040-43.866Q-54.040-44.085-54.095-44.370Q-54.150-44.656-54.264-44.910Q-54.379-45.165-54.565-45.331Q-54.751-45.496-55.011-45.496Q-55.339-45.496-55.560-45.223Q-55.780-44.950-55.883-44.570Q-55.985-44.191-55.985-43.866Q-55.985-43.517-55.886-43.097Q-55.787-42.677-55.570-42.369Q-55.353-42.061-55.011-42.061M-52.926-41.849L-52.926-41.928Q-52.892-42.109-52.711-42.130L-52.355-42.130L-51.542-43.196L-52.304-44.167L-52.670-44.167Q-52.841-44.184-52.885-44.379L-52.885-44.454Q-52.841-44.639-52.670-44.659L-51.655-44.659Q-51.480-44.639-51.436-44.454L-51.436-44.379Q-51.480-44.187-51.655-44.167L-51.750-44.167L-51.316-43.593L-50.899-44.167L-51.002-44.167Q-51.176-44.187-51.221-44.379L-51.221-44.454Q-51.176-44.639-51.002-44.659L-49.987-44.659Q-49.816-44.642-49.771-44.454L-49.771-44.379Q-49.816-44.187-49.987-44.167L-50.346-44.167L-51.087-43.196L-50.246-42.130L-49.891-42.130Q-49.717-42.109-49.672-41.928L-49.672-41.849Q-49.706-41.662-49.891-41.641L-50.899-41.641Q-51.080-41.662-51.115-41.849L-51.115-41.928Q-51.080-42.109-50.899-42.130L-50.786-42.130L-51.316-42.878L-51.829-42.130L-51.702-42.130Q-51.521-42.109-51.487-41.928L-51.487-41.849Q-51.521-41.662-51.702-41.641L-52.711-41.641Q-52.882-41.658-52.926-41.849M-49.064-41.849L-49.064-41.914Q-49.036-42.061-48.948-42.102L-47.820-43.036Q-47.529-43.278-47.370-43.412Q-47.211-43.545-47.040-43.738Q-46.869-43.931-46.763-44.150Q-46.658-44.369-46.658-44.601Q-46.658-44.885-46.811-45.090Q-46.965-45.295-47.210-45.396Q-47.454-45.496-47.734-45.496Q-47.960-45.496-48.160-45.389Q-48.360-45.281-48.449-45.093Q-48.360-44.977-48.360-44.847Q-48.360-44.707-48.464-44.599Q-48.568-44.492-48.708-44.492Q-48.862-44.492-48.963-44.601Q-49.064-44.710-49.064-44.861Q-49.064-45.117-48.946-45.329Q-48.828-45.541-48.619-45.691Q-48.411-45.842-48.177-45.915Q-47.943-45.989-47.686-45.989Q-47.266-45.989-46.902-45.823Q-46.538-45.657-46.317-45.341Q-46.097-45.025-46.097-44.601Q-46.097-44.300-46.213-44.035Q-46.329-43.770-46.526-43.543Q-46.722-43.316-46.992-43.087Q-47.263-42.858-47.447-42.704L-48.155-42.130L-46.658-42.130L-46.658-42.256Q-46.613-42.441-46.439-42.461L-46.316-42.461Q-46.141-42.444-46.097-42.256L-46.097-41.849Q-46.141-41.662-46.316-41.641L-48.848-41.641Q-49.019-41.658-49.064-41.849M-43.865-41.573Q-44.244-41.573-44.535-41.781Q-44.825-41.990-45.019-42.330Q-45.212-42.670-45.306-43.053Q-45.400-43.435-45.400-43.784Q-45.400-44.126-45.304-44.514Q-45.208-44.902-45.019-45.235Q-44.829-45.568-44.537-45.778Q-44.244-45.989-43.865-45.989Q-43.380-45.989-43.029-45.640Q-42.679-45.291-42.506-44.779Q-42.334-44.266-42.334-43.784Q-42.334-43.299-42.506-42.784Q-42.679-42.270-43.029-41.921Q-43.380-41.573-43.865-41.573M-43.865-42.061Q-43.602-42.061-43.412-42.251Q-43.222-42.441-43.111-42.728Q-43-43.015-42.947-43.318Q-42.894-43.620-42.894-43.866Q-42.894-44.085-42.949-44.370Q-43.004-44.656-43.118-44.910Q-43.233-45.165-43.419-45.331Q-43.605-45.496-43.865-45.496Q-44.193-45.496-44.414-45.223Q-44.634-44.950-44.737-44.570Q-44.839-44.191-44.839-43.866Q-44.839-43.517-44.740-43.097Q-44.641-42.677-44.424-42.369Q-44.207-42.061-43.865-42.061\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-33.105h367.04\"\u002F>\u003Cg transform=\"translate(-2.157 19.21)\">\u003Cpath d=\"M-55.872-42.410Q-55.770-42.232-55.565-42.147Q-55.360-42.061-55.131-42.061Q-54.871-42.061-54.632-42.174Q-54.392-42.287-54.240-42.494Q-54.088-42.701-54.088-42.964Q-54.088-43.186-54.192-43.398Q-54.297-43.610-54.485-43.738Q-54.673-43.866-54.909-43.866Q-55.438-43.866-55.732-43.586Q-55.801-43.511-55.848-43.470Q-55.896-43.429-55.971-43.418L-56.060-43.418Q-56.235-43.439-56.279-43.630L-56.279-45.715Q-56.235-45.896-56.060-45.917L-53.996-45.917Q-53.825-45.900-53.781-45.715L-53.781-45.637Q-53.825-45.449-53.996-45.428L-55.719-45.428L-55.719-44.181Q-55.363-44.358-54.909-44.358Q-54.533-44.358-54.213-44.169Q-53.893-43.979-53.711-43.656Q-53.528-43.333-53.528-42.964Q-53.528-42.550-53.758-42.236Q-53.989-41.921-54.360-41.747Q-54.731-41.573-55.131-41.573Q-55.353-41.573-55.596-41.638Q-55.838-41.703-56.043-41.839Q-56.248-41.976-56.371-42.181Q-56.494-42.386-56.494-42.636Q-56.494-42.783-56.394-42.890Q-56.293-42.998-56.139-42.998Q-56.067-42.998-56.006-42.972Q-55.944-42.947-55.895-42.899Q-55.845-42.851-55.818-42.784Q-55.790-42.718-55.790-42.649Q-55.790-42.509-55.872-42.410\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 18.433)\">\u003Cpath d=\"M-56.354-41.815L-56.354-42.615Q-56.330-42.796-56.146-42.817L-55.999-42.817Q-55.855-42.796-55.804-42.656Q-55.626-42.096-54.991-42.096Q-54.809-42.096-54.609-42.126Q-54.409-42.157-54.263-42.258Q-54.116-42.359-54.116-42.537Q-54.116-42.721-54.310-42.820Q-54.505-42.919-54.744-42.957L-55.356-43.056Q-56.354-43.241-56.354-43.873Q-56.354-44.126-56.228-44.292Q-56.101-44.457-55.891-44.551Q-55.681-44.645-55.457-44.680Q-55.233-44.714-54.991-44.714Q-54.772-44.714-54.603-44.688Q-54.433-44.662-54.290-44.594Q-54.221-44.697-54.109-44.714L-54.040-44.714Q-53.955-44.703-53.900-44.649Q-53.846-44.594-53.835-44.512L-53.835-43.893Q-53.846-43.811-53.900-43.753Q-53.955-43.695-54.040-43.685L-54.187-43.685Q-54.269-43.695-54.327-43.753Q-54.386-43.811-54.396-43.893Q-54.396-44.225-55.004-44.225Q-55.308-44.225-55.587-44.153Q-55.866-44.081-55.866-43.866Q-55.866-43.634-55.278-43.538L-54.662-43.432Q-54.239-43.360-53.933-43.143Q-53.627-42.926-53.627-42.537Q-53.627-42.195-53.834-41.983Q-54.040-41.771-54.346-41.689Q-54.652-41.607-54.991-41.607Q-55.496-41.607-55.845-41.829Q-55.907-41.720-55.949-41.670Q-55.992-41.620-56.084-41.607L-56.146-41.607Q-56.334-41.627-56.354-41.815M-52.502-42.390L-52.502-44.167L-52.871-44.167Q-53.053-44.187-53.090-44.379L-53.090-44.454Q-53.049-44.639-52.871-44.659L-52.157-44.659Q-51.986-44.639-51.942-44.454L-51.942-42.417Q-51.942-42.212-51.793-42.154Q-51.644-42.096-51.395-42.096Q-51.214-42.096-51.043-42.162Q-50.872-42.229-50.763-42.360Q-50.653-42.492-50.653-42.677L-50.653-44.167L-51.022-44.167Q-51.207-44.187-51.241-44.379L-51.241-44.454Q-51.207-44.639-51.022-44.659L-50.311-44.659Q-50.137-44.639-50.093-44.454L-50.093-42.130L-49.720-42.130Q-49.539-42.109-49.505-41.928L-49.505-41.849Q-49.539-41.662-49.720-41.641L-50.434-41.641Q-50.609-41.662-50.653-41.836Q-51.005-41.607-51.450-41.607Q-51.655-41.607-51.843-41.643Q-52.031-41.679-52.176-41.767Q-52.321-41.856-52.412-42.012Q-52.502-42.167-52.502-42.390M-48.787-41.849L-48.787-45.428L-49.156-45.428Q-49.337-45.449-49.375-45.637L-49.375-45.715Q-49.337-45.896-49.156-45.917L-48.442-45.917Q-48.271-45.896-48.226-45.715L-48.226-44.392Q-48.042-44.539-47.811-44.616Q-47.580-44.693-47.345-44.693Q-47.047-44.693-46.787-44.567Q-46.528-44.440-46.340-44.220Q-46.152-43.999-46.051-43.726Q-45.950-43.453-45.950-43.152Q-45.950-42.745-46.148-42.386Q-46.346-42.027-46.685-41.817Q-47.023-41.607-47.433-41.607Q-47.888-41.607-48.226-41.928L-48.226-41.849Q-48.271-41.658-48.442-41.641L-48.568-41.641Q-48.736-41.662-48.787-41.849M-47.471-42.096Q-47.201-42.096-46.982-42.244Q-46.763-42.393-46.637-42.639Q-46.511-42.885-46.511-43.152Q-46.511-43.405-46.620-43.649Q-46.729-43.893-46.933-44.049Q-47.136-44.204-47.399-44.204Q-47.679-44.204-47.909-44.042Q-48.138-43.880-48.226-43.617L-48.226-42.871Q-48.148-42.550-47.955-42.323Q-47.762-42.096-47.471-42.096M-43.698-40.291L-43.698-40.366Q-43.653-40.558-43.482-40.578L-43.075-40.578L-43.075-41.976Q-43.472-41.607-44.005-41.607Q-44.316-41.607-44.583-41.732Q-44.849-41.856-45.053-42.075Q-45.256-42.294-45.366-42.576Q-45.475-42.858-45.475-43.152Q-45.475-43.576-45.266-43.926Q-45.058-44.276-44.702-44.485Q-44.347-44.693-43.930-44.693Q-43.438-44.693-43.075-44.351L-43.075-44.492Q-43.031-44.676-42.857-44.693L-42.734-44.693Q-42.559-44.673-42.515-44.492L-42.515-40.578L-42.108-40.578Q-41.937-40.558-41.893-40.366L-41.893-40.291Q-41.937-40.106-42.108-40.086L-43.482-40.086Q-43.653-40.106-43.698-40.291M-43.964-42.096Q-43.639-42.096-43.398-42.318Q-43.158-42.540-43.075-42.858L-43.075-43.398Q-43.113-43.606-43.221-43.793Q-43.328-43.979-43.501-44.092Q-43.674-44.204-43.886-44.204Q-44.162-44.204-44.400-44.059Q-44.638-43.914-44.776-43.668Q-44.914-43.422-44.914-43.145Q-44.914-42.738-44.639-42.417Q-44.364-42.096-43.964-42.096\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(125.88 19.21)\">\u003Cpath d=\"M-56.559-42.557Q-56.559-42.711-56.457-42.817Q-56.354-42.923-56.200-42.923Q-56.129-42.923-56.062-42.895Q-55.995-42.868-55.951-42.824Q-55.907-42.779-55.879-42.709Q-55.852-42.639-55.852-42.571Q-55.852-42.454-55.924-42.355Q-55.688-42.061-54.997-42.061Q-54.625-42.061-54.326-42.294Q-54.027-42.526-54.027-42.889Q-54.027-43.128-54.172-43.319Q-54.317-43.511-54.544-43.608Q-54.772-43.705-55.011-43.705L-55.418-43.705Q-55.602-43.726-55.630-43.917L-55.630-43.993Q-55.602-44.170-55.418-44.198L-54.956-44.232Q-54.768-44.232-54.601-44.339Q-54.433-44.447-54.334-44.625Q-54.235-44.803-54.235-44.987Q-54.235-45.226-54.483-45.361Q-54.731-45.496-54.997-45.496Q-55.490-45.496-55.698-45.329Q-55.643-45.230-55.643-45.134Q-55.643-44.984-55.742-44.885Q-55.842-44.786-55.992-44.786Q-56.146-44.786-56.247-44.893Q-56.347-45.001-56.347-45.148Q-56.347-45.609-55.934-45.799Q-55.520-45.989-54.997-45.989Q-54.700-45.989-54.389-45.874Q-54.078-45.760-53.876-45.534Q-53.675-45.308-53.675-44.987Q-53.675-44.686-53.822-44.420Q-53.969-44.153-54.228-43.979Q-53.904-43.822-53.685-43.528Q-53.466-43.234-53.466-42.889Q-53.466-42.499-53.688-42.200Q-53.910-41.901-54.263-41.737Q-54.615-41.573-54.997-41.573Q-55.247-41.573-55.513-41.620Q-55.780-41.668-56.021-41.779Q-56.262-41.891-56.411-42.085Q-56.559-42.280-56.559-42.557\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.25 19.21)\">\u003Cpath d=\"M-56.494-41.849L-56.494-41.914Q-56.467-42.061-56.378-42.102L-55.250-43.036Q-54.960-43.278-54.801-43.412Q-54.642-43.545-54.471-43.738Q-54.300-43.931-54.194-44.150Q-54.088-44.369-54.088-44.601Q-54.088-44.885-54.242-45.090Q-54.396-45.295-54.640-45.396Q-54.885-45.496-55.165-45.496Q-55.390-45.496-55.590-45.389Q-55.790-45.281-55.879-45.093Q-55.790-44.977-55.790-44.847Q-55.790-44.707-55.895-44.599Q-55.999-44.492-56.139-44.492Q-56.293-44.492-56.394-44.601Q-56.494-44.710-56.494-44.861Q-56.494-45.117-56.377-45.329Q-56.259-45.541-56.050-45.691Q-55.842-45.842-55.607-45.915Q-55.373-45.989-55.117-45.989Q-54.697-45.989-54.333-45.823Q-53.969-45.657-53.748-45.341Q-53.528-45.025-53.528-44.601Q-53.528-44.300-53.644-44.035Q-53.760-43.770-53.957-43.543Q-54.153-43.316-54.423-43.087Q-54.693-42.858-54.878-42.704L-55.585-42.130L-54.088-42.130L-54.088-42.256Q-54.044-42.441-53.869-42.461L-53.746-42.461Q-53.572-42.444-53.528-42.256L-53.528-41.849Q-53.572-41.662-53.746-41.641L-56.279-41.641Q-56.450-41.658-56.494-41.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 19.21)\">\u003Cpath d=\"M-56.118-41.849L-56.118-41.928Q-56.074-42.109-55.900-42.130L-55.185-42.130L-55.185-44.915Q-55.517-44.645-55.913-44.645Q-56.115-44.645-56.159-44.847L-56.159-44.926Q-56.115-45.114-55.944-45.134Q-55.657-45.134-55.435-45.343Q-55.213-45.551-55.090-45.855Q-55.028-45.968-54.891-45.989L-54.844-45.989Q-54.673-45.972-54.628-45.784L-54.628-42.130L-53.914-42.130Q-53.740-42.109-53.695-41.928L-53.695-41.849Q-53.740-41.662-53.914-41.641L-55.900-41.641Q-56.074-41.662-56.118-41.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(262.453 19.21)\">\u003Cpath d=\"M-55.011-41.573Q-55.390-41.573-55.681-41.781Q-55.971-41.990-56.165-42.330Q-56.358-42.670-56.452-43.053Q-56.546-43.435-56.546-43.784Q-56.546-44.126-56.450-44.514Q-56.354-44.902-56.165-45.235Q-55.975-45.568-55.683-45.778Q-55.390-45.989-55.011-45.989Q-54.526-45.989-54.175-45.640Q-53.825-45.291-53.652-44.779Q-53.480-44.266-53.480-43.784Q-53.480-43.299-53.652-42.784Q-53.825-42.270-54.175-41.921Q-54.526-41.573-55.011-41.573M-55.011-42.061Q-54.748-42.061-54.558-42.251Q-54.368-42.441-54.257-42.728Q-54.146-43.015-54.093-43.318Q-54.040-43.620-54.040-43.866Q-54.040-44.085-54.095-44.370Q-54.150-44.656-54.264-44.910Q-54.379-45.165-54.565-45.331Q-54.751-45.496-55.011-45.496Q-55.339-45.496-55.560-45.223Q-55.780-44.950-55.883-44.570Q-55.985-44.191-55.985-43.866Q-55.985-43.517-55.886-43.097Q-55.787-42.677-55.570-42.369Q-55.353-42.061-55.011-42.061\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(293.75 19.21)\">\u003Cpath d=\"M-55.011-41.573Q-55.390-41.573-55.681-41.781Q-55.971-41.990-56.165-42.330Q-56.358-42.670-56.452-43.053Q-56.546-43.435-56.546-43.784Q-56.546-44.126-56.450-44.514Q-56.354-44.902-56.165-45.235Q-55.975-45.568-55.683-45.778Q-55.390-45.989-55.011-45.989Q-54.526-45.989-54.175-45.640Q-53.825-45.291-53.652-44.779Q-53.480-44.266-53.480-43.784Q-53.480-43.299-53.652-42.784Q-53.825-42.270-54.175-41.921Q-54.526-41.573-55.011-41.573M-55.011-42.061Q-54.748-42.061-54.558-42.251Q-54.368-42.441-54.257-42.728Q-54.146-43.015-54.093-43.318Q-54.040-43.620-54.040-43.866Q-54.040-44.085-54.095-44.370Q-54.150-44.656-54.264-44.910Q-54.379-45.165-54.565-45.331Q-54.751-45.496-55.011-45.496Q-55.339-45.496-55.560-45.223Q-55.780-44.950-55.883-44.570Q-55.985-44.191-55.985-43.866Q-55.985-43.517-55.886-43.097Q-55.787-42.677-55.570-42.369Q-55.353-42.061-55.011-42.061M-52.926-41.849L-52.926-41.928Q-52.892-42.109-52.711-42.130L-52.355-42.130L-51.542-43.196L-52.304-44.167L-52.670-44.167Q-52.841-44.184-52.885-44.379L-52.885-44.454Q-52.841-44.639-52.670-44.659L-51.655-44.659Q-51.480-44.639-51.436-44.454L-51.436-44.379Q-51.480-44.187-51.655-44.167L-51.750-44.167L-51.316-43.593L-50.899-44.167L-51.002-44.167Q-51.176-44.187-51.221-44.379L-51.221-44.454Q-51.176-44.639-51.002-44.659L-49.987-44.659Q-49.816-44.642-49.771-44.454L-49.771-44.379Q-49.816-44.187-49.987-44.167L-50.346-44.167L-51.087-43.196L-50.246-42.130L-49.891-42.130Q-49.717-42.109-49.672-41.928L-49.672-41.849Q-49.706-41.662-49.891-41.641L-50.899-41.641Q-51.080-41.662-51.115-41.849L-51.115-41.928Q-51.080-42.109-50.899-42.130L-50.786-42.130L-51.316-42.878L-51.829-42.130L-51.702-42.130Q-51.521-42.109-51.487-41.928L-51.487-41.849Q-51.521-41.662-51.702-41.641L-52.711-41.641Q-52.882-41.658-52.926-41.849M-49.064-41.849L-49.064-41.914Q-49.036-42.061-48.948-42.102L-47.820-43.036Q-47.529-43.278-47.370-43.412Q-47.211-43.545-47.040-43.738Q-46.869-43.931-46.763-44.150Q-46.658-44.369-46.658-44.601Q-46.658-44.885-46.811-45.090Q-46.965-45.295-47.210-45.396Q-47.454-45.496-47.734-45.496Q-47.960-45.496-48.160-45.389Q-48.360-45.281-48.449-45.093Q-48.360-44.977-48.360-44.847Q-48.360-44.707-48.464-44.599Q-48.568-44.492-48.708-44.492Q-48.862-44.492-48.963-44.601Q-49.064-44.710-49.064-44.861Q-49.064-45.117-48.946-45.329Q-48.828-45.541-48.619-45.691Q-48.411-45.842-48.177-45.915Q-47.943-45.989-47.686-45.989Q-47.266-45.989-46.902-45.823Q-46.538-45.657-46.317-45.341Q-46.097-45.025-46.097-44.601Q-46.097-44.300-46.213-44.035Q-46.329-43.770-46.526-43.543Q-46.722-43.316-46.992-43.087Q-47.263-42.858-47.447-42.704L-48.155-42.130L-46.658-42.130L-46.658-42.256Q-46.613-42.441-46.439-42.461L-46.316-42.461Q-46.141-42.444-46.097-42.256L-46.097-41.849Q-46.141-41.662-46.316-41.641L-48.848-41.641Q-49.019-41.658-49.064-41.849M-45.348-41.849L-45.348-41.914Q-45.321-42.061-45.232-42.102L-44.104-43.036Q-43.814-43.278-43.655-43.412Q-43.496-43.545-43.325-43.738Q-43.154-43.931-43.048-44.150Q-42.942-44.369-42.942-44.601Q-42.942-44.885-43.096-45.090Q-43.250-45.295-43.494-45.396Q-43.739-45.496-44.019-45.496Q-44.244-45.496-44.444-45.389Q-44.644-45.281-44.733-45.093Q-44.644-44.977-44.644-44.847Q-44.644-44.707-44.749-44.599Q-44.853-44.492-44.993-44.492Q-45.147-44.492-45.248-44.601Q-45.348-44.710-45.348-44.861Q-45.348-45.117-45.231-45.329Q-45.113-45.541-44.904-45.691Q-44.696-45.842-44.461-45.915Q-44.227-45.989-43.971-45.989Q-43.551-45.989-43.187-45.823Q-42.823-45.657-42.602-45.341Q-42.382-45.025-42.382-44.601Q-42.382-44.300-42.498-44.035Q-42.614-43.770-42.811-43.543Q-43.007-43.316-43.277-43.087Q-43.547-42.858-43.732-42.704L-44.439-42.130L-42.942-42.130L-42.942-42.256Q-42.898-42.441-42.723-42.461L-42.600-42.461Q-42.426-42.444-42.382-42.256L-42.382-41.849Q-42.426-41.662-42.600-41.641L-45.133-41.641Q-45.304-41.658-45.348-41.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-16.033h367.04\"\u002F>\u003Cg transform=\"translate(-2.157 36.282)\">\u003Cpath d=\"M-55.011-41.573Q-55.572-41.573-55.910-41.902Q-56.248-42.232-56.387-42.733Q-56.525-43.234-56.525-43.784Q-56.525-44.191-56.385-44.589Q-56.245-44.987-55.992-45.302Q-55.739-45.616-55.382-45.802Q-55.025-45.989-54.597-45.989Q-54.358-45.989-54.139-45.903Q-53.921-45.818-53.787-45.647Q-53.654-45.476-53.654-45.220Q-53.654-45.066-53.753-44.960Q-53.852-44.854-54.003-44.854Q-54.157-44.854-54.259-44.953Q-54.362-45.052-54.362-45.203Q-54.362-45.308-54.297-45.414Q-54.392-45.496-54.597-45.496Q-54.963-45.496-55.257-45.286Q-55.551-45.076-55.731-44.738Q-55.910-44.399-55.951-44.051Q-55.742-44.225-55.472-44.319Q-55.202-44.413-54.922-44.413Q-54.625-44.413-54.363-44.304Q-54.102-44.194-53.910-44.003Q-53.719-43.811-53.610-43.550Q-53.500-43.288-53.500-42.991Q-53.500-42.687-53.622-42.424Q-53.743-42.161-53.953-41.971Q-54.163-41.781-54.439-41.677Q-54.714-41.573-55.011-41.573M-55.872-42.923Q-55.818-42.694-55.705-42.497Q-55.592-42.301-55.418-42.181Q-55.243-42.061-55.011-42.061Q-54.615-42.061-54.338-42.330Q-54.061-42.598-54.061-42.991Q-54.061-43.237-54.179-43.453Q-54.297-43.668-54.503-43.793Q-54.710-43.917-54.970-43.917Q-55.312-43.917-55.602-43.719Q-55.893-43.521-55.893-43.196Q-55.893-43.162-55.879-43.094Q-55.866-43.025-55.866-42.991Q-55.866-42.967-55.867-42.953Q-55.869-42.940-55.872-42.923\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 35.504)\">\u003Cpath d=\"M-56.532-40.605L-56.532-40.653Q-56.532-40.790-56.423-40.886Q-56.313-40.981-56.173-40.981Q-56.040-40.981-55.932-40.884Q-55.825-40.787-55.825-40.653L-55.825-40.605Q-55.825-40.585-55.826-40.578Q-55.828-40.571-55.831-40.564Q-55.691-40.540-55.418-40.540Q-55.110-40.540-54.950-40.798Q-54.789-41.057-54.789-41.374L-54.789-44.167L-55.753-44.167Q-55.927-44.187-55.971-44.379L-55.971-44.454Q-55.927-44.639-55.753-44.659L-54.444-44.659Q-54.273-44.639-54.228-44.454L-54.228-41.327Q-54.228-41.002-54.387-40.704Q-54.546-40.407-54.823-40.229Q-55.100-40.052-55.425-40.052Q-55.640-40.052-55.804-40.062Q-55.968-40.072-56.141-40.127Q-56.313-40.182-56.423-40.296Q-56.532-40.411-56.532-40.605M-55.011-45.514L-55.011-45.561Q-55.011-45.712-54.891-45.818Q-54.772-45.924-54.621-45.924Q-54.468-45.924-54.348-45.818Q-54.228-45.712-54.228-45.561L-54.228-45.514Q-54.228-45.360-54.348-45.254Q-54.468-45.148-54.621-45.148Q-54.772-45.148-54.891-45.254Q-55.011-45.360-55.011-45.514M-53.090-41.849L-53.090-41.928Q-53.053-42.109-52.871-42.130L-52.502-42.130L-52.502-44.167L-52.871-44.167Q-53.053-44.187-53.090-44.379L-53.090-44.454Q-53.049-44.639-52.871-44.659L-52.157-44.659Q-51.986-44.639-51.942-44.454L-51.942-44.379L-51.949-44.358Q-51.750-44.516-51.511-44.604Q-51.272-44.693-51.015-44.693Q-50.711-44.693-50.503-44.570Q-50.294-44.447-50.193-44.222Q-50.093-43.996-50.093-43.685L-50.093-42.130L-49.720-42.130Q-49.539-42.109-49.505-41.928L-49.505-41.849Q-49.539-41.662-49.720-41.641L-50.940-41.641Q-51.111-41.662-51.156-41.849L-51.156-41.928Q-51.111-42.113-50.940-42.130L-50.653-42.130L-50.653-43.658Q-50.653-43.928-50.732-44.066Q-50.810-44.204-51.067-44.204Q-51.303-44.204-51.502-44.090Q-51.702-43.975-51.822-43.776Q-51.942-43.576-51.942-43.343L-51.942-42.130L-51.569-42.130Q-51.388-42.109-51.354-41.928L-51.354-41.849Q-51.388-41.662-51.569-41.641L-52.871-41.641Q-53.053-41.662-53.090-41.849M-46.364-42.943L-48.500-42.943Q-48.452-42.701-48.279-42.506Q-48.107-42.311-47.864-42.203Q-47.621-42.096-47.372-42.096Q-46.958-42.096-46.763-42.349Q-46.757-42.359-46.707-42.451Q-46.658-42.543-46.615-42.581Q-46.572-42.619-46.490-42.629L-46.364-42.629Q-46.196-42.612-46.145-42.424L-46.145-42.376Q-46.203-42.113-46.405-41.940Q-46.606-41.767-46.880-41.687Q-47.153-41.607-47.420-41.607Q-47.844-41.607-48.228-41.807Q-48.613-42.007-48.847-42.357Q-49.081-42.707-49.081-43.138L-49.081-43.189Q-49.081-43.599-48.866-43.952Q-48.650-44.304-48.293-44.509Q-47.936-44.714-47.526-44.714Q-47.085-44.714-46.775-44.519Q-46.466-44.324-46.305-43.984Q-46.145-43.644-46.145-43.203L-46.145-43.152Q-46.196-42.964-46.364-42.943M-48.493-43.425L-46.719-43.425Q-46.760-43.784-46.969-44.005Q-47.177-44.225-47.526-44.225Q-47.871-44.225-48.139-43.996Q-48.408-43.767-48.493-43.425\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(125.88 36.282)\">\u003Cpath d=\"M-56.559-42.557Q-56.559-42.711-56.457-42.817Q-56.354-42.923-56.200-42.923Q-56.129-42.923-56.062-42.895Q-55.995-42.868-55.951-42.824Q-55.907-42.779-55.879-42.709Q-55.852-42.639-55.852-42.571Q-55.852-42.454-55.924-42.355Q-55.688-42.061-54.997-42.061Q-54.625-42.061-54.326-42.294Q-54.027-42.526-54.027-42.889Q-54.027-43.128-54.172-43.319Q-54.317-43.511-54.544-43.608Q-54.772-43.705-55.011-43.705L-55.418-43.705Q-55.602-43.726-55.630-43.917L-55.630-43.993Q-55.602-44.170-55.418-44.198L-54.956-44.232Q-54.768-44.232-54.601-44.339Q-54.433-44.447-54.334-44.625Q-54.235-44.803-54.235-44.987Q-54.235-45.226-54.483-45.361Q-54.731-45.496-54.997-45.496Q-55.490-45.496-55.698-45.329Q-55.643-45.230-55.643-45.134Q-55.643-44.984-55.742-44.885Q-55.842-44.786-55.992-44.786Q-56.146-44.786-56.247-44.893Q-56.347-45.001-56.347-45.148Q-56.347-45.609-55.934-45.799Q-55.520-45.989-54.997-45.989Q-54.700-45.989-54.389-45.874Q-54.078-45.760-53.876-45.534Q-53.675-45.308-53.675-44.987Q-53.675-44.686-53.822-44.420Q-53.969-44.153-54.228-43.979Q-53.904-43.822-53.685-43.528Q-53.466-43.234-53.466-42.889Q-53.466-42.499-53.688-42.200Q-53.910-41.901-54.263-41.737Q-54.615-41.573-54.997-41.573Q-55.247-41.573-55.513-41.620Q-55.780-41.668-56.021-41.779Q-56.262-41.891-56.411-42.085Q-56.559-42.280-56.559-42.557\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.25 36.282)\">\u003Cpath d=\"M-56.494-41.849L-56.494-41.914Q-56.467-42.061-56.378-42.102L-55.250-43.036Q-54.960-43.278-54.801-43.412Q-54.642-43.545-54.471-43.738Q-54.300-43.931-54.194-44.150Q-54.088-44.369-54.088-44.601Q-54.088-44.885-54.242-45.090Q-54.396-45.295-54.640-45.396Q-54.885-45.496-55.165-45.496Q-55.390-45.496-55.590-45.389Q-55.790-45.281-55.879-45.093Q-55.790-44.977-55.790-44.847Q-55.790-44.707-55.895-44.599Q-55.999-44.492-56.139-44.492Q-56.293-44.492-56.394-44.601Q-56.494-44.710-56.494-44.861Q-56.494-45.117-56.377-45.329Q-56.259-45.541-56.050-45.691Q-55.842-45.842-55.607-45.915Q-55.373-45.989-55.117-45.989Q-54.697-45.989-54.333-45.823Q-53.969-45.657-53.748-45.341Q-53.528-45.025-53.528-44.601Q-53.528-44.300-53.644-44.035Q-53.760-43.770-53.957-43.543Q-54.153-43.316-54.423-43.087Q-54.693-42.858-54.878-42.704L-55.585-42.130L-54.088-42.130L-54.088-42.256Q-54.044-42.441-53.869-42.461L-53.746-42.461Q-53.572-42.444-53.528-42.256L-53.528-41.849Q-53.572-41.662-53.746-41.641L-56.279-41.641Q-56.450-41.658-56.494-41.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 36.282)\">\u003Cpath d=\"M-56.118-41.849L-56.118-41.928Q-56.074-42.109-55.900-42.130L-55.185-42.130L-55.185-44.915Q-55.517-44.645-55.913-44.645Q-56.115-44.645-56.159-44.847L-56.159-44.926Q-56.115-45.114-55.944-45.134Q-55.657-45.134-55.435-45.343Q-55.213-45.551-55.090-45.855Q-55.028-45.968-54.891-45.989L-54.844-45.989Q-54.673-45.972-54.628-45.784L-54.628-42.130L-53.914-42.130Q-53.740-42.109-53.695-41.928L-53.695-41.849Q-53.740-41.662-53.914-41.641L-55.900-41.641Q-56.074-41.662-56.118-41.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(262.453 36.282)\">\u003Cpath d=\"M-55.011-41.573Q-55.390-41.573-55.681-41.781Q-55.971-41.990-56.165-42.330Q-56.358-42.670-56.452-43.053Q-56.546-43.435-56.546-43.784Q-56.546-44.126-56.450-44.514Q-56.354-44.902-56.165-45.235Q-55.975-45.568-55.683-45.778Q-55.390-45.989-55.011-45.989Q-54.526-45.989-54.175-45.640Q-53.825-45.291-53.652-44.779Q-53.480-44.266-53.480-43.784Q-53.480-43.299-53.652-42.784Q-53.825-42.270-54.175-41.921Q-54.526-41.573-55.011-41.573M-55.011-42.061Q-54.748-42.061-54.558-42.251Q-54.368-42.441-54.257-42.728Q-54.146-43.015-54.093-43.318Q-54.040-43.620-54.040-43.866Q-54.040-44.085-54.095-44.370Q-54.150-44.656-54.264-44.910Q-54.379-45.165-54.565-45.331Q-54.751-45.496-55.011-45.496Q-55.339-45.496-55.560-45.223Q-55.780-44.950-55.883-44.570Q-55.985-44.191-55.985-43.866Q-55.985-43.517-55.886-43.097Q-55.787-42.677-55.570-42.369Q-55.353-42.061-55.011-42.061\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(293.75 36.282)\">\u003Cpath d=\"M-55.011-41.573Q-55.390-41.573-55.681-41.781Q-55.971-41.990-56.165-42.330Q-56.358-42.670-56.452-43.053Q-56.546-43.435-56.546-43.784Q-56.546-44.126-56.450-44.514Q-56.354-44.902-56.165-45.235Q-55.975-45.568-55.683-45.778Q-55.390-45.989-55.011-45.989Q-54.526-45.989-54.175-45.640Q-53.825-45.291-53.652-44.779Q-53.480-44.266-53.480-43.784Q-53.480-43.299-53.652-42.784Q-53.825-42.270-54.175-41.921Q-54.526-41.573-55.011-41.573M-55.011-42.061Q-54.748-42.061-54.558-42.251Q-54.368-42.441-54.257-42.728Q-54.146-43.015-54.093-43.318Q-54.040-43.620-54.040-43.866Q-54.040-44.085-54.095-44.370Q-54.150-44.656-54.264-44.910Q-54.379-45.165-54.565-45.331Q-54.751-45.496-55.011-45.496Q-55.339-45.496-55.560-45.223Q-55.780-44.950-55.883-44.570Q-55.985-44.191-55.985-43.866Q-55.985-43.517-55.886-43.097Q-55.787-42.677-55.570-42.369Q-55.353-42.061-55.011-42.061M-52.926-41.849L-52.926-41.928Q-52.892-42.109-52.711-42.130L-52.355-42.130L-51.542-43.196L-52.304-44.167L-52.670-44.167Q-52.841-44.184-52.885-44.379L-52.885-44.454Q-52.841-44.639-52.670-44.659L-51.655-44.659Q-51.480-44.639-51.436-44.454L-51.436-44.379Q-51.480-44.187-51.655-44.167L-51.750-44.167L-51.316-43.593L-50.899-44.167L-51.002-44.167Q-51.176-44.187-51.221-44.379L-51.221-44.454Q-51.176-44.639-51.002-44.659L-49.987-44.659Q-49.816-44.642-49.771-44.454L-49.771-44.379Q-49.816-44.187-49.987-44.167L-50.346-44.167L-51.087-43.196L-50.246-42.130L-49.891-42.130Q-49.717-42.109-49.672-41.928L-49.672-41.849Q-49.706-41.662-49.891-41.641L-50.899-41.641Q-51.080-41.662-51.115-41.849L-51.115-41.928Q-51.080-42.109-50.899-42.130L-50.786-42.130L-51.316-42.878L-51.829-42.130L-51.702-42.130Q-51.521-42.109-51.487-41.928L-51.487-41.849Q-51.521-41.662-51.702-41.641L-52.711-41.641Q-52.882-41.658-52.926-41.849M-48.688-41.849L-48.688-41.928Q-48.643-42.109-48.469-42.130L-47.755-42.130L-47.755-44.915Q-48.086-44.645-48.483-44.645Q-48.684-44.645-48.729-44.847L-48.729-44.926Q-48.684-45.114-48.513-45.134Q-48.226-45.134-48.004-45.343Q-47.782-45.551-47.659-45.855Q-47.597-45.968-47.461-45.989L-47.413-45.989Q-47.242-45.972-47.198-45.784L-47.198-42.130L-46.483-42.130Q-46.309-42.109-46.264-41.928L-46.264-41.849Q-46.309-41.662-46.483-41.641L-48.469-41.641Q-48.643-41.662-48.688-41.849M-42.648-42.943L-44.784-42.943Q-44.737-42.701-44.564-42.506Q-44.391-42.311-44.149-42.203Q-43.906-42.096-43.657-42.096Q-43.243-42.096-43.048-42.349Q-43.041-42.359-42.992-42.451Q-42.942-42.543-42.899-42.581Q-42.857-42.619-42.775-42.629L-42.648-42.629Q-42.481-42.612-42.429-42.424L-42.429-42.376Q-42.488-42.113-42.689-41.940Q-42.891-41.767-43.164-41.687Q-43.438-41.607-43.704-41.607Q-44.128-41.607-44.513-41.807Q-44.897-42.007-45.131-42.357Q-45.366-42.707-45.366-43.138L-45.366-43.189Q-45.366-43.599-45.150-43.952Q-44.935-44.304-44.578-44.509Q-44.221-44.714-43.810-44.714Q-43.369-44.714-43.060-44.519Q-42.751-44.324-42.590-43.984Q-42.429-43.644-42.429-43.203L-42.429-43.152Q-42.481-42.964-42.648-42.943M-44.778-43.425L-43.004-43.425Q-43.045-43.784-43.253-44.005Q-43.462-44.225-43.810-44.225Q-44.156-44.225-44.424-43.996Q-44.692-43.767-44.778-43.425\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 1.038h367.04\"\u002F>\u003Cg transform=\"translate(-2.157 53.354)\">\u003Cpath d=\"M-55.698-41.829L-55.698-41.880Q-55.698-42.355-55.606-42.834Q-55.513-43.312-55.334-43.770Q-55.155-44.228-54.895-44.647Q-54.635-45.066-54.304-45.428L-55.999-45.428L-55.999-45.308Q-56.043-45.120-56.218-45.100L-56.341-45.100Q-56.515-45.120-56.559-45.308L-56.559-45.828Q-56.515-46.013-56.341-46.030L-56.218-46.030Q-56.098-46.019-56.033-45.917L-53.681-45.917Q-53.511-45.896-53.466-45.715L-53.466-45.637Q-53.476-45.558-53.514-45.514Q-53.743-45.288-53.945-45.056Q-54.146-44.823-54.288-44.620Q-54.430-44.416-54.568-44.155Q-54.707-43.893-54.823-43.586Q-54.977-43.172-55.057-42.721Q-55.138-42.270-55.138-41.829Q-55.148-41.720-55.223-41.651Q-55.298-41.583-55.404-41.573Q-55.524-41.573-55.606-41.641Q-55.688-41.709-55.698-41.829\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 52.576)\">\u003Cpath d=\"M-56.512-42.615Q-56.512-43.005-56.149-43.230Q-55.787-43.456-55.314-43.543Q-54.840-43.630-54.396-43.637Q-54.396-43.825-54.514-43.958Q-54.632-44.092-54.813-44.158Q-54.994-44.225-55.179-44.225Q-55.479-44.225-55.619-44.204L-55.619-44.153Q-55.619-44.006-55.724-43.905Q-55.828-43.805-55.971-43.805Q-56.125-43.805-56.226-43.912Q-56.327-44.020-56.327-44.167Q-56.327-44.522-55.994-44.618Q-55.660-44.714-55.172-44.714Q-54.936-44.714-54.702-44.645Q-54.468-44.577-54.271-44.445Q-54.075-44.314-53.955-44.121Q-53.835-43.928-53.835-43.685L-53.835-42.181Q-53.835-42.130-53.374-42.130Q-53.203-42.113-53.159-41.928L-53.159-41.849Q-53.203-41.662-53.374-41.641L-53.500-41.641Q-53.801-41.641-54.001-41.682Q-54.201-41.723-54.327-41.887Q-54.731-41.607-55.349-41.607Q-55.643-41.607-55.910-41.730Q-56.177-41.853-56.344-42.082Q-56.512-42.311-56.512-42.615M-55.951-42.608Q-55.951-42.369-55.739-42.232Q-55.527-42.096-55.278-42.096Q-55.086-42.096-54.883-42.147Q-54.679-42.198-54.538-42.319Q-54.396-42.441-54.396-42.636L-54.396-43.152Q-54.642-43.152-55.006-43.102Q-55.370-43.053-55.660-42.931Q-55.951-42.810-55.951-42.608M-51.521-41.607Q-51.928-41.607-52.248-41.826Q-52.567-42.044-52.747-42.398Q-52.926-42.752-52.926-43.152Q-52.926-43.453-52.817-43.733Q-52.707-44.013-52.504-44.232Q-52.301-44.451-52.034-44.572Q-51.767-44.693-51.456-44.693Q-51.009-44.693-50.653-44.413L-50.653-45.428L-51.022-45.428Q-51.207-45.449-51.241-45.637L-51.241-45.715Q-51.207-45.896-51.022-45.917L-50.311-45.917Q-50.137-45.896-50.093-45.715L-50.093-42.130L-49.720-42.130Q-49.539-42.109-49.505-41.928L-49.505-41.849Q-49.539-41.662-49.720-41.641L-50.434-41.641Q-50.609-41.662-50.653-41.849L-50.653-41.962Q-50.824-41.795-51.053-41.701Q-51.282-41.607-51.521-41.607M-51.487-42.096Q-51.173-42.096-50.952-42.331Q-50.732-42.567-50.653-42.895L-50.653-43.623Q-50.704-43.787-50.815-43.919Q-50.927-44.051-51.082-44.128Q-51.238-44.204-51.409-44.204Q-51.679-44.204-51.897-44.056Q-52.116-43.907-52.242-43.658Q-52.369-43.408-52.369-43.145Q-52.369-42.752-52.119-42.424Q-51.870-42.096-51.487-42.096M-47.806-41.607Q-48.213-41.607-48.532-41.826Q-48.852-42.044-49.031-42.398Q-49.211-42.752-49.211-43.152Q-49.211-43.453-49.101-43.733Q-48.992-44.013-48.789-44.232Q-48.585-44.451-48.319-44.572Q-48.052-44.693-47.741-44.693Q-47.293-44.693-46.938-44.413L-46.938-45.428L-47.307-45.428Q-47.492-45.449-47.526-45.637L-47.526-45.715Q-47.492-45.896-47.307-45.917L-46.596-45.917Q-46.422-45.896-46.377-45.715L-46.377-42.130L-46.005-42.130Q-45.824-42.109-45.789-41.928L-45.789-41.849Q-45.824-41.662-46.005-41.641L-46.719-41.641Q-46.893-41.662-46.938-41.849L-46.938-41.962Q-47.109-41.795-47.338-41.701Q-47.567-41.607-47.806-41.607M-47.772-42.096Q-47.457-42.096-47.237-42.331Q-47.016-42.567-46.938-42.895L-46.938-43.623Q-46.989-43.787-47.100-43.919Q-47.211-44.051-47.367-44.128Q-47.522-44.204-47.693-44.204Q-47.963-44.204-48.182-44.056Q-48.401-43.907-48.527-43.658Q-48.654-43.408-48.654-43.145Q-48.654-42.752-48.404-42.424Q-48.155-42.096-47.772-42.096M-43.698-40.291L-43.698-40.366Q-43.653-40.558-43.482-40.578L-43.075-40.578L-43.075-41.976Q-43.472-41.607-44.005-41.607Q-44.316-41.607-44.583-41.732Q-44.849-41.856-45.053-42.075Q-45.256-42.294-45.366-42.576Q-45.475-42.858-45.475-43.152Q-45.475-43.576-45.266-43.926Q-45.058-44.276-44.702-44.485Q-44.347-44.693-43.930-44.693Q-43.438-44.693-43.075-44.351L-43.075-44.492Q-43.031-44.676-42.857-44.693L-42.734-44.693Q-42.559-44.673-42.515-44.492L-42.515-40.578L-42.108-40.578Q-41.937-40.558-41.893-40.366L-41.893-40.291Q-41.937-40.106-42.108-40.086L-43.482-40.086Q-43.653-40.106-43.698-40.291M-43.964-42.096Q-43.639-42.096-43.398-42.318Q-43.158-42.540-43.075-42.858L-43.075-43.398Q-43.113-43.606-43.221-43.793Q-43.328-43.979-43.501-44.092Q-43.674-44.204-43.886-44.204Q-44.162-44.204-44.400-44.059Q-44.638-43.914-44.776-43.668Q-44.914-43.422-44.914-43.145Q-44.914-42.738-44.639-42.417Q-44.364-42.096-43.964-42.096\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(125.88 53.354)\">\u003Cpath d=\"M-55.872-42.410Q-55.770-42.232-55.565-42.147Q-55.360-42.061-55.131-42.061Q-54.871-42.061-54.632-42.174Q-54.392-42.287-54.240-42.494Q-54.088-42.701-54.088-42.964Q-54.088-43.186-54.192-43.398Q-54.297-43.610-54.485-43.738Q-54.673-43.866-54.909-43.866Q-55.438-43.866-55.732-43.586Q-55.801-43.511-55.848-43.470Q-55.896-43.429-55.971-43.418L-56.060-43.418Q-56.235-43.439-56.279-43.630L-56.279-45.715Q-56.235-45.896-56.060-45.917L-53.996-45.917Q-53.825-45.900-53.781-45.715L-53.781-45.637Q-53.825-45.449-53.996-45.428L-55.719-45.428L-55.719-44.181Q-55.363-44.358-54.909-44.358Q-54.533-44.358-54.213-44.169Q-53.893-43.979-53.711-43.656Q-53.528-43.333-53.528-42.964Q-53.528-42.550-53.758-42.236Q-53.989-41.921-54.360-41.747Q-54.731-41.573-55.131-41.573Q-55.353-41.573-55.596-41.638Q-55.838-41.703-56.043-41.839Q-56.248-41.976-56.371-42.181Q-56.494-42.386-56.494-42.636Q-56.494-42.783-56.394-42.890Q-56.293-42.998-56.139-42.998Q-56.067-42.998-56.006-42.972Q-55.944-42.947-55.895-42.899Q-55.845-42.851-55.818-42.784Q-55.790-42.718-55.790-42.649Q-55.790-42.509-55.872-42.410\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.25 53.354)\">\u003Cpath d=\"M-56.494-41.849L-56.494-41.914Q-56.467-42.061-56.378-42.102L-55.250-43.036Q-54.960-43.278-54.801-43.412Q-54.642-43.545-54.471-43.738Q-54.300-43.931-54.194-44.150Q-54.088-44.369-54.088-44.601Q-54.088-44.885-54.242-45.090Q-54.396-45.295-54.640-45.396Q-54.885-45.496-55.165-45.496Q-55.390-45.496-55.590-45.389Q-55.790-45.281-55.879-45.093Q-55.790-44.977-55.790-44.847Q-55.790-44.707-55.895-44.599Q-55.999-44.492-56.139-44.492Q-56.293-44.492-56.394-44.601Q-56.494-44.710-56.494-44.861Q-56.494-45.117-56.377-45.329Q-56.259-45.541-56.050-45.691Q-55.842-45.842-55.607-45.915Q-55.373-45.989-55.117-45.989Q-54.697-45.989-54.333-45.823Q-53.969-45.657-53.748-45.341Q-53.528-45.025-53.528-44.601Q-53.528-44.300-53.644-44.035Q-53.760-43.770-53.957-43.543Q-54.153-43.316-54.423-43.087Q-54.693-42.858-54.878-42.704L-55.585-42.130L-54.088-42.130L-54.088-42.256Q-54.044-42.441-53.869-42.461L-53.746-42.461Q-53.572-42.444-53.528-42.256L-53.528-41.849Q-53.572-41.662-53.746-41.641L-56.279-41.641Q-56.450-41.658-56.494-41.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 53.354)\">\u003Cpath d=\"M-56.118-41.849L-56.118-41.928Q-56.074-42.109-55.900-42.130L-55.185-42.130L-55.185-44.915Q-55.517-44.645-55.913-44.645Q-56.115-44.645-56.159-44.847L-56.159-44.926Q-56.115-45.114-55.944-45.134Q-55.657-45.134-55.435-45.343Q-55.213-45.551-55.090-45.855Q-55.028-45.968-54.891-45.989L-54.844-45.989Q-54.673-45.972-54.628-45.784L-54.628-42.130L-53.914-42.130Q-53.740-42.109-53.695-41.928L-53.695-41.849Q-53.740-41.662-53.914-41.641L-55.900-41.641Q-56.074-41.662-56.118-41.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(262.453 53.354)\">\u003Cpath d=\"M-55.011-41.573Q-55.390-41.573-55.681-41.781Q-55.971-41.990-56.165-42.330Q-56.358-42.670-56.452-43.053Q-56.546-43.435-56.546-43.784Q-56.546-44.126-56.450-44.514Q-56.354-44.902-56.165-45.235Q-55.975-45.568-55.683-45.778Q-55.390-45.989-55.011-45.989Q-54.526-45.989-54.175-45.640Q-53.825-45.291-53.652-44.779Q-53.480-44.266-53.480-43.784Q-53.480-43.299-53.652-42.784Q-53.825-42.270-54.175-41.921Q-54.526-41.573-55.011-41.573M-55.011-42.061Q-54.748-42.061-54.558-42.251Q-54.368-42.441-54.257-42.728Q-54.146-43.015-54.093-43.318Q-54.040-43.620-54.040-43.866Q-54.040-44.085-54.095-44.370Q-54.150-44.656-54.264-44.910Q-54.379-45.165-54.565-45.331Q-54.751-45.496-55.011-45.496Q-55.339-45.496-55.560-45.223Q-55.780-44.950-55.883-44.570Q-55.985-44.191-55.985-43.866Q-55.985-43.517-55.886-43.097Q-55.787-42.677-55.570-42.369Q-55.353-42.061-55.011-42.061\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(293.75 53.354)\">\u003Cpath d=\"M-55.011-41.573Q-55.390-41.573-55.681-41.781Q-55.971-41.990-56.165-42.330Q-56.358-42.670-56.452-43.053Q-56.546-43.435-56.546-43.784Q-56.546-44.126-56.450-44.514Q-56.354-44.902-56.165-45.235Q-55.975-45.568-55.683-45.778Q-55.390-45.989-55.011-45.989Q-54.526-45.989-54.175-45.640Q-53.825-45.291-53.652-44.779Q-53.480-44.266-53.480-43.784Q-53.480-43.299-53.652-42.784Q-53.825-42.270-54.175-41.921Q-54.526-41.573-55.011-41.573M-55.011-42.061Q-54.748-42.061-54.558-42.251Q-54.368-42.441-54.257-42.728Q-54.146-43.015-54.093-43.318Q-54.040-43.620-54.040-43.866Q-54.040-44.085-54.095-44.370Q-54.150-44.656-54.264-44.910Q-54.379-45.165-54.565-45.331Q-54.751-45.496-55.011-45.496Q-55.339-45.496-55.560-45.223Q-55.780-44.950-55.883-44.570Q-55.985-44.191-55.985-43.866Q-55.985-43.517-55.886-43.097Q-55.787-42.677-55.570-42.369Q-55.353-42.061-55.011-42.061M-52.926-41.849L-52.926-41.928Q-52.892-42.109-52.711-42.130L-52.355-42.130L-51.542-43.196L-52.304-44.167L-52.670-44.167Q-52.841-44.184-52.885-44.379L-52.885-44.454Q-52.841-44.639-52.670-44.659L-51.655-44.659Q-51.480-44.639-51.436-44.454L-51.436-44.379Q-51.480-44.187-51.655-44.167L-51.750-44.167L-51.316-43.593L-50.899-44.167L-51.002-44.167Q-51.176-44.187-51.221-44.379L-51.221-44.454Q-51.176-44.639-51.002-44.659L-49.987-44.659Q-49.816-44.642-49.771-44.454L-49.771-44.379Q-49.816-44.187-49.987-44.167L-50.346-44.167L-51.087-43.196L-50.246-42.130L-49.891-42.130Q-49.717-42.109-49.672-41.928L-49.672-41.849Q-49.706-41.662-49.891-41.641L-50.899-41.641Q-51.080-41.662-51.115-41.849L-51.115-41.928Q-51.080-42.109-50.899-42.130L-50.786-42.130L-51.316-42.878L-51.829-42.130L-51.702-42.130Q-51.521-42.109-51.487-41.928L-51.487-41.849Q-51.521-41.662-51.702-41.641L-52.711-41.641Q-52.882-41.658-52.926-41.849M-49.064-41.849L-49.064-41.914Q-49.036-42.061-48.948-42.102L-47.820-43.036Q-47.529-43.278-47.370-43.412Q-47.211-43.545-47.040-43.738Q-46.869-43.931-46.763-44.150Q-46.658-44.369-46.658-44.601Q-46.658-44.885-46.811-45.090Q-46.965-45.295-47.210-45.396Q-47.454-45.496-47.734-45.496Q-47.960-45.496-48.160-45.389Q-48.360-45.281-48.449-45.093Q-48.360-44.977-48.360-44.847Q-48.360-44.707-48.464-44.599Q-48.568-44.492-48.708-44.492Q-48.862-44.492-48.963-44.601Q-49.064-44.710-49.064-44.861Q-49.064-45.117-48.946-45.329Q-48.828-45.541-48.619-45.691Q-48.411-45.842-48.177-45.915Q-47.943-45.989-47.686-45.989Q-47.266-45.989-46.902-45.823Q-46.538-45.657-46.317-45.341Q-46.097-45.025-46.097-44.601Q-46.097-44.300-46.213-44.035Q-46.329-43.770-46.526-43.543Q-46.722-43.316-46.992-43.087Q-47.263-42.858-47.447-42.704L-48.155-42.130L-46.658-42.130L-46.658-42.256Q-46.613-42.441-46.439-42.461L-46.316-42.461Q-46.141-42.444-46.097-42.256L-46.097-41.849Q-46.141-41.662-46.316-41.641L-48.848-41.641Q-49.019-41.658-49.064-41.849M-43.865-41.573Q-44.244-41.573-44.535-41.781Q-44.825-41.990-45.019-42.330Q-45.212-42.670-45.306-43.053Q-45.400-43.435-45.400-43.784Q-45.400-44.126-45.304-44.514Q-45.208-44.902-45.019-45.235Q-44.829-45.568-44.537-45.778Q-44.244-45.989-43.865-45.989Q-43.380-45.989-43.029-45.640Q-42.679-45.291-42.506-44.779Q-42.334-44.266-42.334-43.784Q-42.334-43.299-42.506-42.784Q-42.679-42.270-43.029-41.921Q-43.380-41.573-43.865-41.573M-43.865-42.061Q-43.602-42.061-43.412-42.251Q-43.222-42.441-43.111-42.728Q-43-43.015-42.947-43.318Q-42.894-43.620-42.894-43.866Q-42.894-44.085-42.949-44.370Q-43.004-44.656-43.118-44.910Q-43.233-45.165-43.419-45.331Q-43.605-45.496-43.865-45.496Q-44.193-45.496-44.414-45.223Q-44.634-44.950-44.737-44.570Q-44.839-44.191-44.839-43.866Q-44.839-43.517-44.740-43.097Q-44.641-42.677-44.424-42.369Q-44.207-42.061-43.865-42.061\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 18.11h367.04\"\u002F>\u003Cg transform=\"translate(-2.157 70.425)\">\u003Cpath d=\"M-56.559-42.878Q-56.559-43.128-56.423-43.350Q-56.286-43.572-56.067-43.724Q-55.848-43.876-55.599-43.952Q-55.807-44.016-56.006-44.141Q-56.204-44.266-56.329-44.449Q-56.453-44.632-56.453-44.847Q-56.453-45.196-56.238-45.454Q-56.023-45.712-55.688-45.850Q-55.353-45.989-55.011-45.989Q-54.669-45.989-54.334-45.850Q-53.999-45.712-53.784-45.450Q-53.569-45.189-53.569-44.847Q-53.569-44.632-53.693-44.451Q-53.818-44.269-54.016-44.143Q-54.215-44.016-54.423-43.952Q-54.027-43.832-53.746-43.547Q-53.466-43.261-53.466-42.878Q-53.466-42.495-53.692-42.195Q-53.917-41.894-54.276-41.733Q-54.635-41.573-55.011-41.573Q-55.387-41.573-55.746-41.732Q-56.105-41.891-56.332-42.191Q-56.559-42.492-56.559-42.878M-55.999-42.878Q-55.999-42.639-55.854-42.451Q-55.708-42.263-55.479-42.162Q-55.250-42.061-55.011-42.061Q-54.772-42.061-54.544-42.162Q-54.317-42.263-54.172-42.453Q-54.027-42.642-54.027-42.878Q-54.027-43.121-54.172-43.311Q-54.317-43.500-54.544-43.603Q-54.772-43.705-55.011-43.705Q-55.250-43.705-55.479-43.603Q-55.708-43.500-55.854-43.312Q-55.999-43.124-55.999-42.878M-55.893-44.847Q-55.893-44.639-55.756-44.492Q-55.619-44.345-55.413-44.271Q-55.206-44.198-55.011-44.198Q-54.820-44.198-54.611-44.271Q-54.403-44.345-54.266-44.493Q-54.129-44.642-54.129-44.847Q-54.129-45.052-54.266-45.201Q-54.403-45.349-54.611-45.423Q-54.820-45.496-55.011-45.496Q-55.206-45.496-55.413-45.423Q-55.619-45.349-55.756-45.203Q-55.893-45.056-55.893-44.847\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 69.648)\">\u003Cpath d=\"M-56.354-41.815L-56.354-42.615Q-56.330-42.796-56.146-42.817L-55.999-42.817Q-55.855-42.796-55.804-42.656Q-55.626-42.096-54.991-42.096Q-54.809-42.096-54.609-42.126Q-54.409-42.157-54.263-42.258Q-54.116-42.359-54.116-42.537Q-54.116-42.721-54.310-42.820Q-54.505-42.919-54.744-42.957L-55.356-43.056Q-56.354-43.241-56.354-43.873Q-56.354-44.126-56.228-44.292Q-56.101-44.457-55.891-44.551Q-55.681-44.645-55.457-44.680Q-55.233-44.714-54.991-44.714Q-54.772-44.714-54.603-44.688Q-54.433-44.662-54.290-44.594Q-54.221-44.697-54.109-44.714L-54.040-44.714Q-53.955-44.703-53.900-44.649Q-53.846-44.594-53.835-44.512L-53.835-43.893Q-53.846-43.811-53.900-43.753Q-53.955-43.695-54.040-43.685L-54.187-43.685Q-54.269-43.695-54.327-43.753Q-54.386-43.811-54.396-43.893Q-54.396-44.225-55.004-44.225Q-55.308-44.225-55.587-44.153Q-55.866-44.081-55.866-43.866Q-55.866-43.634-55.278-43.538L-54.662-43.432Q-54.239-43.360-53.933-43.143Q-53.627-42.926-53.627-42.537Q-53.627-42.195-53.834-41.983Q-54.040-41.771-54.346-41.689Q-54.652-41.607-54.991-41.607Q-55.496-41.607-55.845-41.829Q-55.907-41.720-55.949-41.670Q-55.992-41.620-56.084-41.607L-56.146-41.607Q-56.334-41.627-56.354-41.815M-52.502-42.390L-52.502-44.167L-52.871-44.167Q-53.053-44.187-53.090-44.379L-53.090-44.454Q-53.049-44.639-52.871-44.659L-52.157-44.659Q-51.986-44.639-51.942-44.454L-51.942-42.417Q-51.942-42.212-51.793-42.154Q-51.644-42.096-51.395-42.096Q-51.214-42.096-51.043-42.162Q-50.872-42.229-50.763-42.360Q-50.653-42.492-50.653-42.677L-50.653-44.167L-51.022-44.167Q-51.207-44.187-51.241-44.379L-51.241-44.454Q-51.207-44.639-51.022-44.659L-50.311-44.659Q-50.137-44.639-50.093-44.454L-50.093-42.130L-49.720-42.130Q-49.539-42.109-49.505-41.928L-49.505-41.849Q-49.539-41.662-49.720-41.641L-50.434-41.641Q-50.609-41.662-50.653-41.836Q-51.005-41.607-51.450-41.607Q-51.655-41.607-51.843-41.643Q-52.031-41.679-52.176-41.767Q-52.321-41.856-52.412-42.012Q-52.502-42.167-52.502-42.390M-48.787-41.849L-48.787-45.428L-49.156-45.428Q-49.337-45.449-49.375-45.637L-49.375-45.715Q-49.337-45.896-49.156-45.917L-48.442-45.917Q-48.271-45.896-48.226-45.715L-48.226-44.392Q-48.042-44.539-47.811-44.616Q-47.580-44.693-47.345-44.693Q-47.047-44.693-46.787-44.567Q-46.528-44.440-46.340-44.220Q-46.152-43.999-46.051-43.726Q-45.950-43.453-45.950-43.152Q-45.950-42.745-46.148-42.386Q-46.346-42.027-46.685-41.817Q-47.023-41.607-47.433-41.607Q-47.888-41.607-48.226-41.928L-48.226-41.849Q-48.271-41.658-48.442-41.641L-48.568-41.641Q-48.736-41.662-48.787-41.849M-47.471-42.096Q-47.201-42.096-46.982-42.244Q-46.763-42.393-46.637-42.639Q-46.511-42.885-46.511-43.152Q-46.511-43.405-46.620-43.649Q-46.729-43.893-46.933-44.049Q-47.136-44.204-47.399-44.204Q-47.679-44.204-47.909-44.042Q-48.138-43.880-48.226-43.617L-48.226-42.871Q-48.148-42.550-47.955-42.323Q-47.762-42.096-47.471-42.096M-43.698-40.291L-43.698-40.366Q-43.653-40.558-43.482-40.578L-43.075-40.578L-43.075-41.976Q-43.472-41.607-44.005-41.607Q-44.316-41.607-44.583-41.732Q-44.849-41.856-45.053-42.075Q-45.256-42.294-45.366-42.576Q-45.475-42.858-45.475-43.152Q-45.475-43.576-45.266-43.926Q-45.058-44.276-44.702-44.485Q-44.347-44.693-43.930-44.693Q-43.438-44.693-43.075-44.351L-43.075-44.492Q-43.031-44.676-42.857-44.693L-42.734-44.693Q-42.559-44.673-42.515-44.492L-42.515-40.578L-42.108-40.578Q-41.937-40.558-41.893-40.366L-41.893-40.291Q-41.937-40.106-42.108-40.086L-43.482-40.086Q-43.653-40.106-43.698-40.291M-43.964-42.096Q-43.639-42.096-43.398-42.318Q-43.158-42.540-43.075-42.858L-43.075-43.398Q-43.113-43.606-43.221-43.793Q-43.328-43.979-43.501-44.092Q-43.674-44.204-43.886-44.204Q-44.162-44.204-44.400-44.059Q-44.638-43.914-44.776-43.668Q-44.914-43.422-44.914-43.145Q-44.914-42.738-44.639-42.417Q-44.364-42.096-43.964-42.096\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(125.88 70.425)\">\u003Cpath d=\"M-55.872-42.410Q-55.770-42.232-55.565-42.147Q-55.360-42.061-55.131-42.061Q-54.871-42.061-54.632-42.174Q-54.392-42.287-54.240-42.494Q-54.088-42.701-54.088-42.964Q-54.088-43.186-54.192-43.398Q-54.297-43.610-54.485-43.738Q-54.673-43.866-54.909-43.866Q-55.438-43.866-55.732-43.586Q-55.801-43.511-55.848-43.470Q-55.896-43.429-55.971-43.418L-56.060-43.418Q-56.235-43.439-56.279-43.630L-56.279-45.715Q-56.235-45.896-56.060-45.917L-53.996-45.917Q-53.825-45.900-53.781-45.715L-53.781-45.637Q-53.825-45.449-53.996-45.428L-55.719-45.428L-55.719-44.181Q-55.363-44.358-54.909-44.358Q-54.533-44.358-54.213-44.169Q-53.893-43.979-53.711-43.656Q-53.528-43.333-53.528-42.964Q-53.528-42.550-53.758-42.236Q-53.989-41.921-54.360-41.747Q-54.731-41.573-55.131-41.573Q-55.353-41.573-55.596-41.638Q-55.838-41.703-56.043-41.839Q-56.248-41.976-56.371-42.181Q-56.494-42.386-56.494-42.636Q-56.494-42.783-56.394-42.890Q-56.293-42.998-56.139-42.998Q-56.067-42.998-56.006-42.972Q-55.944-42.947-55.895-42.899Q-55.845-42.851-55.818-42.784Q-55.790-42.718-55.790-42.649Q-55.790-42.509-55.872-42.410\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.25 70.425)\">\u003Cpath d=\"M-56.118-41.849L-56.118-41.928Q-56.074-42.109-55.900-42.130L-55.185-42.130L-55.185-44.915Q-55.517-44.645-55.913-44.645Q-56.115-44.645-56.159-44.847L-56.159-44.926Q-56.115-45.114-55.944-45.134Q-55.657-45.134-55.435-45.343Q-55.213-45.551-55.090-45.855Q-55.028-45.968-54.891-45.989L-54.844-45.989Q-54.673-45.972-54.628-45.784L-54.628-42.130L-53.914-42.130Q-53.740-42.109-53.695-41.928L-53.695-41.849Q-53.740-41.662-53.914-41.641L-55.900-41.641Q-56.074-41.662-56.118-41.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 70.425)\">\u003Cpath d=\"M-56.118-41.849L-56.118-41.928Q-56.074-42.109-55.900-42.130L-55.185-42.130L-55.185-44.915Q-55.517-44.645-55.913-44.645Q-56.115-44.645-56.159-44.847L-56.159-44.926Q-56.115-45.114-55.944-45.134Q-55.657-45.134-55.435-45.343Q-55.213-45.551-55.090-45.855Q-55.028-45.968-54.891-45.989L-54.844-45.989Q-54.673-45.972-54.628-45.784L-54.628-42.130L-53.914-42.130Q-53.740-42.109-53.695-41.928L-53.695-41.849Q-53.740-41.662-53.914-41.641L-55.900-41.641Q-56.074-41.662-56.118-41.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(262.453 70.425)\">\u003Cpath d=\"M-55.011-41.573Q-55.390-41.573-55.681-41.781Q-55.971-41.990-56.165-42.330Q-56.358-42.670-56.452-43.053Q-56.546-43.435-56.546-43.784Q-56.546-44.126-56.450-44.514Q-56.354-44.902-56.165-45.235Q-55.975-45.568-55.683-45.778Q-55.390-45.989-55.011-45.989Q-54.526-45.989-54.175-45.640Q-53.825-45.291-53.652-44.779Q-53.480-44.266-53.480-43.784Q-53.480-43.299-53.652-42.784Q-53.825-42.270-54.175-41.921Q-54.526-41.573-55.011-41.573M-55.011-42.061Q-54.748-42.061-54.558-42.251Q-54.368-42.441-54.257-42.728Q-54.146-43.015-54.093-43.318Q-54.040-43.620-54.040-43.866Q-54.040-44.085-54.095-44.370Q-54.150-44.656-54.264-44.910Q-54.379-45.165-54.565-45.331Q-54.751-45.496-55.011-45.496Q-55.339-45.496-55.560-45.223Q-55.780-44.950-55.883-44.570Q-55.985-44.191-55.985-43.866Q-55.985-43.517-55.886-43.097Q-55.787-42.677-55.570-42.369Q-55.353-42.061-55.011-42.061\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(293.75 70.425)\">\u003Cpath d=\"M-55.011-41.573Q-55.390-41.573-55.681-41.781Q-55.971-41.990-56.165-42.330Q-56.358-42.670-56.452-43.053Q-56.546-43.435-56.546-43.784Q-56.546-44.126-56.450-44.514Q-56.354-44.902-56.165-45.235Q-55.975-45.568-55.683-45.778Q-55.390-45.989-55.011-45.989Q-54.526-45.989-54.175-45.640Q-53.825-45.291-53.652-44.779Q-53.480-44.266-53.480-43.784Q-53.480-43.299-53.652-42.784Q-53.825-42.270-54.175-41.921Q-54.526-41.573-55.011-41.573M-55.011-42.061Q-54.748-42.061-54.558-42.251Q-54.368-42.441-54.257-42.728Q-54.146-43.015-54.093-43.318Q-54.040-43.620-54.040-43.866Q-54.040-44.085-54.095-44.370Q-54.150-44.656-54.264-44.910Q-54.379-45.165-54.565-45.331Q-54.751-45.496-55.011-45.496Q-55.339-45.496-55.560-45.223Q-55.780-44.950-55.883-44.570Q-55.985-44.191-55.985-43.866Q-55.985-43.517-55.886-43.097Q-55.787-42.677-55.570-42.369Q-55.353-42.061-55.011-42.061M-52.926-41.849L-52.926-41.928Q-52.892-42.109-52.711-42.130L-52.355-42.130L-51.542-43.196L-52.304-44.167L-52.670-44.167Q-52.841-44.184-52.885-44.379L-52.885-44.454Q-52.841-44.639-52.670-44.659L-51.655-44.659Q-51.480-44.639-51.436-44.454L-51.436-44.379Q-51.480-44.187-51.655-44.167L-51.750-44.167L-51.316-43.593L-50.899-44.167L-51.002-44.167Q-51.176-44.187-51.221-44.379L-51.221-44.454Q-51.176-44.639-51.002-44.659L-49.987-44.659Q-49.816-44.642-49.771-44.454L-49.771-44.379Q-49.816-44.187-49.987-44.167L-50.346-44.167L-51.087-43.196L-50.246-42.130L-49.891-42.130Q-49.717-42.109-49.672-41.928L-49.672-41.849Q-49.706-41.662-49.891-41.641L-50.899-41.641Q-51.080-41.662-51.115-41.849L-51.115-41.928Q-51.080-42.109-50.899-42.130L-50.786-42.130L-51.316-42.878L-51.829-42.130L-51.702-42.130Q-51.521-42.109-51.487-41.928L-51.487-41.849Q-51.521-41.662-51.702-41.641L-52.711-41.641Q-52.882-41.658-52.926-41.849M-49.064-41.849L-49.064-41.914Q-49.036-42.061-48.948-42.102L-47.820-43.036Q-47.529-43.278-47.370-43.412Q-47.211-43.545-47.040-43.738Q-46.869-43.931-46.763-44.150Q-46.658-44.369-46.658-44.601Q-46.658-44.885-46.811-45.090Q-46.965-45.295-47.210-45.396Q-47.454-45.496-47.734-45.496Q-47.960-45.496-48.160-45.389Q-48.360-45.281-48.449-45.093Q-48.360-44.977-48.360-44.847Q-48.360-44.707-48.464-44.599Q-48.568-44.492-48.708-44.492Q-48.862-44.492-48.963-44.601Q-49.064-44.710-49.064-44.861Q-49.064-45.117-48.946-45.329Q-48.828-45.541-48.619-45.691Q-48.411-45.842-48.177-45.915Q-47.943-45.989-47.686-45.989Q-47.266-45.989-46.902-45.823Q-46.538-45.657-46.317-45.341Q-46.097-45.025-46.097-44.601Q-46.097-44.300-46.213-44.035Q-46.329-43.770-46.526-43.543Q-46.722-43.316-46.992-43.087Q-47.263-42.858-47.447-42.704L-48.155-42.130L-46.658-42.130L-46.658-42.256Q-46.613-42.441-46.439-42.461L-46.316-42.461Q-46.141-42.444-46.097-42.256L-46.097-41.849Q-46.141-41.662-46.316-41.641L-48.848-41.641Q-49.019-41.658-49.064-41.849M-45.348-41.849L-45.348-41.914Q-45.321-42.061-45.232-42.102L-44.104-43.036Q-43.814-43.278-43.655-43.412Q-43.496-43.545-43.325-43.738Q-43.154-43.931-43.048-44.150Q-42.942-44.369-42.942-44.601Q-42.942-44.885-43.096-45.090Q-43.250-45.295-43.494-45.396Q-43.739-45.496-44.019-45.496Q-44.244-45.496-44.444-45.389Q-44.644-45.281-44.733-45.093Q-44.644-44.977-44.644-44.847Q-44.644-44.707-44.749-44.599Q-44.853-44.492-44.993-44.492Q-45.147-44.492-45.248-44.601Q-45.348-44.710-45.348-44.861Q-45.348-45.117-45.231-45.329Q-45.113-45.541-44.904-45.691Q-44.696-45.842-44.461-45.915Q-44.227-45.989-43.971-45.989Q-43.551-45.989-43.187-45.823Q-42.823-45.657-42.602-45.341Q-42.382-45.025-42.382-44.601Q-42.382-44.300-42.498-44.035Q-42.614-43.770-42.811-43.543Q-43.007-43.316-43.277-43.087Q-43.547-42.858-43.732-42.704L-44.439-42.130L-42.942-42.130L-42.942-42.256Q-42.898-42.441-42.723-42.461L-42.600-42.461Q-42.426-42.444-42.382-42.256L-42.382-41.849Q-42.426-41.662-42.600-41.641L-45.133-41.641Q-45.304-41.658-45.348-41.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 35.181h367.04\"\u002F>\u003Cg transform=\"translate(-2.157 87.497)\">\u003Cpath d=\"M-56.371-42.342Q-56.371-42.495-56.271-42.603Q-56.170-42.711-56.013-42.711Q-55.866-42.711-55.765-42.610Q-55.664-42.509-55.664-42.355Q-55.664-42.249-55.719-42.161Q-55.589-42.061-55.319-42.061Q-55.052-42.061-54.830-42.193Q-54.608-42.325-54.449-42.540Q-54.290-42.755-54.196-43.012Q-54.102-43.268-54.075-43.511Q-54.283-43.336-54.553-43.244Q-54.823-43.152-55.103-43.152Q-55.493-43.152-55.819-43.341Q-56.146-43.531-56.336-43.854Q-56.525-44.177-56.525-44.567Q-56.525-44.980-56.310-45.305Q-56.095-45.630-55.739-45.809Q-55.384-45.989-54.970-45.989Q-54.546-45.989-54.256-45.789Q-53.965-45.589-53.801-45.262Q-53.637-44.936-53.569-44.560Q-53.500-44.184-53.500-43.784Q-53.500-43.251-53.722-42.736Q-53.945-42.222-54.362-41.897Q-54.779-41.573-55.319-41.573Q-55.753-41.573-56.062-41.756Q-56.371-41.938-56.371-42.342M-55.055-43.644Q-54.717-43.644-54.423-43.844Q-54.129-44.044-54.129-44.365Q-54.129-44.399-54.143-44.468Q-54.157-44.536-54.157-44.567Q-54.157-44.577-54.150-44.604Q-54.143-44.632-54.143-44.639Q-54.198-44.857-54.302-45.050Q-54.406-45.244-54.575-45.370Q-54.744-45.496-54.970-45.496Q-55.384-45.496-55.674-45.233Q-55.965-44.970-55.965-44.567Q-55.965-44.321-55.845-44.105Q-55.725-43.890-55.517-43.767Q-55.308-43.644-55.055-43.644\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 86.72)\">\u003Cpath d=\"M-56.532-40.605L-56.532-40.653Q-56.532-40.790-56.423-40.886Q-56.313-40.981-56.173-40.981Q-56.040-40.981-55.932-40.884Q-55.825-40.787-55.825-40.653L-55.825-40.605Q-55.825-40.585-55.826-40.578Q-55.828-40.571-55.831-40.564Q-55.691-40.540-55.418-40.540Q-55.110-40.540-54.950-40.798Q-54.789-41.057-54.789-41.374L-54.789-44.167L-55.753-44.167Q-55.927-44.187-55.971-44.379L-55.971-44.454Q-55.927-44.639-55.753-44.659L-54.444-44.659Q-54.273-44.639-54.228-44.454L-54.228-41.327Q-54.228-41.002-54.387-40.704Q-54.546-40.407-54.823-40.229Q-55.100-40.052-55.425-40.052Q-55.640-40.052-55.804-40.062Q-55.968-40.072-56.141-40.127Q-56.313-40.182-56.423-40.296Q-56.532-40.411-56.532-40.605M-55.011-45.514L-55.011-45.561Q-55.011-45.712-54.891-45.818Q-54.772-45.924-54.621-45.924Q-54.468-45.924-54.348-45.818Q-54.228-45.712-54.228-45.561L-54.228-45.514Q-54.228-45.360-54.348-45.254Q-54.468-45.148-54.621-45.148Q-54.772-45.148-54.891-45.254Q-55.011-45.360-55.011-45.514M-53.090-41.849L-53.090-41.928Q-53.053-42.109-52.871-42.130L-52.502-42.130L-52.502-44.167L-52.871-44.167Q-53.053-44.187-53.090-44.379L-53.090-44.454Q-53.049-44.639-52.871-44.659L-52.157-44.659Q-51.986-44.639-51.942-44.454L-51.942-44.379L-51.949-44.358Q-51.750-44.516-51.511-44.604Q-51.272-44.693-51.015-44.693Q-50.711-44.693-50.503-44.570Q-50.294-44.447-50.193-44.222Q-50.093-43.996-50.093-43.685L-50.093-42.130L-49.720-42.130Q-49.539-42.109-49.505-41.928L-49.505-41.849Q-49.539-41.662-49.720-41.641L-50.940-41.641Q-51.111-41.662-51.156-41.849L-51.156-41.928Q-51.111-42.113-50.940-42.130L-50.653-42.130L-50.653-43.658Q-50.653-43.928-50.732-44.066Q-50.810-44.204-51.067-44.204Q-51.303-44.204-51.502-44.090Q-51.702-43.975-51.822-43.776Q-51.942-43.576-51.942-43.343L-51.942-42.130L-51.569-42.130Q-51.388-42.109-51.354-41.928L-51.354-41.849Q-51.388-41.662-51.569-41.641L-52.871-41.641Q-53.053-41.662-53.090-41.849M-46.364-42.943L-48.500-42.943Q-48.452-42.701-48.279-42.506Q-48.107-42.311-47.864-42.203Q-47.621-42.096-47.372-42.096Q-46.958-42.096-46.763-42.349Q-46.757-42.359-46.707-42.451Q-46.658-42.543-46.615-42.581Q-46.572-42.619-46.490-42.629L-46.364-42.629Q-46.196-42.612-46.145-42.424L-46.145-42.376Q-46.203-42.113-46.405-41.940Q-46.606-41.767-46.880-41.687Q-47.153-41.607-47.420-41.607Q-47.844-41.607-48.228-41.807Q-48.613-42.007-48.847-42.357Q-49.081-42.707-49.081-43.138L-49.081-43.189Q-49.081-43.599-48.866-43.952Q-48.650-44.304-48.293-44.509Q-47.936-44.714-47.526-44.714Q-47.085-44.714-46.775-44.519Q-46.466-44.324-46.305-43.984Q-46.145-43.644-46.145-43.203L-46.145-43.152Q-46.196-42.964-46.364-42.943M-48.493-43.425L-46.719-43.425Q-46.760-43.784-46.969-44.005Q-47.177-44.225-47.526-44.225Q-47.871-44.225-48.139-43.996Q-48.408-43.767-48.493-43.425\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(125.88 87.497)\">\u003Cpath d=\"M-55.872-42.410Q-55.770-42.232-55.565-42.147Q-55.360-42.061-55.131-42.061Q-54.871-42.061-54.632-42.174Q-54.392-42.287-54.240-42.494Q-54.088-42.701-54.088-42.964Q-54.088-43.186-54.192-43.398Q-54.297-43.610-54.485-43.738Q-54.673-43.866-54.909-43.866Q-55.438-43.866-55.732-43.586Q-55.801-43.511-55.848-43.470Q-55.896-43.429-55.971-43.418L-56.060-43.418Q-56.235-43.439-56.279-43.630L-56.279-45.715Q-56.235-45.896-56.060-45.917L-53.996-45.917Q-53.825-45.900-53.781-45.715L-53.781-45.637Q-53.825-45.449-53.996-45.428L-55.719-45.428L-55.719-44.181Q-55.363-44.358-54.909-44.358Q-54.533-44.358-54.213-44.169Q-53.893-43.979-53.711-43.656Q-53.528-43.333-53.528-42.964Q-53.528-42.550-53.758-42.236Q-53.989-41.921-54.360-41.747Q-54.731-41.573-55.131-41.573Q-55.353-41.573-55.596-41.638Q-55.838-41.703-56.043-41.839Q-56.248-41.976-56.371-42.181Q-56.494-42.386-56.494-42.636Q-56.494-42.783-56.394-42.890Q-56.293-42.998-56.139-42.998Q-56.067-42.998-56.006-42.972Q-55.944-42.947-55.895-42.899Q-55.845-42.851-55.818-42.784Q-55.790-42.718-55.790-42.649Q-55.790-42.509-55.872-42.410\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.25 87.497)\">\u003Cpath d=\"M-56.118-41.849L-56.118-41.928Q-56.074-42.109-55.900-42.130L-55.185-42.130L-55.185-44.915Q-55.517-44.645-55.913-44.645Q-56.115-44.645-56.159-44.847L-56.159-44.926Q-56.115-45.114-55.944-45.134Q-55.657-45.134-55.435-45.343Q-55.213-45.551-55.090-45.855Q-55.028-45.968-54.891-45.989L-54.844-45.989Q-54.673-45.972-54.628-45.784L-54.628-42.130L-53.914-42.130Q-53.740-42.109-53.695-41.928L-53.695-41.849Q-53.740-41.662-53.914-41.641L-55.900-41.641Q-56.074-41.662-56.118-41.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 87.497)\">\u003Cpath d=\"M-56.118-41.849L-56.118-41.928Q-56.074-42.109-55.900-42.130L-55.185-42.130L-55.185-44.915Q-55.517-44.645-55.913-44.645Q-56.115-44.645-56.159-44.847L-56.159-44.926Q-56.115-45.114-55.944-45.134Q-55.657-45.134-55.435-45.343Q-55.213-45.551-55.090-45.855Q-55.028-45.968-54.891-45.989L-54.844-45.989Q-54.673-45.972-54.628-45.784L-54.628-42.130L-53.914-42.130Q-53.740-42.109-53.695-41.928L-53.695-41.849Q-53.740-41.662-53.914-41.641L-55.900-41.641Q-56.074-41.662-56.118-41.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(262.453 87.497)\">\u003Cpath d=\"M-55.011-41.573Q-55.390-41.573-55.681-41.781Q-55.971-41.990-56.165-42.330Q-56.358-42.670-56.452-43.053Q-56.546-43.435-56.546-43.784Q-56.546-44.126-56.450-44.514Q-56.354-44.902-56.165-45.235Q-55.975-45.568-55.683-45.778Q-55.390-45.989-55.011-45.989Q-54.526-45.989-54.175-45.640Q-53.825-45.291-53.652-44.779Q-53.480-44.266-53.480-43.784Q-53.480-43.299-53.652-42.784Q-53.825-42.270-54.175-41.921Q-54.526-41.573-55.011-41.573M-55.011-42.061Q-54.748-42.061-54.558-42.251Q-54.368-42.441-54.257-42.728Q-54.146-43.015-54.093-43.318Q-54.040-43.620-54.040-43.866Q-54.040-44.085-54.095-44.370Q-54.150-44.656-54.264-44.910Q-54.379-45.165-54.565-45.331Q-54.751-45.496-55.011-45.496Q-55.339-45.496-55.560-45.223Q-55.780-44.950-55.883-44.570Q-55.985-44.191-55.985-43.866Q-55.985-43.517-55.886-43.097Q-55.787-42.677-55.570-42.369Q-55.353-42.061-55.011-42.061\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(293.75 87.497)\">\u003Cpath d=\"M-55.011-41.573Q-55.390-41.573-55.681-41.781Q-55.971-41.990-56.165-42.330Q-56.358-42.670-56.452-43.053Q-56.546-43.435-56.546-43.784Q-56.546-44.126-56.450-44.514Q-56.354-44.902-56.165-45.235Q-55.975-45.568-55.683-45.778Q-55.390-45.989-55.011-45.989Q-54.526-45.989-54.175-45.640Q-53.825-45.291-53.652-44.779Q-53.480-44.266-53.480-43.784Q-53.480-43.299-53.652-42.784Q-53.825-42.270-54.175-41.921Q-54.526-41.573-55.011-41.573M-55.011-42.061Q-54.748-42.061-54.558-42.251Q-54.368-42.441-54.257-42.728Q-54.146-43.015-54.093-43.318Q-54.040-43.620-54.040-43.866Q-54.040-44.085-54.095-44.370Q-54.150-44.656-54.264-44.910Q-54.379-45.165-54.565-45.331Q-54.751-45.496-55.011-45.496Q-55.339-45.496-55.560-45.223Q-55.780-44.950-55.883-44.570Q-55.985-44.191-55.985-43.866Q-55.985-43.517-55.886-43.097Q-55.787-42.677-55.570-42.369Q-55.353-42.061-55.011-42.061M-52.926-41.849L-52.926-41.928Q-52.892-42.109-52.711-42.130L-52.355-42.130L-51.542-43.196L-52.304-44.167L-52.670-44.167Q-52.841-44.184-52.885-44.379L-52.885-44.454Q-52.841-44.639-52.670-44.659L-51.655-44.659Q-51.480-44.639-51.436-44.454L-51.436-44.379Q-51.480-44.187-51.655-44.167L-51.750-44.167L-51.316-43.593L-50.899-44.167L-51.002-44.167Q-51.176-44.187-51.221-44.379L-51.221-44.454Q-51.176-44.639-51.002-44.659L-49.987-44.659Q-49.816-44.642-49.771-44.454L-49.771-44.379Q-49.816-44.187-49.987-44.167L-50.346-44.167L-51.087-43.196L-50.246-42.130L-49.891-42.130Q-49.717-42.109-49.672-41.928L-49.672-41.849Q-49.706-41.662-49.891-41.641L-50.899-41.641Q-51.080-41.662-51.115-41.849L-51.115-41.928Q-51.080-42.109-50.899-42.130L-50.786-42.130L-51.316-42.878L-51.829-42.130L-51.702-42.130Q-51.521-42.109-51.487-41.928L-51.487-41.849Q-51.521-41.662-51.702-41.641L-52.711-41.641Q-52.882-41.658-52.926-41.849M-48.688-41.849L-48.688-41.928Q-48.643-42.109-48.469-42.130L-47.755-42.130L-47.755-44.915Q-48.086-44.645-48.483-44.645Q-48.684-44.645-48.729-44.847L-48.729-44.926Q-48.684-45.114-48.513-45.134Q-48.226-45.134-48.004-45.343Q-47.782-45.551-47.659-45.855Q-47.597-45.968-47.461-45.989L-47.413-45.989Q-47.242-45.972-47.198-45.784L-47.198-42.130L-46.483-42.130Q-46.309-42.109-46.264-41.928L-46.264-41.849Q-46.309-41.662-46.483-41.641L-48.469-41.641Q-48.643-41.662-48.688-41.849M-42.648-42.943L-44.784-42.943Q-44.737-42.701-44.564-42.506Q-44.391-42.311-44.149-42.203Q-43.906-42.096-43.657-42.096Q-43.243-42.096-43.048-42.349Q-43.041-42.359-42.992-42.451Q-42.942-42.543-42.899-42.581Q-42.857-42.619-42.775-42.629L-42.648-42.629Q-42.481-42.612-42.429-42.424L-42.429-42.376Q-42.488-42.113-42.689-41.940Q-42.891-41.767-43.164-41.687Q-43.438-41.607-43.704-41.607Q-44.128-41.607-44.513-41.807Q-44.897-42.007-45.131-42.357Q-45.366-42.707-45.366-43.138L-45.366-43.189Q-45.366-43.599-45.150-43.952Q-44.935-44.304-44.578-44.509Q-44.221-44.714-43.810-44.714Q-43.369-44.714-43.060-44.519Q-42.751-44.324-42.590-43.984Q-42.429-43.644-42.429-43.203L-42.429-43.152Q-42.481-42.964-42.648-42.943M-44.778-43.425L-43.004-43.425Q-43.045-43.784-43.253-44.005Q-43.462-44.225-43.810-44.225Q-44.156-44.225-44.424-43.996Q-44.692-43.767-44.778-43.425\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 52.253h367.04\"\u002F>\u003Cg transform=\"translate(-2.157 104.569)\">\u003Cpath d=\"M-56.118-41.849L-56.118-41.928Q-56.074-42.109-55.900-42.130L-55.185-42.130L-55.185-44.915Q-55.517-44.645-55.913-44.645Q-56.115-44.645-56.159-44.847L-56.159-44.926Q-56.115-45.114-55.944-45.134Q-55.657-45.134-55.435-45.343Q-55.213-45.551-55.090-45.855Q-55.028-45.968-54.891-45.989L-54.844-45.989Q-54.673-45.972-54.628-45.784L-54.628-42.130L-53.914-42.130Q-53.740-42.109-53.695-41.928L-53.695-41.849Q-53.740-41.662-53.914-41.641L-55.900-41.641Q-56.074-41.662-56.118-41.849M-51.296-41.573Q-51.675-41.573-51.966-41.781Q-52.256-41.990-52.449-42.330Q-52.642-42.670-52.736-43.053Q-52.830-43.435-52.830-43.784Q-52.830-44.126-52.735-44.514Q-52.639-44.902-52.449-45.235Q-52.260-45.568-51.967-45.778Q-51.675-45.989-51.296-45.989Q-50.810-45.989-50.460-45.640Q-50.110-45.291-49.937-44.779Q-49.764-44.266-49.764-43.784Q-49.764-43.299-49.937-42.784Q-50.110-42.270-50.460-41.921Q-50.810-41.573-51.296-41.573M-51.296-42.061Q-51.033-42.061-50.843-42.251Q-50.653-42.441-50.542-42.728Q-50.431-43.015-50.378-43.318Q-50.325-43.620-50.325-43.866Q-50.325-44.085-50.380-44.370Q-50.434-44.656-50.549-44.910Q-50.663-45.165-50.850-45.331Q-51.036-45.496-51.296-45.496Q-51.624-45.496-51.844-45.223Q-52.065-44.950-52.167-44.570Q-52.270-44.191-52.270-43.866Q-52.270-43.517-52.171-43.097Q-52.072-42.677-51.855-42.369Q-51.638-42.061-51.296-42.061\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 103.791)\">\u003Cpath d=\"M-56.512-42.615Q-56.512-43.005-56.149-43.230Q-55.787-43.456-55.314-43.543Q-54.840-43.630-54.396-43.637Q-54.396-43.825-54.514-43.958Q-54.632-44.092-54.813-44.158Q-54.994-44.225-55.179-44.225Q-55.479-44.225-55.619-44.204L-55.619-44.153Q-55.619-44.006-55.724-43.905Q-55.828-43.805-55.971-43.805Q-56.125-43.805-56.226-43.912Q-56.327-44.020-56.327-44.167Q-56.327-44.522-55.994-44.618Q-55.660-44.714-55.172-44.714Q-54.936-44.714-54.702-44.645Q-54.468-44.577-54.271-44.445Q-54.075-44.314-53.955-44.121Q-53.835-43.928-53.835-43.685L-53.835-42.181Q-53.835-42.130-53.374-42.130Q-53.203-42.113-53.159-41.928L-53.159-41.849Q-53.203-41.662-53.374-41.641L-53.500-41.641Q-53.801-41.641-54.001-41.682Q-54.201-41.723-54.327-41.887Q-54.731-41.607-55.349-41.607Q-55.643-41.607-55.910-41.730Q-56.177-41.853-56.344-42.082Q-56.512-42.311-56.512-42.615M-55.951-42.608Q-55.951-42.369-55.739-42.232Q-55.527-42.096-55.278-42.096Q-55.086-42.096-54.883-42.147Q-54.679-42.198-54.538-42.319Q-54.396-42.441-54.396-42.636L-54.396-43.152Q-54.642-43.152-55.006-43.102Q-55.370-43.053-55.660-42.931Q-55.951-42.810-55.951-42.608M-51.521-41.607Q-51.928-41.607-52.248-41.826Q-52.567-42.044-52.747-42.398Q-52.926-42.752-52.926-43.152Q-52.926-43.453-52.817-43.733Q-52.707-44.013-52.504-44.232Q-52.301-44.451-52.034-44.572Q-51.767-44.693-51.456-44.693Q-51.009-44.693-50.653-44.413L-50.653-45.428L-51.022-45.428Q-51.207-45.449-51.241-45.637L-51.241-45.715Q-51.207-45.896-51.022-45.917L-50.311-45.917Q-50.137-45.896-50.093-45.715L-50.093-42.130L-49.720-42.130Q-49.539-42.109-49.505-41.928L-49.505-41.849Q-49.539-41.662-49.720-41.641L-50.434-41.641Q-50.609-41.662-50.653-41.849L-50.653-41.962Q-50.824-41.795-51.053-41.701Q-51.282-41.607-51.521-41.607M-51.487-42.096Q-51.173-42.096-50.952-42.331Q-50.732-42.567-50.653-42.895L-50.653-43.623Q-50.704-43.787-50.815-43.919Q-50.927-44.051-51.082-44.128Q-51.238-44.204-51.409-44.204Q-51.679-44.204-51.897-44.056Q-52.116-43.907-52.242-43.658Q-52.369-43.408-52.369-43.145Q-52.369-42.752-52.119-42.424Q-51.870-42.096-51.487-42.096M-47.806-41.607Q-48.213-41.607-48.532-41.826Q-48.852-42.044-49.031-42.398Q-49.211-42.752-49.211-43.152Q-49.211-43.453-49.101-43.733Q-48.992-44.013-48.789-44.232Q-48.585-44.451-48.319-44.572Q-48.052-44.693-47.741-44.693Q-47.293-44.693-46.938-44.413L-46.938-45.428L-47.307-45.428Q-47.492-45.449-47.526-45.637L-47.526-45.715Q-47.492-45.896-47.307-45.917L-46.596-45.917Q-46.422-45.896-46.377-45.715L-46.377-42.130L-46.005-42.130Q-45.824-42.109-45.789-41.928L-45.789-41.849Q-45.824-41.662-46.005-41.641L-46.719-41.641Q-46.893-41.662-46.938-41.849L-46.938-41.962Q-47.109-41.795-47.338-41.701Q-47.567-41.607-47.806-41.607M-47.772-42.096Q-47.457-42.096-47.237-42.331Q-47.016-42.567-46.938-42.895L-46.938-43.623Q-46.989-43.787-47.100-43.919Q-47.211-44.051-47.367-44.128Q-47.522-44.204-47.693-44.204Q-47.963-44.204-48.182-44.056Q-48.401-43.907-48.527-43.658Q-48.654-43.408-48.654-43.145Q-48.654-42.752-48.404-42.424Q-48.155-42.096-47.772-42.096M-43.698-40.291L-43.698-40.366Q-43.653-40.558-43.482-40.578L-43.075-40.578L-43.075-41.976Q-43.472-41.607-44.005-41.607Q-44.316-41.607-44.583-41.732Q-44.849-41.856-45.053-42.075Q-45.256-42.294-45.366-42.576Q-45.475-42.858-45.475-43.152Q-45.475-43.576-45.266-43.926Q-45.058-44.276-44.702-44.485Q-44.347-44.693-43.930-44.693Q-43.438-44.693-43.075-44.351L-43.075-44.492Q-43.031-44.676-42.857-44.693L-42.734-44.693Q-42.559-44.673-42.515-44.492L-42.515-40.578L-42.108-40.578Q-41.937-40.558-41.893-40.366L-41.893-40.291Q-41.937-40.106-42.108-40.086L-43.482-40.086Q-43.653-40.106-43.698-40.291M-43.964-42.096Q-43.639-42.096-43.398-42.318Q-43.158-42.540-43.075-42.858L-43.075-43.398Q-43.113-43.606-43.221-43.793Q-43.328-43.979-43.501-44.092Q-43.674-44.204-43.886-44.204Q-44.162-44.204-44.400-44.059Q-44.638-43.914-44.776-43.668Q-44.914-43.422-44.914-43.145Q-44.914-42.738-44.639-42.417Q-44.364-42.096-43.964-42.096\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(125.88 104.569)\">\u003Cpath d=\"M-55.011-41.573Q-55.572-41.573-55.910-41.902Q-56.248-42.232-56.387-42.733Q-56.525-43.234-56.525-43.784Q-56.525-44.191-56.385-44.589Q-56.245-44.987-55.992-45.302Q-55.739-45.616-55.382-45.802Q-55.025-45.989-54.597-45.989Q-54.358-45.989-54.139-45.903Q-53.921-45.818-53.787-45.647Q-53.654-45.476-53.654-45.220Q-53.654-45.066-53.753-44.960Q-53.852-44.854-54.003-44.854Q-54.157-44.854-54.259-44.953Q-54.362-45.052-54.362-45.203Q-54.362-45.308-54.297-45.414Q-54.392-45.496-54.597-45.496Q-54.963-45.496-55.257-45.286Q-55.551-45.076-55.731-44.738Q-55.910-44.399-55.951-44.051Q-55.742-44.225-55.472-44.319Q-55.202-44.413-54.922-44.413Q-54.625-44.413-54.363-44.304Q-54.102-44.194-53.910-44.003Q-53.719-43.811-53.610-43.550Q-53.500-43.288-53.500-42.991Q-53.500-42.687-53.622-42.424Q-53.743-42.161-53.953-41.971Q-54.163-41.781-54.439-41.677Q-54.714-41.573-55.011-41.573M-55.872-42.923Q-55.818-42.694-55.705-42.497Q-55.592-42.301-55.418-42.181Q-55.243-42.061-55.011-42.061Q-54.615-42.061-54.338-42.330Q-54.061-42.598-54.061-42.991Q-54.061-43.237-54.179-43.453Q-54.297-43.668-54.503-43.793Q-54.710-43.917-54.970-43.917Q-55.312-43.917-55.602-43.719Q-55.893-43.521-55.893-43.196Q-55.893-43.162-55.879-43.094Q-55.866-43.025-55.866-42.991Q-55.866-42.967-55.867-42.953Q-55.869-42.940-55.872-42.923\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.25 104.569)\">\u003Cpath d=\"M-56.118-41.849L-56.118-41.928Q-56.074-42.109-55.900-42.130L-55.185-42.130L-55.185-44.915Q-55.517-44.645-55.913-44.645Q-56.115-44.645-56.159-44.847L-56.159-44.926Q-56.115-45.114-55.944-45.134Q-55.657-45.134-55.435-45.343Q-55.213-45.551-55.090-45.855Q-55.028-45.968-54.891-45.989L-54.844-45.989Q-54.673-45.972-54.628-45.784L-54.628-42.130L-53.914-42.130Q-53.740-42.109-53.695-41.928L-53.695-41.849Q-53.740-41.662-53.914-41.641L-55.900-41.641Q-56.074-41.662-56.118-41.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 104.569)\">\u003Cpath d=\"M-56.118-41.849L-56.118-41.928Q-56.074-42.109-55.900-42.130L-55.185-42.130L-55.185-44.915Q-55.517-44.645-55.913-44.645Q-56.115-44.645-56.159-44.847L-56.159-44.926Q-56.115-45.114-55.944-45.134Q-55.657-45.134-55.435-45.343Q-55.213-45.551-55.090-45.855Q-55.028-45.968-54.891-45.989L-54.844-45.989Q-54.673-45.972-54.628-45.784L-54.628-42.130L-53.914-42.130Q-53.740-42.109-53.695-41.928L-53.695-41.849Q-53.740-41.662-53.914-41.641L-55.900-41.641Q-56.074-41.662-56.118-41.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(262.453 104.569)\">\u003Cpath d=\"M-55.011-41.573Q-55.390-41.573-55.681-41.781Q-55.971-41.990-56.165-42.330Q-56.358-42.670-56.452-43.053Q-56.546-43.435-56.546-43.784Q-56.546-44.126-56.450-44.514Q-56.354-44.902-56.165-45.235Q-55.975-45.568-55.683-45.778Q-55.390-45.989-55.011-45.989Q-54.526-45.989-54.175-45.640Q-53.825-45.291-53.652-44.779Q-53.480-44.266-53.480-43.784Q-53.480-43.299-53.652-42.784Q-53.825-42.270-54.175-41.921Q-54.526-41.573-55.011-41.573M-55.011-42.061Q-54.748-42.061-54.558-42.251Q-54.368-42.441-54.257-42.728Q-54.146-43.015-54.093-43.318Q-54.040-43.620-54.040-43.866Q-54.040-44.085-54.095-44.370Q-54.150-44.656-54.264-44.910Q-54.379-45.165-54.565-45.331Q-54.751-45.496-55.011-45.496Q-55.339-45.496-55.560-45.223Q-55.780-44.950-55.883-44.570Q-55.985-44.191-55.985-43.866Q-55.985-43.517-55.886-43.097Q-55.787-42.677-55.570-42.369Q-55.353-42.061-55.011-42.061\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(293.75 104.569)\">\u003Cpath d=\"M-55.011-41.573Q-55.390-41.573-55.681-41.781Q-55.971-41.990-56.165-42.330Q-56.358-42.670-56.452-43.053Q-56.546-43.435-56.546-43.784Q-56.546-44.126-56.450-44.514Q-56.354-44.902-56.165-45.235Q-55.975-45.568-55.683-45.778Q-55.390-45.989-55.011-45.989Q-54.526-45.989-54.175-45.640Q-53.825-45.291-53.652-44.779Q-53.480-44.266-53.480-43.784Q-53.480-43.299-53.652-42.784Q-53.825-42.270-54.175-41.921Q-54.526-41.573-55.011-41.573M-55.011-42.061Q-54.748-42.061-54.558-42.251Q-54.368-42.441-54.257-42.728Q-54.146-43.015-54.093-43.318Q-54.040-43.620-54.040-43.866Q-54.040-44.085-54.095-44.370Q-54.150-44.656-54.264-44.910Q-54.379-45.165-54.565-45.331Q-54.751-45.496-55.011-45.496Q-55.339-45.496-55.560-45.223Q-55.780-44.950-55.883-44.570Q-55.985-44.191-55.985-43.866Q-55.985-43.517-55.886-43.097Q-55.787-42.677-55.570-42.369Q-55.353-42.061-55.011-42.061M-52.926-41.849L-52.926-41.928Q-52.892-42.109-52.711-42.130L-52.355-42.130L-51.542-43.196L-52.304-44.167L-52.670-44.167Q-52.841-44.184-52.885-44.379L-52.885-44.454Q-52.841-44.639-52.670-44.659L-51.655-44.659Q-51.480-44.639-51.436-44.454L-51.436-44.379Q-51.480-44.187-51.655-44.167L-51.750-44.167L-51.316-43.593L-50.899-44.167L-51.002-44.167Q-51.176-44.187-51.221-44.379L-51.221-44.454Q-51.176-44.639-51.002-44.659L-49.987-44.659Q-49.816-44.642-49.771-44.454L-49.771-44.379Q-49.816-44.187-49.987-44.167L-50.346-44.167L-51.087-43.196L-50.246-42.130L-49.891-42.130Q-49.717-42.109-49.672-41.928L-49.672-41.849Q-49.706-41.662-49.891-41.641L-50.899-41.641Q-51.080-41.662-51.115-41.849L-51.115-41.928Q-51.080-42.109-50.899-42.130L-50.786-42.130L-51.316-42.878L-51.829-42.130L-51.702-42.130Q-51.521-42.109-51.487-41.928L-51.487-41.849Q-51.521-41.662-51.702-41.641L-52.711-41.641Q-52.882-41.658-52.926-41.849M-49.064-41.849L-49.064-41.914Q-49.036-42.061-48.948-42.102L-47.820-43.036Q-47.529-43.278-47.370-43.412Q-47.211-43.545-47.040-43.738Q-46.869-43.931-46.763-44.150Q-46.658-44.369-46.658-44.601Q-46.658-44.885-46.811-45.090Q-46.965-45.295-47.210-45.396Q-47.454-45.496-47.734-45.496Q-47.960-45.496-48.160-45.389Q-48.360-45.281-48.449-45.093Q-48.360-44.977-48.360-44.847Q-48.360-44.707-48.464-44.599Q-48.568-44.492-48.708-44.492Q-48.862-44.492-48.963-44.601Q-49.064-44.710-49.064-44.861Q-49.064-45.117-48.946-45.329Q-48.828-45.541-48.619-45.691Q-48.411-45.842-48.177-45.915Q-47.943-45.989-47.686-45.989Q-47.266-45.989-46.902-45.823Q-46.538-45.657-46.317-45.341Q-46.097-45.025-46.097-44.601Q-46.097-44.300-46.213-44.035Q-46.329-43.770-46.526-43.543Q-46.722-43.316-46.992-43.087Q-47.263-42.858-47.447-42.704L-48.155-42.130L-46.658-42.130L-46.658-42.256Q-46.613-42.441-46.439-42.461L-46.316-42.461Q-46.141-42.444-46.097-42.256L-46.097-41.849Q-46.141-41.662-46.316-41.641L-48.848-41.641Q-49.019-41.658-49.064-41.849M-43.865-41.573Q-44.244-41.573-44.535-41.781Q-44.825-41.990-45.019-42.330Q-45.212-42.670-45.306-43.053Q-45.400-43.435-45.400-43.784Q-45.400-44.126-45.304-44.514Q-45.208-44.902-45.019-45.235Q-44.829-45.568-44.537-45.778Q-44.244-45.989-43.865-45.989Q-43.380-45.989-43.029-45.640Q-42.679-45.291-42.506-44.779Q-42.334-44.266-42.334-43.784Q-42.334-43.299-42.506-42.784Q-42.679-42.270-43.029-41.921Q-43.380-41.573-43.865-41.573M-43.865-42.061Q-43.602-42.061-43.412-42.251Q-43.222-42.441-43.111-42.728Q-43-43.015-42.947-43.318Q-42.894-43.620-42.894-43.866Q-42.894-44.085-42.949-44.370Q-43.004-44.656-43.118-44.910Q-43.233-45.165-43.419-45.331Q-43.605-45.496-43.865-45.496Q-44.193-45.496-44.414-45.223Q-44.634-44.950-44.737-44.570Q-44.839-44.191-44.839-43.866Q-44.839-43.517-44.740-43.097Q-44.641-42.677-44.424-42.369Q-44.207-42.061-43.865-42.061\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 69.325h367.04\"\u002F>\u003Cg transform=\"translate(-2.157 121.64)\">\u003Cpath d=\"M-56.118-41.849L-56.118-41.928Q-56.074-42.109-55.900-42.130L-55.185-42.130L-55.185-44.915Q-55.517-44.645-55.913-44.645Q-56.115-44.645-56.159-44.847L-56.159-44.926Q-56.115-45.114-55.944-45.134Q-55.657-45.134-55.435-45.343Q-55.213-45.551-55.090-45.855Q-55.028-45.968-54.891-45.989L-54.844-45.989Q-54.673-45.972-54.628-45.784L-54.628-42.130L-53.914-42.130Q-53.740-42.109-53.695-41.928L-53.695-41.849Q-53.740-41.662-53.914-41.641L-55.900-41.641Q-56.074-41.662-56.118-41.849M-52.403-41.849L-52.403-41.928Q-52.359-42.109-52.184-42.130L-51.470-42.130L-51.470-44.915Q-51.802-44.645-52.198-44.645Q-52.400-44.645-52.444-44.847L-52.444-44.926Q-52.400-45.114-52.229-45.134Q-51.942-45.134-51.720-45.343Q-51.497-45.551-51.374-45.855Q-51.313-45.968-51.176-45.989L-51.128-45.989Q-50.957-45.972-50.913-45.784L-50.913-42.130L-50.199-42.130Q-50.024-42.109-49.980-41.928L-49.980-41.849Q-50.024-41.662-50.199-41.641L-52.184-41.641Q-52.359-41.662-52.403-41.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 120.863)\">\u003Cpath d=\"M-56.354-41.815L-56.354-42.615Q-56.330-42.796-56.146-42.817L-55.999-42.817Q-55.855-42.796-55.804-42.656Q-55.626-42.096-54.991-42.096Q-54.809-42.096-54.609-42.126Q-54.409-42.157-54.263-42.258Q-54.116-42.359-54.116-42.537Q-54.116-42.721-54.310-42.820Q-54.505-42.919-54.744-42.957L-55.356-43.056Q-56.354-43.241-56.354-43.873Q-56.354-44.126-56.228-44.292Q-56.101-44.457-55.891-44.551Q-55.681-44.645-55.457-44.680Q-55.233-44.714-54.991-44.714Q-54.772-44.714-54.603-44.688Q-54.433-44.662-54.290-44.594Q-54.221-44.697-54.109-44.714L-54.040-44.714Q-53.955-44.703-53.900-44.649Q-53.846-44.594-53.835-44.512L-53.835-43.893Q-53.846-43.811-53.900-43.753Q-53.955-43.695-54.040-43.685L-54.187-43.685Q-54.269-43.695-54.327-43.753Q-54.386-43.811-54.396-43.893Q-54.396-44.225-55.004-44.225Q-55.308-44.225-55.587-44.153Q-55.866-44.081-55.866-43.866Q-55.866-43.634-55.278-43.538L-54.662-43.432Q-54.239-43.360-53.933-43.143Q-53.627-42.926-53.627-42.537Q-53.627-42.195-53.834-41.983Q-54.040-41.771-54.346-41.689Q-54.652-41.607-54.991-41.607Q-55.496-41.607-55.845-41.829Q-55.907-41.720-55.949-41.670Q-55.992-41.620-56.084-41.607L-56.146-41.607Q-56.334-41.627-56.354-41.815M-52.502-42.390L-52.502-44.167L-52.871-44.167Q-53.053-44.187-53.090-44.379L-53.090-44.454Q-53.049-44.639-52.871-44.659L-52.157-44.659Q-51.986-44.639-51.942-44.454L-51.942-42.417Q-51.942-42.212-51.793-42.154Q-51.644-42.096-51.395-42.096Q-51.214-42.096-51.043-42.162Q-50.872-42.229-50.763-42.360Q-50.653-42.492-50.653-42.677L-50.653-44.167L-51.022-44.167Q-51.207-44.187-51.241-44.379L-51.241-44.454Q-51.207-44.639-51.022-44.659L-50.311-44.659Q-50.137-44.639-50.093-44.454L-50.093-42.130L-49.720-42.130Q-49.539-42.109-49.505-41.928L-49.505-41.849Q-49.539-41.662-49.720-41.641L-50.434-41.641Q-50.609-41.662-50.653-41.836Q-51.005-41.607-51.450-41.607Q-51.655-41.607-51.843-41.643Q-52.031-41.679-52.176-41.767Q-52.321-41.856-52.412-42.012Q-52.502-42.167-52.502-42.390M-48.787-41.849L-48.787-45.428L-49.156-45.428Q-49.337-45.449-49.375-45.637L-49.375-45.715Q-49.337-45.896-49.156-45.917L-48.442-45.917Q-48.271-45.896-48.226-45.715L-48.226-44.392Q-48.042-44.539-47.811-44.616Q-47.580-44.693-47.345-44.693Q-47.047-44.693-46.787-44.567Q-46.528-44.440-46.340-44.220Q-46.152-43.999-46.051-43.726Q-45.950-43.453-45.950-43.152Q-45.950-42.745-46.148-42.386Q-46.346-42.027-46.685-41.817Q-47.023-41.607-47.433-41.607Q-47.888-41.607-48.226-41.928L-48.226-41.849Q-48.271-41.658-48.442-41.641L-48.568-41.641Q-48.736-41.662-48.787-41.849M-47.471-42.096Q-47.201-42.096-46.982-42.244Q-46.763-42.393-46.637-42.639Q-46.511-42.885-46.511-43.152Q-46.511-43.405-46.620-43.649Q-46.729-43.893-46.933-44.049Q-47.136-44.204-47.399-44.204Q-47.679-44.204-47.909-44.042Q-48.138-43.880-48.226-43.617L-48.226-42.871Q-48.148-42.550-47.955-42.323Q-47.762-42.096-47.471-42.096M-43.698-40.291L-43.698-40.366Q-43.653-40.558-43.482-40.578L-43.075-40.578L-43.075-41.976Q-43.472-41.607-44.005-41.607Q-44.316-41.607-44.583-41.732Q-44.849-41.856-45.053-42.075Q-45.256-42.294-45.366-42.576Q-45.475-42.858-45.475-43.152Q-45.475-43.576-45.266-43.926Q-45.058-44.276-44.702-44.485Q-44.347-44.693-43.930-44.693Q-43.438-44.693-43.075-44.351L-43.075-44.492Q-43.031-44.676-42.857-44.693L-42.734-44.693Q-42.559-44.673-42.515-44.492L-42.515-40.578L-42.108-40.578Q-41.937-40.558-41.893-40.366L-41.893-40.291Q-41.937-40.106-42.108-40.086L-43.482-40.086Q-43.653-40.106-43.698-40.291M-43.964-42.096Q-43.639-42.096-43.398-42.318Q-43.158-42.540-43.075-42.858L-43.075-43.398Q-43.113-43.606-43.221-43.793Q-43.328-43.979-43.501-44.092Q-43.674-44.204-43.886-44.204Q-44.162-44.204-44.400-44.059Q-44.638-43.914-44.776-43.668Q-44.914-43.422-44.914-43.145Q-44.914-42.738-44.639-42.417Q-44.364-42.096-43.964-42.096\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(125.88 121.64)\">\u003Cpath d=\"M-55.011-41.573Q-55.572-41.573-55.910-41.902Q-56.248-42.232-56.387-42.733Q-56.525-43.234-56.525-43.784Q-56.525-44.191-56.385-44.589Q-56.245-44.987-55.992-45.302Q-55.739-45.616-55.382-45.802Q-55.025-45.989-54.597-45.989Q-54.358-45.989-54.139-45.903Q-53.921-45.818-53.787-45.647Q-53.654-45.476-53.654-45.220Q-53.654-45.066-53.753-44.960Q-53.852-44.854-54.003-44.854Q-54.157-44.854-54.259-44.953Q-54.362-45.052-54.362-45.203Q-54.362-45.308-54.297-45.414Q-54.392-45.496-54.597-45.496Q-54.963-45.496-55.257-45.286Q-55.551-45.076-55.731-44.738Q-55.910-44.399-55.951-44.051Q-55.742-44.225-55.472-44.319Q-55.202-44.413-54.922-44.413Q-54.625-44.413-54.363-44.304Q-54.102-44.194-53.910-44.003Q-53.719-43.811-53.610-43.550Q-53.500-43.288-53.500-42.991Q-53.500-42.687-53.622-42.424Q-53.743-42.161-53.953-41.971Q-54.163-41.781-54.439-41.677Q-54.714-41.573-55.011-41.573M-55.872-42.923Q-55.818-42.694-55.705-42.497Q-55.592-42.301-55.418-42.181Q-55.243-42.061-55.011-42.061Q-54.615-42.061-54.338-42.330Q-54.061-42.598-54.061-42.991Q-54.061-43.237-54.179-43.453Q-54.297-43.668-54.503-43.793Q-54.710-43.917-54.970-43.917Q-55.312-43.917-55.602-43.719Q-55.893-43.521-55.893-43.196Q-55.893-43.162-55.879-43.094Q-55.866-43.025-55.866-42.991Q-55.866-42.967-55.867-42.953Q-55.869-42.940-55.872-42.923\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.25 121.64)\">\u003Cpath d=\"M-55.011-41.573Q-55.390-41.573-55.681-41.781Q-55.971-41.990-56.165-42.330Q-56.358-42.670-56.452-43.053Q-56.546-43.435-56.546-43.784Q-56.546-44.126-56.450-44.514Q-56.354-44.902-56.165-45.235Q-55.975-45.568-55.683-45.778Q-55.390-45.989-55.011-45.989Q-54.526-45.989-54.175-45.640Q-53.825-45.291-53.652-44.779Q-53.480-44.266-53.480-43.784Q-53.480-43.299-53.652-42.784Q-53.825-42.270-54.175-41.921Q-54.526-41.573-55.011-41.573M-55.011-42.061Q-54.748-42.061-54.558-42.251Q-54.368-42.441-54.257-42.728Q-54.146-43.015-54.093-43.318Q-54.040-43.620-54.040-43.866Q-54.040-44.085-54.095-44.370Q-54.150-44.656-54.264-44.910Q-54.379-45.165-54.565-45.331Q-54.751-45.496-55.011-45.496Q-55.339-45.496-55.560-45.223Q-55.780-44.950-55.883-44.570Q-55.985-44.191-55.985-43.866Q-55.985-43.517-55.886-43.097Q-55.787-42.677-55.570-42.369Q-55.353-42.061-55.011-42.061\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 121.64)\">\u003Cpath d=\"M-56.118-41.849L-56.118-41.928Q-56.074-42.109-55.900-42.130L-55.185-42.130L-55.185-44.915Q-55.517-44.645-55.913-44.645Q-56.115-44.645-56.159-44.847L-56.159-44.926Q-56.115-45.114-55.944-45.134Q-55.657-45.134-55.435-45.343Q-55.213-45.551-55.090-45.855Q-55.028-45.968-54.891-45.989L-54.844-45.989Q-54.673-45.972-54.628-45.784L-54.628-42.130L-53.914-42.130Q-53.740-42.109-53.695-41.928L-53.695-41.849Q-53.740-41.662-53.914-41.641L-55.900-41.641Q-56.074-41.662-56.118-41.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(262.453 121.64)\">\u003Cpath d=\"M-56.118-41.849L-56.118-41.928Q-56.074-42.109-55.900-42.130L-55.185-42.130L-55.185-44.915Q-55.517-44.645-55.913-44.645Q-56.115-44.645-56.159-44.847L-56.159-44.926Q-56.115-45.114-55.944-45.134Q-55.657-45.134-55.435-45.343Q-55.213-45.551-55.090-45.855Q-55.028-45.968-54.891-45.989L-54.844-45.989Q-54.673-45.972-54.628-45.784L-54.628-42.130L-53.914-42.130Q-53.740-42.109-53.695-41.928L-53.695-41.849Q-53.740-41.662-53.914-41.641L-55.900-41.641Q-56.074-41.662-56.118-41.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(293.75 121.64)\">\u003Cpath d=\"M-55.011-41.573Q-55.390-41.573-55.681-41.781Q-55.971-41.990-56.165-42.330Q-56.358-42.670-56.452-43.053Q-56.546-43.435-56.546-43.784Q-56.546-44.126-56.450-44.514Q-56.354-44.902-56.165-45.235Q-55.975-45.568-55.683-45.778Q-55.390-45.989-55.011-45.989Q-54.526-45.989-54.175-45.640Q-53.825-45.291-53.652-44.779Q-53.480-44.266-53.480-43.784Q-53.480-43.299-53.652-42.784Q-53.825-42.270-54.175-41.921Q-54.526-41.573-55.011-41.573M-55.011-42.061Q-54.748-42.061-54.558-42.251Q-54.368-42.441-54.257-42.728Q-54.146-43.015-54.093-43.318Q-54.040-43.620-54.040-43.866Q-54.040-44.085-54.095-44.370Q-54.150-44.656-54.264-44.910Q-54.379-45.165-54.565-45.331Q-54.751-45.496-55.011-45.496Q-55.339-45.496-55.560-45.223Q-55.780-44.950-55.883-44.570Q-55.985-44.191-55.985-43.866Q-55.985-43.517-55.886-43.097Q-55.787-42.677-55.570-42.369Q-55.353-42.061-55.011-42.061M-52.926-41.849L-52.926-41.928Q-52.892-42.109-52.711-42.130L-52.355-42.130L-51.542-43.196L-52.304-44.167L-52.670-44.167Q-52.841-44.184-52.885-44.379L-52.885-44.454Q-52.841-44.639-52.670-44.659L-51.655-44.659Q-51.480-44.639-51.436-44.454L-51.436-44.379Q-51.480-44.187-51.655-44.167L-51.750-44.167L-51.316-43.593L-50.899-44.167L-51.002-44.167Q-51.176-44.187-51.221-44.379L-51.221-44.454Q-51.176-44.639-51.002-44.659L-49.987-44.659Q-49.816-44.642-49.771-44.454L-49.771-44.379Q-49.816-44.187-49.987-44.167L-50.346-44.167L-51.087-43.196L-50.246-42.130L-49.891-42.130Q-49.717-42.109-49.672-41.928L-49.672-41.849Q-49.706-41.662-49.891-41.641L-50.899-41.641Q-51.080-41.662-51.115-41.849L-51.115-41.928Q-51.080-42.109-50.899-42.130L-50.786-42.130L-51.316-42.878L-51.829-42.130L-51.702-42.130Q-51.521-42.109-51.487-41.928L-51.487-41.849Q-51.521-41.662-51.702-41.641L-52.711-41.641Q-52.882-41.658-52.926-41.849M-49.064-41.849L-49.064-41.914Q-49.036-42.061-48.948-42.102L-47.820-43.036Q-47.529-43.278-47.370-43.412Q-47.211-43.545-47.040-43.738Q-46.869-43.931-46.763-44.150Q-46.658-44.369-46.658-44.601Q-46.658-44.885-46.811-45.090Q-46.965-45.295-47.210-45.396Q-47.454-45.496-47.734-45.496Q-47.960-45.496-48.160-45.389Q-48.360-45.281-48.449-45.093Q-48.360-44.977-48.360-44.847Q-48.360-44.707-48.464-44.599Q-48.568-44.492-48.708-44.492Q-48.862-44.492-48.963-44.601Q-49.064-44.710-49.064-44.861Q-49.064-45.117-48.946-45.329Q-48.828-45.541-48.619-45.691Q-48.411-45.842-48.177-45.915Q-47.943-45.989-47.686-45.989Q-47.266-45.989-46.902-45.823Q-46.538-45.657-46.317-45.341Q-46.097-45.025-46.097-44.601Q-46.097-44.300-46.213-44.035Q-46.329-43.770-46.526-43.543Q-46.722-43.316-46.992-43.087Q-47.263-42.858-47.447-42.704L-48.155-42.130L-46.658-42.130L-46.658-42.256Q-46.613-42.441-46.439-42.461L-46.316-42.461Q-46.141-42.444-46.097-42.256L-46.097-41.849Q-46.141-41.662-46.316-41.641L-48.848-41.641Q-49.019-41.658-49.064-41.849M-45.348-41.849L-45.348-41.914Q-45.321-42.061-45.232-42.102L-44.104-43.036Q-43.814-43.278-43.655-43.412Q-43.496-43.545-43.325-43.738Q-43.154-43.931-43.048-44.150Q-42.942-44.369-42.942-44.601Q-42.942-44.885-43.096-45.090Q-43.250-45.295-43.494-45.396Q-43.739-45.496-44.019-45.496Q-44.244-45.496-44.444-45.389Q-44.644-45.281-44.733-45.093Q-44.644-44.977-44.644-44.847Q-44.644-44.707-44.749-44.599Q-44.853-44.492-44.993-44.492Q-45.147-44.492-45.248-44.601Q-45.348-44.710-45.348-44.861Q-45.348-45.117-45.231-45.329Q-45.113-45.541-44.904-45.691Q-44.696-45.842-44.461-45.915Q-44.227-45.989-43.971-45.989Q-43.551-45.989-43.187-45.823Q-42.823-45.657-42.602-45.341Q-42.382-45.025-42.382-44.601Q-42.382-44.300-42.498-44.035Q-42.614-43.770-42.811-43.543Q-43.007-43.316-43.277-43.087Q-43.547-42.858-43.732-42.704L-44.439-42.130L-42.942-42.130L-42.942-42.256Q-42.898-42.441-42.723-42.461L-42.600-42.461Q-42.426-42.444-42.382-42.256L-42.382-41.849Q-42.426-41.662-42.600-41.641L-45.133-41.641Q-45.304-41.658-45.348-41.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 86.396h367.04\"\u002F>\u003Cg transform=\"translate(-2.157 138.712)\">\u003Cpath d=\"M-56.118-41.849L-56.118-41.928Q-56.074-42.109-55.900-42.130L-55.185-42.130L-55.185-44.915Q-55.517-44.645-55.913-44.645Q-56.115-44.645-56.159-44.847L-56.159-44.926Q-56.115-45.114-55.944-45.134Q-55.657-45.134-55.435-45.343Q-55.213-45.551-55.090-45.855Q-55.028-45.968-54.891-45.989L-54.844-45.989Q-54.673-45.972-54.628-45.784L-54.628-42.130L-53.914-42.130Q-53.740-42.109-53.695-41.928L-53.695-41.849Q-53.740-41.662-53.914-41.641L-55.900-41.641Q-56.074-41.662-56.118-41.849M-52.779-41.849L-52.779-41.914Q-52.752-42.061-52.663-42.102L-51.535-43.036Q-51.244-43.278-51.086-43.412Q-50.927-43.545-50.756-43.738Q-50.585-43.931-50.479-44.150Q-50.373-44.369-50.373-44.601Q-50.373-44.885-50.527-45.090Q-50.680-45.295-50.925-45.396Q-51.169-45.496-51.450-45.496Q-51.675-45.496-51.875-45.389Q-52.075-45.281-52.164-45.093Q-52.075-44.977-52.075-44.847Q-52.075-44.707-52.179-44.599Q-52.284-44.492-52.424-44.492Q-52.577-44.492-52.678-44.601Q-52.779-44.710-52.779-44.861Q-52.779-45.117-52.661-45.329Q-52.543-45.541-52.335-45.691Q-52.126-45.842-51.892-45.915Q-51.658-45.989-51.402-45.989Q-50.981-45.989-50.617-45.823Q-50.253-45.657-50.033-45.341Q-49.812-45.025-49.812-44.601Q-49.812-44.300-49.929-44.035Q-50.045-43.770-50.241-43.543Q-50.438-43.316-50.708-43.087Q-50.978-42.858-51.162-42.704L-51.870-42.130L-50.373-42.130L-50.373-42.256Q-50.328-42.441-50.154-42.461L-50.031-42.461Q-49.857-42.444-49.812-42.256L-49.812-41.849Q-49.857-41.662-50.031-41.641L-52.564-41.641Q-52.735-41.658-52.779-41.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 137.934)\">\u003Cpath d=\"M-56.532-40.605L-56.532-40.653Q-56.532-40.790-56.423-40.886Q-56.313-40.981-56.173-40.981Q-56.040-40.981-55.932-40.884Q-55.825-40.787-55.825-40.653L-55.825-40.605Q-55.825-40.585-55.826-40.578Q-55.828-40.571-55.831-40.564Q-55.691-40.540-55.418-40.540Q-55.110-40.540-54.950-40.798Q-54.789-41.057-54.789-41.374L-54.789-44.167L-55.753-44.167Q-55.927-44.187-55.971-44.379L-55.971-44.454Q-55.927-44.639-55.753-44.659L-54.444-44.659Q-54.273-44.639-54.228-44.454L-54.228-41.327Q-54.228-41.002-54.387-40.704Q-54.546-40.407-54.823-40.229Q-55.100-40.052-55.425-40.052Q-55.640-40.052-55.804-40.062Q-55.968-40.072-56.141-40.127Q-56.313-40.182-56.423-40.296Q-56.532-40.411-56.532-40.605M-55.011-45.514L-55.011-45.561Q-55.011-45.712-54.891-45.818Q-54.772-45.924-54.621-45.924Q-54.468-45.924-54.348-45.818Q-54.228-45.712-54.228-45.561L-54.228-45.514Q-54.228-45.360-54.348-45.254Q-54.468-45.148-54.621-45.148Q-54.772-45.148-54.891-45.254Q-55.011-45.360-55.011-45.514M-53.090-41.849L-53.090-41.928Q-53.053-42.109-52.871-42.130L-52.502-42.130L-52.502-44.167L-52.871-44.167Q-53.053-44.187-53.090-44.379L-53.090-44.454Q-53.049-44.639-52.871-44.659L-52.157-44.659Q-51.986-44.639-51.942-44.454L-51.942-44.379L-51.949-44.358Q-51.750-44.516-51.511-44.604Q-51.272-44.693-51.015-44.693Q-50.711-44.693-50.503-44.570Q-50.294-44.447-50.193-44.222Q-50.093-43.996-50.093-43.685L-50.093-42.130L-49.720-42.130Q-49.539-42.109-49.505-41.928L-49.505-41.849Q-49.539-41.662-49.720-41.641L-50.940-41.641Q-51.111-41.662-51.156-41.849L-51.156-41.928Q-51.111-42.113-50.940-42.130L-50.653-42.130L-50.653-43.658Q-50.653-43.928-50.732-44.066Q-50.810-44.204-51.067-44.204Q-51.303-44.204-51.502-44.090Q-51.702-43.975-51.822-43.776Q-51.942-43.576-51.942-43.343L-51.942-42.130L-51.569-42.130Q-51.388-42.109-51.354-41.928L-51.354-41.849Q-51.388-41.662-51.569-41.641L-52.871-41.641Q-53.053-41.662-53.090-41.849M-46.364-42.943L-48.500-42.943Q-48.452-42.701-48.279-42.506Q-48.107-42.311-47.864-42.203Q-47.621-42.096-47.372-42.096Q-46.958-42.096-46.763-42.349Q-46.757-42.359-46.707-42.451Q-46.658-42.543-46.615-42.581Q-46.572-42.619-46.490-42.629L-46.364-42.629Q-46.196-42.612-46.145-42.424L-46.145-42.376Q-46.203-42.113-46.405-41.940Q-46.606-41.767-46.880-41.687Q-47.153-41.607-47.420-41.607Q-47.844-41.607-48.228-41.807Q-48.613-42.007-48.847-42.357Q-49.081-42.707-49.081-43.138L-49.081-43.189Q-49.081-43.599-48.866-43.952Q-48.650-44.304-48.293-44.509Q-47.936-44.714-47.526-44.714Q-47.085-44.714-46.775-44.519Q-46.466-44.324-46.305-43.984Q-46.145-43.644-46.145-43.203L-46.145-43.152Q-46.196-42.964-46.364-42.943M-48.493-43.425L-46.719-43.425Q-46.760-43.784-46.969-44.005Q-47.177-44.225-47.526-44.225Q-47.871-44.225-48.139-43.996Q-48.408-43.767-48.493-43.425\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(125.88 138.712)\">\u003Cpath d=\"M-55.011-41.573Q-55.572-41.573-55.910-41.902Q-56.248-42.232-56.387-42.733Q-56.525-43.234-56.525-43.784Q-56.525-44.191-56.385-44.589Q-56.245-44.987-55.992-45.302Q-55.739-45.616-55.382-45.802Q-55.025-45.989-54.597-45.989Q-54.358-45.989-54.139-45.903Q-53.921-45.818-53.787-45.647Q-53.654-45.476-53.654-45.220Q-53.654-45.066-53.753-44.960Q-53.852-44.854-54.003-44.854Q-54.157-44.854-54.259-44.953Q-54.362-45.052-54.362-45.203Q-54.362-45.308-54.297-45.414Q-54.392-45.496-54.597-45.496Q-54.963-45.496-55.257-45.286Q-55.551-45.076-55.731-44.738Q-55.910-44.399-55.951-44.051Q-55.742-44.225-55.472-44.319Q-55.202-44.413-54.922-44.413Q-54.625-44.413-54.363-44.304Q-54.102-44.194-53.910-44.003Q-53.719-43.811-53.610-43.550Q-53.500-43.288-53.500-42.991Q-53.500-42.687-53.622-42.424Q-53.743-42.161-53.953-41.971Q-54.163-41.781-54.439-41.677Q-54.714-41.573-55.011-41.573M-55.872-42.923Q-55.818-42.694-55.705-42.497Q-55.592-42.301-55.418-42.181Q-55.243-42.061-55.011-42.061Q-54.615-42.061-54.338-42.330Q-54.061-42.598-54.061-42.991Q-54.061-43.237-54.179-43.453Q-54.297-43.668-54.503-43.793Q-54.710-43.917-54.970-43.917Q-55.312-43.917-55.602-43.719Q-55.893-43.521-55.893-43.196Q-55.893-43.162-55.879-43.094Q-55.866-43.025-55.866-42.991Q-55.866-42.967-55.867-42.953Q-55.869-42.940-55.872-42.923\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.25 138.712)\">\u003Cpath d=\"M-55.011-41.573Q-55.390-41.573-55.681-41.781Q-55.971-41.990-56.165-42.330Q-56.358-42.670-56.452-43.053Q-56.546-43.435-56.546-43.784Q-56.546-44.126-56.450-44.514Q-56.354-44.902-56.165-45.235Q-55.975-45.568-55.683-45.778Q-55.390-45.989-55.011-45.989Q-54.526-45.989-54.175-45.640Q-53.825-45.291-53.652-44.779Q-53.480-44.266-53.480-43.784Q-53.480-43.299-53.652-42.784Q-53.825-42.270-54.175-41.921Q-54.526-41.573-55.011-41.573M-55.011-42.061Q-54.748-42.061-54.558-42.251Q-54.368-42.441-54.257-42.728Q-54.146-43.015-54.093-43.318Q-54.040-43.620-54.040-43.866Q-54.040-44.085-54.095-44.370Q-54.150-44.656-54.264-44.910Q-54.379-45.165-54.565-45.331Q-54.751-45.496-55.011-45.496Q-55.339-45.496-55.560-45.223Q-55.780-44.950-55.883-44.570Q-55.985-44.191-55.985-43.866Q-55.985-43.517-55.886-43.097Q-55.787-42.677-55.570-42.369Q-55.353-42.061-55.011-42.061\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 138.712)\">\u003Cpath d=\"M-56.118-41.849L-56.118-41.928Q-56.074-42.109-55.900-42.130L-55.185-42.130L-55.185-44.915Q-55.517-44.645-55.913-44.645Q-56.115-44.645-56.159-44.847L-56.159-44.926Q-56.115-45.114-55.944-45.134Q-55.657-45.134-55.435-45.343Q-55.213-45.551-55.090-45.855Q-55.028-45.968-54.891-45.989L-54.844-45.989Q-54.673-45.972-54.628-45.784L-54.628-42.130L-53.914-42.130Q-53.740-42.109-53.695-41.928L-53.695-41.849Q-53.740-41.662-53.914-41.641L-55.900-41.641Q-56.074-41.662-56.118-41.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(262.453 138.712)\">\u003Cpath d=\"M-56.118-41.849L-56.118-41.928Q-56.074-42.109-55.900-42.130L-55.185-42.130L-55.185-44.915Q-55.517-44.645-55.913-44.645Q-56.115-44.645-56.159-44.847L-56.159-44.926Q-56.115-45.114-55.944-45.134Q-55.657-45.134-55.435-45.343Q-55.213-45.551-55.090-45.855Q-55.028-45.968-54.891-45.989L-54.844-45.989Q-54.673-45.972-54.628-45.784L-54.628-42.130L-53.914-42.130Q-53.740-42.109-53.695-41.928L-53.695-41.849Q-53.740-41.662-53.914-41.641L-55.900-41.641Q-56.074-41.662-56.118-41.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(293.75 138.712)\">\u003Cpath d=\"M-55.011-41.573Q-55.390-41.573-55.681-41.781Q-55.971-41.990-56.165-42.330Q-56.358-42.670-56.452-43.053Q-56.546-43.435-56.546-43.784Q-56.546-44.126-56.450-44.514Q-56.354-44.902-56.165-45.235Q-55.975-45.568-55.683-45.778Q-55.390-45.989-55.011-45.989Q-54.526-45.989-54.175-45.640Q-53.825-45.291-53.652-44.779Q-53.480-44.266-53.480-43.784Q-53.480-43.299-53.652-42.784Q-53.825-42.270-54.175-41.921Q-54.526-41.573-55.011-41.573M-55.011-42.061Q-54.748-42.061-54.558-42.251Q-54.368-42.441-54.257-42.728Q-54.146-43.015-54.093-43.318Q-54.040-43.620-54.040-43.866Q-54.040-44.085-54.095-44.370Q-54.150-44.656-54.264-44.910Q-54.379-45.165-54.565-45.331Q-54.751-45.496-55.011-45.496Q-55.339-45.496-55.560-45.223Q-55.780-44.950-55.883-44.570Q-55.985-44.191-55.985-43.866Q-55.985-43.517-55.886-43.097Q-55.787-42.677-55.570-42.369Q-55.353-42.061-55.011-42.061M-52.926-41.849L-52.926-41.928Q-52.892-42.109-52.711-42.130L-52.355-42.130L-51.542-43.196L-52.304-44.167L-52.670-44.167Q-52.841-44.184-52.885-44.379L-52.885-44.454Q-52.841-44.639-52.670-44.659L-51.655-44.659Q-51.480-44.639-51.436-44.454L-51.436-44.379Q-51.480-44.187-51.655-44.167L-51.750-44.167L-51.316-43.593L-50.899-44.167L-51.002-44.167Q-51.176-44.187-51.221-44.379L-51.221-44.454Q-51.176-44.639-51.002-44.659L-49.987-44.659Q-49.816-44.642-49.771-44.454L-49.771-44.379Q-49.816-44.187-49.987-44.167L-50.346-44.167L-51.087-43.196L-50.246-42.130L-49.891-42.130Q-49.717-42.109-49.672-41.928L-49.672-41.849Q-49.706-41.662-49.891-41.641L-50.899-41.641Q-51.080-41.662-51.115-41.849L-51.115-41.928Q-51.080-42.109-50.899-42.130L-50.786-42.130L-51.316-42.878L-51.829-42.130L-51.702-42.130Q-51.521-42.109-51.487-41.928L-51.487-41.849Q-51.521-41.662-51.702-41.641L-52.711-41.641Q-52.882-41.658-52.926-41.849M-49.064-41.849L-49.064-41.914Q-49.036-42.061-48.948-42.102L-47.820-43.036Q-47.529-43.278-47.370-43.412Q-47.211-43.545-47.040-43.738Q-46.869-43.931-46.763-44.150Q-46.658-44.369-46.658-44.601Q-46.658-44.885-46.811-45.090Q-46.965-45.295-47.210-45.396Q-47.454-45.496-47.734-45.496Q-47.960-45.496-48.160-45.389Q-48.360-45.281-48.449-45.093Q-48.360-44.977-48.360-44.847Q-48.360-44.707-48.464-44.599Q-48.568-44.492-48.708-44.492Q-48.862-44.492-48.963-44.601Q-49.064-44.710-49.064-44.861Q-49.064-45.117-48.946-45.329Q-48.828-45.541-48.619-45.691Q-48.411-45.842-48.177-45.915Q-47.943-45.989-47.686-45.989Q-47.266-45.989-46.902-45.823Q-46.538-45.657-46.317-45.341Q-46.097-45.025-46.097-44.601Q-46.097-44.300-46.213-44.035Q-46.329-43.770-46.526-43.543Q-46.722-43.316-46.992-43.087Q-47.263-42.858-47.447-42.704L-48.155-42.130L-46.658-42.130L-46.658-42.256Q-46.613-42.441-46.439-42.461L-46.316-42.461Q-46.141-42.444-46.097-42.256L-46.097-41.849Q-46.141-41.662-46.316-41.641L-48.848-41.641Q-49.019-41.658-49.064-41.849M-45.072-41.849L-45.072-45.428L-45.441-45.428Q-45.622-45.449-45.659-45.637L-45.659-45.715Q-45.622-45.896-45.441-45.917L-44.726-45.917Q-44.555-45.896-44.511-45.715L-44.511-44.392Q-44.326-44.539-44.096-44.616Q-43.865-44.693-43.629-44.693Q-43.332-44.693-43.072-44.567Q-42.812-44.440-42.624-44.220Q-42.436-43.999-42.336-43.726Q-42.235-43.453-42.235-43.152Q-42.235-42.745-42.433-42.386Q-42.631-42.027-42.970-41.817Q-43.308-41.607-43.718-41.607Q-44.173-41.607-44.511-41.928L-44.511-41.849Q-44.555-41.658-44.726-41.641L-44.853-41.641Q-45.020-41.662-45.072-41.849M-43.756-42.096Q-43.486-42.096-43.267-42.244Q-43.048-42.393-42.922-42.639Q-42.795-42.885-42.795-43.152Q-42.795-43.405-42.905-43.649Q-43.014-43.893-43.217-44.049Q-43.421-44.204-43.684-44.204Q-43.964-44.204-44.193-44.042Q-44.422-43.880-44.511-43.617L-44.511-42.871Q-44.432-42.550-44.239-42.323Q-44.046-42.096-43.756-42.096\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 103.468h367.04\"\u002F>\u003Cg transform=\"translate(-2.157 155.784)\">\u003Cpath d=\"M-56.118-41.849L-56.118-41.928Q-56.074-42.109-55.900-42.130L-55.185-42.130L-55.185-44.915Q-55.517-44.645-55.913-44.645Q-56.115-44.645-56.159-44.847L-56.159-44.926Q-56.115-45.114-55.944-45.134Q-55.657-45.134-55.435-45.343Q-55.213-45.551-55.090-45.855Q-55.028-45.968-54.891-45.989L-54.844-45.989Q-54.673-45.972-54.628-45.784L-54.628-42.130L-53.914-42.130Q-53.740-42.109-53.695-41.928L-53.695-41.849Q-53.740-41.662-53.914-41.641L-55.900-41.641Q-56.074-41.662-56.118-41.849M-52.844-42.557Q-52.844-42.711-52.742-42.817Q-52.639-42.923-52.485-42.923Q-52.413-42.923-52.347-42.895Q-52.280-42.868-52.236-42.824Q-52.191-42.779-52.164-42.709Q-52.137-42.639-52.137-42.571Q-52.137-42.454-52.208-42.355Q-51.972-42.061-51.282-42.061Q-50.909-42.061-50.610-42.294Q-50.311-42.526-50.311-42.889Q-50.311-43.128-50.457-43.319Q-50.602-43.511-50.829-43.608Q-51.056-43.705-51.296-43.705L-51.702-43.705Q-51.887-43.726-51.914-43.917L-51.914-43.993Q-51.887-44.170-51.702-44.198L-51.241-44.232Q-51.053-44.232-50.886-44.339Q-50.718-44.447-50.619-44.625Q-50.520-44.803-50.520-44.987Q-50.520-45.226-50.768-45.361Q-51.015-45.496-51.282-45.496Q-51.774-45.496-51.983-45.329Q-51.928-45.230-51.928-45.134Q-51.928-44.984-52.027-44.885Q-52.126-44.786-52.277-44.786Q-52.430-44.786-52.531-44.893Q-52.632-45.001-52.632-45.148Q-52.632-45.609-52.219-45.799Q-51.805-45.989-51.282-45.989Q-50.985-45.989-50.674-45.874Q-50.363-45.760-50.161-45.534Q-49.959-45.308-49.959-44.987Q-49.959-44.686-50.106-44.420Q-50.253-44.153-50.513-43.979Q-50.188-43.822-49.970-43.528Q-49.751-43.234-49.751-42.889Q-49.751-42.499-49.973-42.200Q-50.195-41.901-50.547-41.737Q-50.899-41.573-51.282-41.573Q-51.532-41.573-51.798-41.620Q-52.065-41.668-52.306-41.779Q-52.547-41.891-52.695-42.085Q-52.844-42.280-52.844-42.557\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 155.784)\">\u003Cpath d=\"M-56.805-41.849L-56.805-41.928Q-56.768-42.109-56.587-42.130L-56.218-42.130L-56.218-45.428L-56.587-45.428Q-56.768-45.449-56.805-45.637L-56.805-45.715Q-56.768-45.896-56.587-45.917L-55.872-45.917Q-55.701-45.896-55.657-45.715L-55.657-44.358Q-55.254-44.693-54.731-44.693Q-54.427-44.693-54.218-44.570Q-54.010-44.447-53.909-44.222Q-53.808-43.996-53.808-43.685L-53.808-42.130L-53.435-42.130Q-53.254-42.109-53.220-41.928L-53.220-41.849Q-53.254-41.662-53.435-41.641L-54.656-41.641Q-54.826-41.662-54.871-41.849L-54.871-41.928Q-54.826-42.113-54.656-42.130L-54.368-42.130L-54.368-43.658Q-54.368-43.928-54.447-44.066Q-54.526-44.204-54.782-44.204Q-55.018-44.204-55.218-44.090Q-55.418-43.975-55.537-43.776Q-55.657-43.576-55.657-43.343L-55.657-42.130L-55.284-42.130Q-55.103-42.109-55.069-41.928L-55.069-41.849Q-55.103-41.662-55.284-41.641L-56.587-41.641Q-56.768-41.662-56.805-41.849M-52.796-42.615Q-52.796-43.005-52.434-43.230Q-52.072-43.456-51.598-43.543Q-51.125-43.630-50.680-43.637Q-50.680-43.825-50.798-43.958Q-50.916-44.092-51.097-44.158Q-51.279-44.225-51.463-44.225Q-51.764-44.225-51.904-44.204L-51.904-44.153Q-51.904-44.006-52.008-43.905Q-52.113-43.805-52.256-43.805Q-52.410-43.805-52.511-43.912Q-52.612-44.020-52.612-44.167Q-52.612-44.522-52.278-44.618Q-51.945-44.714-51.456-44.714Q-51.221-44.714-50.986-44.645Q-50.752-44.577-50.556-44.445Q-50.359-44.314-50.240-44.121Q-50.120-43.928-50.120-43.685L-50.120-42.181Q-50.120-42.130-49.659-42.130Q-49.488-42.113-49.443-41.928L-49.443-41.849Q-49.488-41.662-49.659-41.641L-49.785-41.641Q-50.086-41.641-50.286-41.682Q-50.486-41.723-50.612-41.887Q-51.015-41.607-51.634-41.607Q-51.928-41.607-52.195-41.730Q-52.461-41.853-52.629-42.082Q-52.796-42.311-52.796-42.615M-52.236-42.608Q-52.236-42.369-52.024-42.232Q-51.812-42.096-51.562-42.096Q-51.371-42.096-51.168-42.147Q-50.964-42.198-50.822-42.319Q-50.680-42.441-50.680-42.636L-50.680-43.152Q-50.927-43.152-51.291-43.102Q-51.655-43.053-51.945-42.931Q-52.236-42.810-52.236-42.608M-49.043-41.849L-49.043-41.928Q-48.999-42.109-48.828-42.130L-47.861-42.130L-47.861-45.428L-48.828-45.428Q-48.999-45.449-49.043-45.637L-49.043-45.715Q-48.999-45.896-48.828-45.917L-47.519-45.917Q-47.351-45.896-47.300-45.715L-47.300-42.130L-46.336-42.130Q-46.162-42.109-46.117-41.928L-46.117-41.849Q-46.162-41.662-46.336-41.641L-48.828-41.641Q-48.999-41.662-49.043-41.849M-44.672-42.608L-44.672-44.167L-45.328-44.167Q-45.502-44.187-45.547-44.379L-45.547-44.454Q-45.502-44.639-45.328-44.659L-44.672-44.659L-44.672-45.315Q-44.627-45.496-44.453-45.520L-44.326-45.520Q-44.156-45.496-44.111-45.315L-44.111-44.659L-42.922-44.659Q-42.754-44.642-42.703-44.454L-42.703-44.379Q-42.751-44.187-42.922-44.167L-44.111-44.167L-44.111-42.636Q-44.111-42.096-43.609-42.096Q-43.390-42.096-43.246-42.258Q-43.103-42.420-43.103-42.636Q-43.103-42.718-43.040-42.779Q-42.976-42.841-42.888-42.851L-42.761-42.851Q-42.587-42.830-42.542-42.649L-42.542-42.608Q-42.542-42.325-42.703-42.094Q-42.864-41.863-43.120-41.735Q-43.376-41.607-43.657-41.607Q-44.104-41.607-44.388-41.879Q-44.672-42.150-44.672-42.608\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(125.88 155.784)\">\u003Cpath d=\"M-55.011-41.573Q-55.572-41.573-55.910-41.902Q-56.248-42.232-56.387-42.733Q-56.525-43.234-56.525-43.784Q-56.525-44.191-56.385-44.589Q-56.245-44.987-55.992-45.302Q-55.739-45.616-55.382-45.802Q-55.025-45.989-54.597-45.989Q-54.358-45.989-54.139-45.903Q-53.921-45.818-53.787-45.647Q-53.654-45.476-53.654-45.220Q-53.654-45.066-53.753-44.960Q-53.852-44.854-54.003-44.854Q-54.157-44.854-54.259-44.953Q-54.362-45.052-54.362-45.203Q-54.362-45.308-54.297-45.414Q-54.392-45.496-54.597-45.496Q-54.963-45.496-55.257-45.286Q-55.551-45.076-55.731-44.738Q-55.910-44.399-55.951-44.051Q-55.742-44.225-55.472-44.319Q-55.202-44.413-54.922-44.413Q-54.625-44.413-54.363-44.304Q-54.102-44.194-53.910-44.003Q-53.719-43.811-53.610-43.550Q-53.500-43.288-53.500-42.991Q-53.500-42.687-53.622-42.424Q-53.743-42.161-53.953-41.971Q-54.163-41.781-54.439-41.677Q-54.714-41.573-55.011-41.573M-55.872-42.923Q-55.818-42.694-55.705-42.497Q-55.592-42.301-55.418-42.181Q-55.243-42.061-55.011-42.061Q-54.615-42.061-54.338-42.330Q-54.061-42.598-54.061-42.991Q-54.061-43.237-54.179-43.453Q-54.297-43.668-54.503-43.793Q-54.710-43.917-54.970-43.917Q-55.312-43.917-55.602-43.719Q-55.893-43.521-55.893-43.196Q-55.893-43.162-55.879-43.094Q-55.866-43.025-55.866-42.991Q-55.866-42.967-55.867-42.953Q-55.869-42.940-55.872-42.923\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.25 155.784)\">\u003Cpath d=\"M-55.011-41.573Q-55.390-41.573-55.681-41.781Q-55.971-41.990-56.165-42.330Q-56.358-42.670-56.452-43.053Q-56.546-43.435-56.546-43.784Q-56.546-44.126-56.450-44.514Q-56.354-44.902-56.165-45.235Q-55.975-45.568-55.683-45.778Q-55.390-45.989-55.011-45.989Q-54.526-45.989-54.175-45.640Q-53.825-45.291-53.652-44.779Q-53.480-44.266-53.480-43.784Q-53.480-43.299-53.652-42.784Q-53.825-42.270-54.175-41.921Q-54.526-41.573-55.011-41.573M-55.011-42.061Q-54.748-42.061-54.558-42.251Q-54.368-42.441-54.257-42.728Q-54.146-43.015-54.093-43.318Q-54.040-43.620-54.040-43.866Q-54.040-44.085-54.095-44.370Q-54.150-44.656-54.264-44.910Q-54.379-45.165-54.565-45.331Q-54.751-45.496-55.011-45.496Q-55.339-45.496-55.560-45.223Q-55.780-44.950-55.883-44.570Q-55.985-44.191-55.985-43.866Q-55.985-43.517-55.886-43.097Q-55.787-42.677-55.570-42.369Q-55.353-42.061-55.011-42.061\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 155.784)\">\u003Cpath d=\"M-56.118-41.849L-56.118-41.928Q-56.074-42.109-55.900-42.130L-55.185-42.130L-55.185-44.915Q-55.517-44.645-55.913-44.645Q-56.115-44.645-56.159-44.847L-56.159-44.926Q-56.115-45.114-55.944-45.134Q-55.657-45.134-55.435-45.343Q-55.213-45.551-55.090-45.855Q-55.028-45.968-54.891-45.989L-54.844-45.989Q-54.673-45.972-54.628-45.784L-54.628-42.130L-53.914-42.130Q-53.740-42.109-53.695-41.928L-53.695-41.849Q-53.740-41.662-53.914-41.641L-55.900-41.641Q-56.074-41.662-56.118-41.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(262.453 155.784)\">\u003Cpath d=\"M-56.118-41.849L-56.118-41.928Q-56.074-42.109-55.900-42.130L-55.185-42.130L-55.185-44.915Q-55.517-44.645-55.913-44.645Q-56.115-44.645-56.159-44.847L-56.159-44.926Q-56.115-45.114-55.944-45.134Q-55.657-45.134-55.435-45.343Q-55.213-45.551-55.090-45.855Q-55.028-45.968-54.891-45.989L-54.844-45.989Q-54.673-45.972-54.628-45.784L-54.628-42.130L-53.914-42.130Q-53.740-42.109-53.695-41.928L-53.695-41.849Q-53.740-41.662-53.914-41.641L-55.900-41.641Q-56.074-41.662-56.118-41.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(293.75 155.511)\">\u003Cpath d=\"M-53.808-43.511L-56.207-43.511Q-56.317-43.521-56.392-43.596Q-56.467-43.671-56.467-43.784Q-56.467-43.897-56.392-43.969Q-56.317-44.040-56.207-44.051L-53.808-44.051Q-53.699-44.040-53.627-43.969Q-53.555-43.897-53.555-43.784Q-53.555-43.671-53.627-43.596Q-53.699-43.521-53.808-43.511M-50.093-43.511L-52.492-43.511Q-52.601-43.521-52.677-43.596Q-52.752-43.671-52.752-43.784Q-52.752-43.897-52.677-43.969Q-52.601-44.040-52.492-44.051L-50.093-44.051Q-49.983-44.040-49.911-43.969Q-49.840-43.897-49.840-43.784Q-49.840-43.671-49.911-43.596Q-49.983-43.521-50.093-43.511\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 120.54h367.04\"\u002F>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">Register and flag state after each loop cycle (cycles 4-12), plus the halt. %rax accumulates 3, 5, 6 while %rdi counts down 2, 1, 0; the subq that zeroes %rdi sets ZF=1, so the next jne falls through and halt stops with %rax = 6. %r8 stays 1 throughout.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:556.128px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 417.096 152.078\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-72.07h404.029\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-25.33 2.43)\">\u003Cpath d=\"M11.267-59.266L8.953-59.266L8.953-59.546Q9.675-59.546 9.675-59.755L9.675-63.556Q9.675-63.767 8.953-63.767L8.953-64.048L13.137-64.048L13.349-62.411L13.082-62.411Q13.004-63.022 12.852-63.301Q12.699-63.579 12.395-63.673Q12.091-63.767 11.466-63.767L10.731-63.767Q10.543-63.767 10.454-63.733Q10.365-63.699 10.365-63.556L10.365-61.799L10.919-61.799Q11.288-61.799 11.472-61.853Q11.657-61.908 11.736-62.081Q11.814-62.253 11.814-62.619L12.081-62.619L12.081-60.702L11.814-60.702Q11.814-61.067 11.736-61.240Q11.657-61.412 11.472-61.465Q11.288-61.518 10.919-61.518L10.365-61.518L10.365-59.755Q10.365-59.546 11.267-59.546\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-25.33 2.43)\">\u003Cpath d=\"M13.361-60.801Q13.361-61.122 13.486-61.411Q13.611-61.700 13.837-61.923Q14.062-62.147 14.358-62.267Q14.653-62.387 14.971-62.387Q15.299-62.387 15.561-62.287Q15.822-62.188 15.998-62.006Q16.174-61.823 16.268-61.565Q16.362-61.307 16.362-60.975Q16.362-60.883 16.280-60.862L14.025-60.862L14.025-60.801Q14.025-60.213 14.308-59.830Q14.592-59.447 15.159-59.447Q15.481-59.447 15.749-59.640Q16.017-59.833 16.106-60.148Q16.113-60.189 16.188-60.203L16.280-60.203Q16.362-60.179 16.362-60.107Q16.362-60.100 16.356-60.073Q16.243-59.676 15.872-59.437Q15.501-59.198 15.077-59.198Q14.640-59.198 14.240-59.406Q13.840-59.615 13.601-59.982Q13.361-60.349 13.361-60.801M14.031-61.071L15.846-61.071Q15.846-61.348 15.749-61.600Q15.651-61.853 15.453-62.009Q15.255-62.164 14.971-62.164Q14.694-62.164 14.481-62.006Q14.267-61.847 14.149-61.592Q14.031-61.337 14.031-61.071M17.477-60.107L17.477-62.004L16.838-62.004L16.838-62.226Q17.155-62.226 17.372-62.436Q17.589-62.646 17.690-62.956Q17.791-63.265 17.791-63.573L18.058-63.573L18.058-62.284L19.134-62.284L19.134-62.004L18.058-62.004L18.058-60.120Q18.058-59.844 18.162-59.645Q18.266-59.447 18.526-59.447Q18.683-59.447 18.789-59.551Q18.895-59.656 18.945-59.809Q18.994-59.963 18.994-60.120L18.994-60.534L19.261-60.534L19.261-60.107Q19.261-59.881 19.162-59.671Q19.063-59.461 18.878-59.329Q18.693-59.198 18.464-59.198Q18.027-59.198 17.752-59.435Q17.477-59.673 17.477-60.107M20.071-60.777Q20.071-61.105 20.206-61.406Q20.341-61.706 20.577-61.927Q20.813-62.147 21.117-62.267Q21.421-62.387 21.746-62.387Q22.252-62.387 22.600-62.284Q22.949-62.182 22.949-61.806Q22.949-61.659 22.851-61.558Q22.754-61.457 22.607-61.457Q22.453-61.457 22.354-61.556Q22.255-61.655 22.255-61.806Q22.255-61.994 22.395-62.086Q22.193-62.137 21.753-62.137Q21.397-62.137 21.168-61.941Q20.939-61.744 20.838-61.435Q20.737-61.125 20.737-60.777Q20.737-60.428 20.864-60.122Q20.990-59.816 21.245-59.632Q21.500-59.447 21.855-59.447Q22.077-59.447 22.262-59.531Q22.446-59.615 22.581-59.770Q22.716-59.926 22.775-60.134Q22.788-60.189 22.843-60.189L22.956-60.189Q22.986-60.189 23.009-60.165Q23.031-60.141 23.031-60.107L23.031-60.086Q22.945-59.799 22.757-59.601Q22.569-59.403 22.305-59.300Q22.040-59.198 21.746-59.198Q21.315-59.198 20.927-59.404Q20.539-59.611 20.305-59.974Q20.071-60.336 20.071-60.777\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-25.33 2.43)\">\u003Cpath d=\"M25.105-59.266L23.471-59.266L23.471-59.546Q23.700-59.546 23.849-59.580Q23.998-59.615 23.998-59.755L23.998-63.374Q23.998-63.644 23.890-63.706Q23.782-63.767 23.471-63.767L23.471-64.048L24.551-64.123L24.551-61.737Q24.657-61.922 24.835-62.064Q25.013-62.205 25.221-62.279Q25.430-62.352 25.655-62.352Q26.161-62.352 26.445-62.129Q26.729-61.905 26.729-61.409L26.729-59.755Q26.729-59.618 26.877-59.582Q27.026-59.546 27.252-59.546L27.252-59.266L25.621-59.266L25.621-59.546Q25.850-59.546 25.999-59.580Q26.148-59.615 26.148-59.755L26.148-61.395Q26.148-61.730 26.028-61.930Q25.908-62.130 25.594-62.130Q25.324-62.130 25.090-61.994Q24.856-61.857 24.717-61.623Q24.579-61.389 24.579-61.115L24.579-59.755Q24.579-59.618 24.729-59.582Q24.880-59.546 25.105-59.546\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M9.726-59.266L9.445-59.266L9.445-63.985Q9.445-64.200 9.383-64.295Q9.320-64.391 9.203-64.412Q9.086-64.434 8.840-64.434L8.840-64.731L10.062-64.817L10.062-62.328Q10.539-62.793 11.238-62.793Q11.719-62.793 12.127-62.549Q12.535-62.305 12.771-61.891Q13.008-61.477 13.008-60.993Q13.008-60.618 12.859-60.289Q12.711-59.961 12.441-59.709Q12.172-59.457 11.828-59.323Q11.484-59.188 11.125-59.188Q10.804-59.188 10.506-59.336Q10.207-59.485 10-59.746L9.726-59.266M10.086-61.938L10.086-60.098Q10.238-59.801 10.498-59.621Q10.758-59.442 11.070-59.442Q11.496-59.442 11.763-59.661Q12.031-59.879 12.146-60.225Q12.261-60.571 12.261-60.993Q12.261-61.641 12.013-62.090Q11.765-62.539 11.168-62.539Q10.832-62.539 10.543-62.381Q10.254-62.223 10.086-61.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M13.716-57.969Q13.830-57.891 14.005-57.891Q14.294-57.891 14.515-58.104Q14.736-58.317 14.861-58.618L15.150-59.266L13.876-62.153Q13.794-62.328 13.650-62.373Q13.505-62.418 13.236-62.418L13.236-62.715L14.955-62.715L14.955-62.418Q14.533-62.418 14.533-62.235Q14.533-62.223 14.548-62.153L15.486-60.028L16.318-61.938Q16.357-62.028 16.357-62.106Q16.357-62.246 16.255-62.332Q16.154-62.418 16.013-62.418L16.013-62.715L17.365-62.715L17.365-62.418Q17.111-62.418 16.917-62.293Q16.724-62.168 16.619-61.938L15.173-58.618Q15.060-58.364 14.894-58.141Q14.728-57.918 14.499-57.776Q14.271-57.633 14.005-57.633Q13.708-57.633 13.468-57.825Q13.228-58.016 13.228-58.305Q13.228-58.461 13.333-58.563Q13.439-58.664 13.587-58.664Q13.693-58.664 13.773-58.618Q13.853-58.571 13.900-58.493Q13.947-58.414 13.947-58.305Q13.947-58.184 13.886-58.096Q13.826-58.008 13.716-57.969M18.404-60.227L18.404-62.418L17.701-62.418L17.701-62.672Q18.056-62.672 18.298-62.905Q18.540-63.137 18.652-63.485Q18.763-63.832 18.763-64.188L19.044-64.188L19.044-62.715L20.220-62.715L20.220-62.418L19.044-62.418L19.044-60.243Q19.044-59.922 19.164-59.694Q19.283-59.465 19.564-59.465Q19.744-59.465 19.861-59.588Q19.978-59.711 20.031-59.891Q20.083-60.071 20.083-60.243L20.083-60.715L20.365-60.715L20.365-60.227Q20.365-59.973 20.259-59.733Q20.154-59.493 19.956-59.340Q19.759-59.188 19.501-59.188Q19.185-59.188 18.933-59.311Q18.681-59.434 18.542-59.668Q18.404-59.903 18.404-60.227M21.083-61.020Q21.083-61.500 21.316-61.916Q21.548-62.332 21.958-62.582Q22.369-62.832 22.845-62.832Q23.576-62.832 23.974-62.391Q24.373-61.950 24.373-61.219Q24.373-61.114 24.279-61.090L21.830-61.090L21.830-61.020Q21.830-60.610 21.951-60.254Q22.072-59.899 22.343-59.682Q22.615-59.465 23.044-59.465Q23.408-59.465 23.705-59.694Q24.001-59.922 24.103-60.274Q24.111-60.321 24.197-60.336L24.279-60.336Q24.373-60.309 24.373-60.227Q24.373-60.219 24.365-60.188Q24.302-59.961 24.164-59.778Q24.025-59.594 23.833-59.461Q23.642-59.328 23.423-59.258Q23.205-59.188 22.966-59.188Q22.595-59.188 22.257-59.325Q21.919-59.461 21.652-59.713Q21.384-59.965 21.234-60.305Q21.083-60.645 21.083-61.020M21.837-61.328L23.798-61.328Q23.798-61.633 23.697-61.924Q23.595-62.215 23.378-62.397Q23.162-62.578 22.845-62.578Q22.544-62.578 22.314-62.391Q22.083-62.203 21.960-61.912Q21.837-61.621 21.837-61.328M24.904-59.274L24.904-60.496Q24.904-60.524 24.935-60.555Q24.966-60.586 24.990-60.586L25.095-60.586Q25.165-60.586 25.181-60.524Q25.244-60.203 25.382-59.963Q25.521-59.723 25.753-59.582Q25.986-59.442 26.294-59.442Q26.533-59.442 26.742-59.502Q26.951-59.563 27.087-59.711Q27.224-59.860 27.224-60.106Q27.224-60.360 27.013-60.526Q26.802-60.692 26.533-60.746L25.912-60.860Q25.505-60.938 25.205-61.194Q24.904-61.450 24.904-61.825Q24.904-62.192 25.105-62.414Q25.306-62.637 25.630-62.735Q25.955-62.832 26.294-62.832Q26.759-62.832 27.056-62.625L27.279-62.809Q27.302-62.832 27.333-62.832L27.384-62.832Q27.415-62.832 27.443-62.805Q27.470-62.778 27.470-62.746L27.470-61.762Q27.470-61.731 27.445-61.702Q27.419-61.672 27.384-61.672L27.279-61.672Q27.244-61.672 27.216-61.700Q27.189-61.727 27.189-61.762Q27.189-62.161 26.937-62.381Q26.685-62.602 26.287-62.602Q25.931-62.602 25.648-62.479Q25.365-62.356 25.365-62.051Q25.365-61.832 25.566-61.700Q25.767-61.567 26.013-61.524L26.638-61.411Q27.068-61.321 27.376-61.024Q27.685-60.727 27.685-60.313Q27.685-59.743 27.287-59.465Q26.888-59.188 26.294-59.188Q25.744-59.188 25.392-59.524L25.095-59.211Q25.072-59.188 25.037-59.188L24.990-59.188Q24.966-59.188 24.935-59.219Q24.904-59.250 24.904-59.274\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M32.937-59.098Q32.265-59.098 31.869-59.522Q31.472-59.946 31.320-60.565Q31.168-61.184 31.168-61.852Q31.168-62.512 31.439-63.145Q31.711-63.778 32.224-64.182Q32.738-64.586 33.410-64.586Q33.699-64.586 33.947-64.487Q34.195-64.387 34.341-64.186Q34.488-63.985 34.488-63.680Q34.488-63.575 34.437-63.483Q34.386-63.391 34.295-63.340Q34.203-63.289 34.097-63.289Q33.929-63.289 33.816-63.403Q33.703-63.516 33.703-63.680Q33.703-63.840 33.812-63.957Q33.921-64.075 34.089-64.075Q33.890-64.344 33.410-64.344Q32.992-64.344 32.660-64.067Q32.328-63.789 32.152-63.371Q31.953-62.871 31.953-61.969Q32.117-62.293 32.396-62.493Q32.675-62.692 33.023-62.692Q33.507-62.692 33.892-62.446Q34.277-62.200 34.490-61.791Q34.703-61.383 34.703-60.899Q34.703-60.407 34.472-59.995Q34.242-59.582 33.832-59.340Q33.421-59.098 32.937-59.098M32.937-59.371Q33.363-59.371 33.580-59.592Q33.796-59.813 33.859-60.139Q33.921-60.465 33.921-60.899Q33.921-61.211 33.896-61.461Q33.871-61.711 33.781-61.936Q33.691-62.161 33.496-62.297Q33.300-62.434 32.984-62.434Q32.656-62.434 32.423-62.225Q32.191-62.016 32.080-61.698Q31.968-61.379 31.968-61.067Q31.972-61.028 31.974-60.995Q31.976-60.961 31.976-60.907Q31.976-60.891 31.974-60.883Q31.972-60.875 31.968-60.868Q31.968-60.293 32.195-59.832Q32.421-59.371 32.937-59.371M37.183-59.098Q36.480-59.098 36.080-59.498Q35.679-59.899 35.535-60.508Q35.390-61.118 35.390-61.817Q35.390-62.340 35.461-62.803Q35.531-63.266 35.724-63.678Q35.918-64.090 36.275-64.338Q36.632-64.586 37.183-64.586Q37.734-64.586 38.091-64.338Q38.449-64.090 38.640-63.680Q38.832-63.270 38.902-62.801Q38.972-62.332 38.972-61.817Q38.972-61.118 38.830-60.510Q38.687-59.903 38.287-59.500Q37.886-59.098 37.183-59.098M37.183-59.356Q37.656-59.356 37.888-59.791Q38.121-60.227 38.175-60.766Q38.230-61.305 38.230-61.946Q38.230-62.942 38.046-63.635Q37.863-64.328 37.183-64.328Q36.816-64.328 36.595-64.090Q36.375-63.852 36.279-63.495Q36.183-63.137 36.158-62.766Q36.132-62.395 36.132-61.946Q36.132-61.305 36.187-60.766Q36.242-60.227 36.474-59.791Q36.707-59.356 37.183-59.356\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M43.645-59.489Q43.645-59.914 43.729-60.364Q43.813-60.813 43.969-61.231Q44.126-61.649 44.340-62.036Q44.555-62.422 44.829-62.778L45.555-63.731L44.645-63.731Q43.149-63.731 43.110-63.692Q43.040-63.610 42.993-63.420Q42.946-63.231 42.903-62.953L42.622-62.953L42.891-64.672L43.172-64.672L43.172-64.649Q43.172-64.504 43.690-64.461Q44.208-64.418 44.700-64.418L46.270-64.418L46.270-64.227Q46.262-64.188 46.247-64.161L45.071-62.625Q44.770-62.207 44.631-61.700Q44.493-61.192 44.462-60.698Q44.430-60.203 44.430-59.489Q44.430-59.383 44.379-59.291Q44.329-59.200 44.237-59.149Q44.145-59.098 44.036-59.098Q43.930-59.098 43.838-59.149Q43.747-59.200 43.696-59.291Q43.645-59.383 43.645-59.489M48.516-59.098Q47.813-59.098 47.413-59.498Q47.012-59.899 46.868-60.508Q46.723-61.118 46.723-61.817Q46.723-62.340 46.794-62.803Q46.864-63.266 47.057-63.678Q47.251-64.090 47.608-64.338Q47.965-64.586 48.516-64.586Q49.067-64.586 49.424-64.338Q49.782-64.090 49.973-63.680Q50.165-63.270 50.235-62.801Q50.305-62.332 50.305-61.817Q50.305-61.118 50.163-60.510Q50.020-59.903 49.620-59.500Q49.219-59.098 48.516-59.098M48.516-59.356Q48.989-59.356 49.221-59.791Q49.454-60.227 49.508-60.766Q49.563-61.305 49.563-61.946Q49.563-62.942 49.379-63.635Q49.196-64.328 48.516-64.328Q48.149-64.328 47.928-64.090Q47.708-63.852 47.612-63.495Q47.516-63.137 47.491-62.766Q47.465-62.395 47.465-61.946Q47.465-61.305 47.520-60.766Q47.575-60.227 47.807-59.791Q48.040-59.356 48.516-59.356M51.360-59.731Q51.360-59.914 51.497-60.051Q51.633-60.188 51.825-60.188Q52.016-60.188 52.149-60.055Q52.282-59.922 52.282-59.731Q52.282-59.532 52.149-59.399Q52.016-59.266 51.825-59.266Q51.633-59.266 51.497-59.403Q51.360-59.539 51.360-59.731M51.360-62.258Q51.360-62.442 51.497-62.578Q51.633-62.715 51.825-62.715Q52.016-62.715 52.149-62.582Q52.282-62.450 52.282-62.258Q52.282-62.059 52.149-61.926Q52.016-61.793 51.825-61.793Q51.633-61.793 51.497-61.930Q51.360-62.067 51.360-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M58.887-59.266L57.109-59.266L57.109-59.563Q57.383-59.563 57.551-59.610Q57.719-59.657 57.719-59.825L57.719-61.961Q57.719-62.176 57.662-62.272Q57.605-62.368 57.492-62.389Q57.379-62.411 57.133-62.411L57.133-62.707L58.332-62.793L58.332-59.825Q58.332-59.657 58.478-59.610Q58.625-59.563 58.887-59.563L58.887-59.266M57.445-64.188Q57.445-64.379 57.580-64.510Q57.715-64.641 57.910-64.641Q58.031-64.641 58.135-64.578Q58.238-64.516 58.301-64.412Q58.363-64.309 58.363-64.188Q58.363-63.993 58.232-63.858Q58.102-63.723 57.910-63.723Q57.711-63.723 57.578-63.856Q57.445-63.989 57.445-64.188M59.430-60.993Q59.430-61.489 59.680-61.914Q59.930-62.340 60.350-62.586Q60.769-62.832 61.269-62.832Q61.809-62.832 62.199-62.707Q62.590-62.582 62.590-62.168Q62.590-62.063 62.539-61.971Q62.488-61.879 62.396-61.828Q62.305-61.778 62.195-61.778Q62.090-61.778 61.998-61.828Q61.906-61.879 61.855-61.971Q61.805-62.063 61.805-62.168Q61.805-62.391 61.973-62.496Q61.750-62.555 61.277-62.555Q60.980-62.555 60.766-62.416Q60.551-62.278 60.420-62.047Q60.289-61.817 60.230-61.547Q60.172-61.278 60.172-60.993Q60.172-60.598 60.305-60.248Q60.437-59.899 60.709-59.682Q60.980-59.465 61.379-59.465Q61.754-59.465 62.029-59.682Q62.305-59.899 62.406-60.258Q62.422-60.321 62.484-60.321L62.590-60.321Q62.625-60.321 62.650-60.293Q62.676-60.266 62.676-60.227L62.676-60.203Q62.543-59.723 62.158-59.455Q61.773-59.188 61.269-59.188Q60.906-59.188 60.572-59.325Q60.238-59.461 59.978-59.711Q59.719-59.961 59.574-60.297Q59.430-60.633 59.430-60.993M63.164-60.961Q63.164-61.465 63.420-61.897Q63.676-62.328 64.111-62.580Q64.547-62.832 65.047-62.832Q65.434-62.832 65.775-62.688Q66.117-62.543 66.379-62.282Q66.641-62.020 66.783-61.684Q66.926-61.348 66.926-60.961Q66.926-60.469 66.662-60.059Q66.398-59.649 65.969-59.418Q65.539-59.188 65.047-59.188Q64.555-59.188 64.121-59.420Q63.687-59.653 63.426-60.061Q63.164-60.469 63.164-60.961M65.047-59.465Q65.504-59.465 65.756-59.688Q66.008-59.911 66.096-60.262Q66.184-60.614 66.184-61.059Q66.184-61.489 66.090-61.827Q65.996-62.164 65.742-62.371Q65.488-62.578 65.047-62.578Q64.398-62.578 64.154-62.162Q63.910-61.746 63.910-61.059Q63.910-60.614 63.998-60.262Q64.086-59.911 64.338-59.688Q64.590-59.465 65.047-59.465\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M69.469-59.188Q68.988-59.188 68.580-59.432Q68.172-59.676 67.934-60.090Q67.695-60.504 67.695-60.993Q67.695-61.485 67.953-61.901Q68.211-62.317 68.643-62.555Q69.074-62.793 69.566-62.793Q70.187-62.793 70.637-62.356L70.637-63.985Q70.637-64.200 70.574-64.295Q70.512-64.391 70.394-64.412Q70.277-64.434 70.031-64.434L70.031-64.731L71.254-64.817L71.254-60.008Q71.254-59.797 71.316-59.702Q71.379-59.606 71.496-59.584Q71.613-59.563 71.863-59.563L71.863-59.266L70.613-59.188L70.613-59.672Q70.148-59.188 69.469-59.188M69.535-59.442Q69.875-59.442 70.168-59.633Q70.461-59.825 70.613-60.121L70.613-61.953Q70.465-62.227 70.203-62.383Q69.941-62.539 69.629-62.539Q69.004-62.539 68.721-62.092Q68.437-61.645 68.437-60.985Q68.437-60.340 68.689-59.891Q68.941-59.442 69.535-59.442M72.371-61.020Q72.371-61.500 72.603-61.916Q72.836-62.332 73.246-62.582Q73.656-62.832 74.133-62.832Q74.863-62.832 75.262-62.391Q75.660-61.950 75.660-61.219Q75.660-61.114 75.566-61.090L73.117-61.090L73.117-61.020Q73.117-60.610 73.238-60.254Q73.359-59.899 73.631-59.682Q73.902-59.465 74.332-59.465Q74.695-59.465 74.992-59.694Q75.289-59.922 75.391-60.274Q75.398-60.321 75.484-60.336L75.566-60.336Q75.660-60.309 75.660-60.227Q75.660-60.219 75.652-60.188Q75.590-59.961 75.451-59.778Q75.312-59.594 75.121-59.461Q74.930-59.328 74.711-59.258Q74.492-59.188 74.254-59.188Q73.883-59.188 73.545-59.325Q73.207-59.461 72.939-59.713Q72.672-59.965 72.521-60.305Q72.371-60.645 72.371-61.020M73.125-61.328L75.086-61.328Q75.086-61.633 74.984-61.924Q74.883-62.215 74.666-62.397Q74.449-62.578 74.133-62.578Q73.832-62.578 73.602-62.391Q73.371-62.203 73.248-61.912Q73.125-61.621 73.125-61.328M81.871-60.243L76.559-60.243Q76.480-60.250 76.432-60.299Q76.383-60.348 76.383-60.426Q76.383-60.496 76.430-60.547Q76.477-60.598 76.559-60.610L81.871-60.610Q81.945-60.598 81.992-60.547Q82.039-60.496 82.039-60.426Q82.039-60.348 81.990-60.299Q81.941-60.250 81.871-60.243M81.871-61.930L76.559-61.930Q76.480-61.938 76.432-61.987Q76.383-62.036 76.383-62.114Q76.383-62.184 76.430-62.235Q76.477-62.286 76.559-62.297L81.871-62.297Q81.945-62.286 81.992-62.235Q82.039-62.184 82.039-62.114Q82.039-62.036 81.990-61.987Q81.941-61.938 81.871-61.930M84.641-59.098Q83.969-59.098 83.572-59.522Q83.176-59.946 83.023-60.565Q82.871-61.184 82.871-61.852Q82.871-62.512 83.143-63.145Q83.414-63.778 83.928-64.182Q84.441-64.586 85.113-64.586Q85.402-64.586 85.650-64.487Q85.898-64.387 86.045-64.186Q86.191-63.985 86.191-63.680Q86.191-63.575 86.141-63.483Q86.090-63.391 85.998-63.340Q85.906-63.289 85.801-63.289Q85.633-63.289 85.519-63.403Q85.406-63.516 85.406-63.680Q85.406-63.840 85.516-63.957Q85.625-64.075 85.793-64.075Q85.594-64.344 85.113-64.344Q84.695-64.344 84.363-64.067Q84.031-63.789 83.855-63.371Q83.656-62.871 83.656-61.969Q83.820-62.293 84.100-62.493Q84.379-62.692 84.727-62.692Q85.211-62.692 85.596-62.446Q85.980-62.200 86.193-61.791Q86.406-61.383 86.406-60.899Q86.406-60.407 86.176-59.995Q85.945-59.582 85.535-59.340Q85.125-59.098 84.641-59.098M84.641-59.371Q85.066-59.371 85.283-59.592Q85.500-59.813 85.562-60.139Q85.625-60.465 85.625-60.899Q85.625-61.211 85.600-61.461Q85.574-61.711 85.484-61.936Q85.394-62.161 85.199-62.297Q85.004-62.434 84.687-62.434Q84.359-62.434 84.127-62.225Q83.894-62.016 83.783-61.698Q83.672-61.379 83.672-61.067Q83.676-61.028 83.678-60.995Q83.680-60.961 83.680-60.907Q83.680-60.891 83.678-60.883Q83.676-60.875 83.672-60.868Q83.672-60.293 83.898-59.832Q84.125-59.371 84.641-59.371M87.590-57.860Q87.590-57.883 87.621-57.930Q87.914-58.192 88.080-58.559Q88.246-58.926 88.246-59.313L88.246-59.371Q88.117-59.266 87.949-59.266Q87.758-59.266 87.621-59.399Q87.484-59.532 87.484-59.731Q87.484-59.922 87.621-60.055Q87.758-60.188 87.949-60.188Q88.250-60.188 88.375-59.918Q88.500-59.649 88.500-59.313Q88.500-58.864 88.318-58.450Q88.137-58.036 87.797-57.739Q87.773-57.715 87.734-57.715Q87.687-57.715 87.639-57.760Q87.590-57.805 87.590-57.860\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M94.068-59.266L92.290-59.266L92.290-59.563Q92.564-59.563 92.732-59.610Q92.900-59.657 92.900-59.825L92.900-61.961Q92.900-62.176 92.843-62.272Q92.786-62.368 92.673-62.389Q92.560-62.411 92.314-62.411L92.314-62.707L93.513-62.793L93.513-59.825Q93.513-59.657 93.659-59.610Q93.806-59.563 94.068-59.563L94.068-59.266M92.626-64.188Q92.626-64.379 92.761-64.510Q92.896-64.641 93.091-64.641Q93.212-64.641 93.316-64.578Q93.419-64.516 93.482-64.412Q93.544-64.309 93.544-64.188Q93.544-63.993 93.413-63.858Q93.282-63.723 93.091-63.723Q92.892-63.723 92.759-63.856Q92.626-63.989 92.626-64.188M96.634-59.266L94.650-59.266L94.650-59.563Q94.923-59.563 95.091-59.610Q95.259-59.657 95.259-59.825L95.259-62.418L94.618-62.418L94.618-62.715L95.259-62.715L95.259-63.649Q95.259-63.914 95.376-64.151Q95.493-64.387 95.687-64.551Q95.880-64.715 96.128-64.807Q96.376-64.899 96.642-64.899Q96.927-64.899 97.152-64.741Q97.376-64.582 97.376-64.305Q97.376-64.149 97.271-64.039Q97.165-63.930 97.001-63.930Q96.845-63.930 96.736-64.039Q96.626-64.149 96.626-64.305Q96.626-64.512 96.786-64.618Q96.689-64.641 96.595-64.641Q96.365-64.641 96.193-64.485Q96.021-64.328 95.935-64.092Q95.849-63.856 95.849-63.633L95.849-62.715L96.818-62.715L96.818-62.418L95.872-62.418L95.872-59.825Q95.872-59.657 96.099-59.610Q96.325-59.563 96.634-59.563L96.634-59.266M97.845-60.219L97.845-61.961Q97.845-62.176 97.782-62.272Q97.720-62.368 97.601-62.389Q97.482-62.411 97.236-62.411L97.236-62.707L98.482-62.793L98.482-60.243L98.482-60.219Q98.482-59.907 98.536-59.745Q98.591-59.582 98.741-59.512Q98.892-59.442 99.212-59.442Q99.642-59.442 99.915-59.780Q100.189-60.118 100.189-60.563L100.189-61.961Q100.189-62.176 100.126-62.272Q100.064-62.368 99.945-62.389Q99.825-62.411 99.579-62.411L99.579-62.707L100.825-62.793L100.825-60.008Q100.825-59.797 100.888-59.702Q100.950-59.606 101.070-59.584Q101.189-59.563 101.435-59.563L101.435-59.266L100.212-59.188L100.212-59.809Q100.044-59.520 99.763-59.354Q99.482-59.188 99.161-59.188Q97.845-59.188 97.845-60.219M103.810-59.266L101.954-59.266L101.954-59.563Q102.228-59.563 102.396-59.610Q102.564-59.657 102.564-59.825L102.564-61.961Q102.564-62.176 102.501-62.272Q102.439-62.368 102.320-62.389Q102.200-62.411 101.954-62.411L101.954-62.707L103.146-62.793L103.146-62.059Q103.259-62.274 103.452-62.442Q103.646-62.610 103.884-62.702Q104.122-62.793 104.376-62.793Q105.544-62.793 105.544-61.715L105.544-59.825Q105.544-59.657 105.714-59.610Q105.884-59.563 106.154-59.563L106.154-59.266L104.298-59.266L104.298-59.563Q104.572-59.563 104.740-59.610Q104.907-59.657 104.907-59.825L104.907-61.700Q104.907-62.082 104.786-62.311Q104.665-62.539 104.314-62.539Q104.001-62.539 103.747-62.377Q103.493-62.215 103.347-61.946Q103.200-61.676 103.200-61.379L103.200-59.825Q103.200-59.657 103.370-59.610Q103.540-59.563 103.810-59.563L103.810-59.266M112.322-60.243L107.009-60.243Q106.931-60.250 106.882-60.299Q106.833-60.348 106.833-60.426Q106.833-60.496 106.880-60.547Q106.927-60.598 107.009-60.610L112.322-60.610Q112.396-60.598 112.443-60.547Q112.490-60.496 112.490-60.426Q112.490-60.348 112.441-60.299Q112.392-60.250 112.322-60.243M112.322-61.930L107.009-61.930Q106.931-61.938 106.882-61.987Q106.833-62.036 106.833-62.114Q106.833-62.184 106.880-62.235Q106.927-62.286 107.009-62.297L112.322-62.297Q112.396-62.286 112.443-62.235Q112.490-62.184 112.490-62.114Q112.490-62.036 112.441-61.987Q112.392-61.938 112.322-61.930M115.091-59.098Q114.388-59.098 113.988-59.498Q113.587-59.899 113.443-60.508Q113.298-61.118 113.298-61.817Q113.298-62.340 113.368-62.803Q113.439-63.266 113.632-63.678Q113.825-64.090 114.183-64.338Q114.540-64.586 115.091-64.586Q115.642-64.586 115.999-64.338Q116.357-64.090 116.548-63.680Q116.740-63.270 116.810-62.801Q116.880-62.332 116.880-61.817Q116.880-61.118 116.738-60.510Q116.595-59.903 116.195-59.500Q115.794-59.098 115.091-59.098M115.091-59.356Q115.564-59.356 115.796-59.791Q116.029-60.227 116.083-60.766Q116.138-61.305 116.138-61.946Q116.138-62.942 115.954-63.635Q115.771-64.328 115.091-64.328Q114.724-64.328 114.503-64.090Q114.282-63.852 114.187-63.495Q114.091-63.137 114.066-62.766Q114.040-62.395 114.040-61.946Q114.040-61.305 114.095-60.766Q114.150-60.227 114.382-59.791Q114.615-59.356 115.091-59.356M118.040-57.860Q118.040-57.883 118.072-57.930Q118.365-58.192 118.531-58.559Q118.697-58.926 118.697-59.313L118.697-59.371Q118.568-59.266 118.400-59.266Q118.208-59.266 118.072-59.399Q117.935-59.532 117.935-59.731Q117.935-59.922 118.072-60.055Q118.208-60.188 118.400-60.188Q118.700-60.188 118.825-59.918Q118.950-59.649 118.950-59.313Q118.950-58.864 118.769-58.450Q118.587-58.036 118.247-57.739Q118.224-57.715 118.185-57.715Q118.138-57.715 118.089-57.760Q118.040-57.805 118.040-57.860\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M124.674-59.266L122.694-59.266L122.694-59.563Q122.963-59.563 123.131-59.608Q123.299-59.653 123.299-59.825L123.299-61.961Q123.299-62.176 123.237-62.272Q123.174-62.368 123.057-62.389Q122.940-62.411 122.694-62.411L122.694-62.707L123.862-62.793L123.862-62.008Q123.940-62.219 124.092-62.405Q124.244-62.590 124.444-62.692Q124.643-62.793 124.869-62.793Q125.115-62.793 125.307-62.649Q125.498-62.504 125.498-62.274Q125.498-62.118 125.393-62.008Q125.287-61.899 125.131-61.899Q124.975-61.899 124.865-62.008Q124.756-62.118 124.756-62.274Q124.756-62.434 124.862-62.539Q124.537-62.539 124.323-62.311Q124.108-62.082 124.012-61.743Q123.916-61.403 123.916-61.098L123.916-59.825Q123.916-59.657 124.143-59.610Q124.369-59.563 124.674-59.563L124.674-59.266M127.780-59.266L126.030-59.266L126.030-59.563Q126.729-59.563 126.916-60.043L128.717-64.868Q128.772-64.977 128.885-64.977L128.955-64.977Q129.069-64.977 129.123-64.868L131.014-59.825Q131.092-59.657 131.295-59.610Q131.498-59.563 131.811-59.563L131.811-59.266L129.588-59.266L129.588-59.563Q130.229-59.563 130.229-59.778Q130.229-59.797 130.227-59.807Q130.225-59.817 130.221-59.825L129.756-61.059L127.612-61.059L127.229-60.043Q127.225-60.028 127.219-59.998Q127.213-59.969 127.213-59.946Q127.213-59.805 127.303-59.721Q127.393-59.637 127.526-59.600Q127.658-59.563 127.780-59.563L127.780-59.266M128.686-63.922L127.717-61.356L129.643-61.356L128.686-63.922M138.061-60.243L132.748-60.243Q132.670-60.250 132.621-60.299Q132.573-60.348 132.573-60.426Q132.573-60.496 132.619-60.547Q132.666-60.598 132.748-60.610L138.061-60.610Q138.135-60.598 138.182-60.547Q138.229-60.496 138.229-60.426Q138.229-60.348 138.180-60.299Q138.131-60.250 138.061-60.243M138.061-61.930L132.748-61.930Q132.670-61.938 132.621-61.987Q132.573-62.036 132.573-62.114Q132.573-62.184 132.619-62.235Q132.666-62.286 132.748-62.297L138.061-62.297Q138.135-62.286 138.182-62.235Q138.229-62.184 138.229-62.114Q138.229-62.036 138.180-61.987Q138.131-61.938 138.061-61.930M140.205-59.489Q140.205-59.914 140.289-60.364Q140.373-60.813 140.530-61.231Q140.686-61.649 140.901-62.036Q141.115-62.422 141.389-62.778L142.115-63.731L141.205-63.731Q139.709-63.731 139.670-63.692Q139.600-63.610 139.553-63.420Q139.506-63.231 139.463-62.953L139.182-62.953L139.451-64.672L139.733-64.672L139.733-64.649Q139.733-64.504 140.250-64.461Q140.768-64.418 141.260-64.418L142.830-64.418L142.830-64.227Q142.823-64.188 142.807-64.161L141.631-62.625Q141.330-62.207 141.192-61.700Q141.053-61.192 141.022-60.698Q140.990-60.203 140.990-59.489Q140.990-59.383 140.940-59.291Q140.889-59.200 140.797-59.149Q140.705-59.098 140.596-59.098Q140.490-59.098 140.399-59.149Q140.307-59.200 140.256-59.291Q140.205-59.383 140.205-59.489\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M148.419-57.274Q147.806-57.731 147.404-58.366Q147.001-59 146.806-59.746Q146.611-60.493 146.611-61.266Q146.611-62.039 146.806-62.786Q147.001-63.532 147.404-64.166Q147.806-64.801 148.419-65.258Q148.431-65.262 148.439-65.264Q148.447-65.266 148.458-65.266L148.536-65.266Q148.575-65.266 148.601-65.239Q148.626-65.211 148.626-65.168Q148.626-65.118 148.595-65.098Q148.087-64.645 147.765-64.022Q147.443-63.399 147.302-62.703Q147.161-62.008 147.161-61.266Q147.161-60.532 147.300-59.832Q147.439-59.133 147.763-58.508Q148.087-57.883 148.595-57.434Q148.626-57.414 148.626-57.364Q148.626-57.321 148.601-57.293Q148.575-57.266 148.536-57.266L148.458-57.266Q148.450-57.270 148.441-57.272Q148.431-57.274 148.419-57.274M150.290-59Q150.290-59.063 150.322-59.106L154.068-64.364Q153.611-64.129 153.044-64.129Q152.392-64.129 151.786-64.450Q151.931-64.102 151.931-63.657Q151.931-63.297 151.810-62.926Q151.689-62.555 151.439-62.299Q151.189-62.043 150.825-62.043Q150.439-62.043 150.156-62.287Q149.872-62.532 149.726-62.905Q149.579-63.278 149.579-63.657Q149.579-64.036 149.726-64.407Q149.872-64.778 150.156-65.022Q150.439-65.266 150.825-65.266Q151.142-65.266 151.411-65.028Q151.747-64.723 152.177-64.551Q152.607-64.379 153.044-64.379Q153.536-64.379 153.954-64.592Q154.372-64.805 154.673-65.203Q154.716-65.266 154.810-65.266Q154.884-65.266 154.939-65.211Q154.993-65.157 154.993-65.082Q154.993-65.020 154.962-64.977L150.618-58.883Q150.572-58.817 150.474-58.817Q150.392-58.817 150.341-58.868Q150.290-58.918 150.290-59M150.825-62.297Q151.099-62.297 151.286-62.522Q151.474-62.746 151.562-63.069Q151.650-63.391 151.650-63.657Q151.650-63.914 151.562-64.237Q151.474-64.559 151.286-64.784Q151.099-65.008 150.825-65.008Q150.439-65.008 150.296-64.580Q150.154-64.153 150.154-63.657Q150.154-63.149 150.294-62.723Q150.435-62.297 150.825-62.297M154.603-58.817Q154.216-58.817 153.933-59.063Q153.650-59.309 153.501-59.682Q153.353-60.055 153.353-60.434Q153.353-60.707 153.439-60.995Q153.525-61.282 153.679-61.516Q153.833-61.750 154.070-61.897Q154.306-62.043 154.603-62.043Q154.884-62.043 155.091-61.891Q155.298-61.739 155.437-61.496Q155.575-61.254 155.642-60.973Q155.708-60.692 155.708-60.434Q155.708-60.075 155.587-59.702Q155.466-59.328 155.216-59.073Q154.966-58.817 154.603-58.817M154.603-59.075Q154.876-59.075 155.064-59.299Q155.251-59.524 155.339-59.846Q155.427-60.168 155.427-60.434Q155.427-60.692 155.339-61.014Q155.251-61.336 155.064-61.561Q154.876-61.786 154.603-61.786Q154.212-61.786 154.072-61.356Q153.931-60.926 153.931-60.434Q153.931-59.926 154.068-59.500Q154.204-59.075 154.603-59.075M158.431-59.266L156.450-59.266L156.450-59.563Q156.720-59.563 156.888-59.608Q157.056-59.653 157.056-59.825L157.056-61.961Q157.056-62.176 156.993-62.272Q156.931-62.368 156.814-62.389Q156.697-62.411 156.450-62.411L156.450-62.707L157.618-62.793L157.618-62.008Q157.697-62.219 157.849-62.405Q158.001-62.590 158.200-62.692Q158.400-62.793 158.626-62.793Q158.872-62.793 159.064-62.649Q159.255-62.504 159.255-62.274Q159.255-62.118 159.150-62.008Q159.044-61.899 158.888-61.899Q158.732-61.899 158.622-62.008Q158.513-62.118 158.513-62.274Q158.513-62.434 158.618-62.539Q158.294-62.539 158.079-62.311Q157.864-62.082 157.769-61.743Q157.673-61.403 157.673-61.098L157.673-59.825Q157.673-59.657 157.900-59.610Q158.126-59.563 158.431-59.563L158.431-59.266M161.552-59.188Q161.072-59.188 160.663-59.432Q160.255-59.676 160.017-60.090Q159.779-60.504 159.779-60.993Q159.779-61.485 160.036-61.901Q160.294-62.317 160.726-62.555Q161.157-62.793 161.650-62.793Q162.271-62.793 162.720-62.356L162.720-63.985Q162.720-64.200 162.657-64.295Q162.595-64.391 162.478-64.412Q162.361-64.434 162.114-64.434L162.114-64.731L163.337-64.817L163.337-60.008Q163.337-59.797 163.400-59.702Q163.462-59.606 163.579-59.584Q163.697-59.563 163.947-59.563L163.947-59.266L162.697-59.188L162.697-59.672Q162.232-59.188 161.552-59.188M161.618-59.442Q161.958-59.442 162.251-59.633Q162.544-59.825 162.697-60.121L162.697-61.953Q162.548-62.227 162.286-62.383Q162.025-62.539 161.712-62.539Q161.087-62.539 160.804-62.092Q160.521-61.645 160.521-60.985Q160.521-60.340 160.773-59.891Q161.025-59.442 161.618-59.442M166.314-59.266L164.536-59.266L164.536-59.563Q164.810-59.563 164.978-59.610Q165.146-59.657 165.146-59.825L165.146-61.961Q165.146-62.176 165.089-62.272Q165.032-62.368 164.919-62.389Q164.806-62.411 164.560-62.411L164.560-62.707L165.759-62.793L165.759-59.825Q165.759-59.657 165.906-59.610Q166.052-59.563 166.314-59.563L166.314-59.266M164.872-64.188Q164.872-64.379 165.007-64.510Q165.142-64.641 165.337-64.641Q165.458-64.641 165.562-64.578Q165.665-64.516 165.728-64.412Q165.790-64.309 165.790-64.188Q165.790-63.993 165.659-63.858Q165.529-63.723 165.337-63.723Q165.138-63.723 165.005-63.856Q164.872-63.989 164.872-64.188M167.216-57.266L167.134-57.266Q167.099-57.266 167.073-57.295Q167.048-57.325 167.048-57.364Q167.048-57.414 167.079-57.434Q167.466-57.770 167.749-58.219Q168.032-58.668 168.198-59.168Q168.364-59.668 168.439-60.186Q168.513-60.703 168.513-61.266Q168.513-61.836 168.439-62.352Q168.364-62.868 168.198-63.364Q168.032-63.860 167.753-64.307Q167.474-64.754 167.079-65.098Q167.048-65.118 167.048-65.168Q167.048-65.207 167.073-65.237Q167.099-65.266 167.134-65.266L167.216-65.266Q167.228-65.266 167.238-65.264Q167.247-65.262 167.255-65.258Q167.868-64.801 168.271-64.166Q168.673-63.532 168.868-62.786Q169.064-62.039 169.064-61.266Q169.064-60.493 168.868-59.746Q168.673-59 168.271-58.366Q167.868-57.731 167.255-57.274Q167.243-57.274 167.236-57.272Q167.228-57.270 167.216-57.266M170.704-57.860Q170.704-57.883 170.736-57.930Q171.029-58.192 171.195-58.559Q171.361-58.926 171.361-59.313L171.361-59.371Q171.232-59.266 171.064-59.266Q170.872-59.266 170.736-59.399Q170.599-59.532 170.599-59.731Q170.599-59.922 170.736-60.055Q170.872-60.188 171.064-60.188Q171.364-60.188 171.489-59.918Q171.614-59.649 171.614-59.313Q171.614-58.864 171.433-58.450Q171.251-58.036 170.911-57.739Q170.888-57.715 170.849-57.715Q170.802-57.715 170.753-57.760Q170.704-57.805 170.704-57.860\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M177.333-59.266L175.353-59.266L175.353-59.563Q175.622-59.563 175.790-59.608Q175.958-59.653 175.958-59.825L175.958-61.961Q175.958-62.176 175.896-62.272Q175.833-62.368 175.716-62.389Q175.599-62.411 175.353-62.411L175.353-62.707L176.521-62.793L176.521-62.008Q176.599-62.219 176.751-62.405Q176.903-62.590 177.103-62.692Q177.302-62.793 177.528-62.793Q177.774-62.793 177.966-62.649Q178.157-62.504 178.157-62.274Q178.157-62.118 178.052-62.008Q177.946-61.899 177.790-61.899Q177.634-61.899 177.524-62.008Q177.415-62.118 177.415-62.274Q177.415-62.434 177.521-62.539Q177.196-62.539 176.982-62.311Q176.767-62.082 176.671-61.743Q176.575-61.403 176.575-61.098L176.575-59.825Q176.575-59.657 176.802-59.610Q177.028-59.563 177.333-59.563L177.333-59.266M182.048-59.266L178.767-59.266L178.767-59.563Q179.091-59.563 179.333-59.610Q179.575-59.657 179.575-59.825L179.575-64.168Q179.575-64.340 179.333-64.387Q179.091-64.434 178.767-64.434L178.767-64.731L181.814-64.731Q182.239-64.731 182.673-64.577Q183.107-64.422 183.401-64.114Q183.696-63.805 183.696-63.371Q183.696-63.118 183.571-62.901Q183.446-62.684 183.245-62.528Q183.044-62.371 182.812-62.272Q182.579-62.172 182.321-62.121Q182.696-62.086 183.075-61.909Q183.454-61.731 183.694-61.432Q183.935-61.133 183.935-60.739Q183.935-60.286 183.651-59.952Q183.368-59.618 182.933-59.442Q182.497-59.266 182.048-59.266M180.286-61.977L180.286-59.825Q180.286-59.653 180.378-59.608Q180.470-59.563 180.689-59.563L181.814-59.563Q182.052-59.563 182.286-59.651Q182.521-59.739 182.706-59.899Q182.892-60.059 182.993-60.272Q183.095-60.485 183.095-60.739Q183.095-61.059 182.942-61.344Q182.790-61.629 182.521-61.803Q182.251-61.977 181.935-61.977L180.286-61.977M180.286-64.168L180.286-62.235L181.575-62.235Q181.817-62.235 182.056-62.317Q182.294-62.399 182.478-62.545Q182.661-62.692 182.774-62.909Q182.888-63.125 182.888-63.371Q182.888-63.582 182.802-63.784Q182.716-63.985 182.569-64.127Q182.423-64.270 182.228-64.352Q182.032-64.434 181.814-64.434L180.689-64.434Q180.470-64.434 180.378-64.391Q180.286-64.348 180.286-64.168M190.376-60.243L185.064-60.243Q184.985-60.250 184.937-60.299Q184.888-60.348 184.888-60.426Q184.888-60.496 184.935-60.547Q184.982-60.598 185.064-60.610L190.376-60.610Q190.450-60.598 190.497-60.547Q190.544-60.496 190.544-60.426Q190.544-60.348 190.495-60.299Q190.446-60.250 190.376-60.243M190.376-61.930L185.064-61.930Q184.985-61.938 184.937-61.987Q184.888-62.036 184.888-62.114Q184.888-62.184 184.935-62.235Q184.982-62.286 185.064-62.297L190.376-62.297Q190.450-62.286 190.497-62.235Q190.544-62.184 190.544-62.114Q190.544-62.036 190.495-61.987Q190.446-61.938 190.376-61.930M193.146-59.098Q192.442-59.098 192.042-59.498Q191.642-59.899 191.497-60.508Q191.353-61.118 191.353-61.817Q191.353-62.340 191.423-62.803Q191.493-63.266 191.687-63.678Q191.880-64.090 192.237-64.338Q192.595-64.586 193.146-64.586Q193.696-64.586 194.054-64.338Q194.411-64.090 194.603-63.680Q194.794-63.270 194.864-62.801Q194.935-62.332 194.935-61.817Q194.935-61.118 194.792-60.510Q194.649-59.903 194.249-59.500Q193.849-59.098 193.146-59.098M193.146-59.356Q193.618-59.356 193.851-59.791Q194.083-60.227 194.138-60.766Q194.192-61.305 194.192-61.946Q194.192-62.942 194.009-63.635Q193.825-64.328 193.146-64.328Q192.778-64.328 192.558-64.090Q192.337-63.852 192.241-63.495Q192.146-63.137 192.120-62.766Q192.095-62.395 192.095-61.946Q192.095-61.305 192.149-60.766Q192.204-60.227 192.437-59.791Q192.669-59.356 193.146-59.356\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M200.728-57.274Q200.115-57.731 199.713-58.366Q199.310-59 199.115-59.746Q198.920-60.493 198.920-61.266Q198.920-62.039 199.115-62.786Q199.310-63.532 199.713-64.166Q200.115-64.801 200.728-65.258Q200.740-65.262 200.748-65.264Q200.756-65.266 200.767-65.266L200.845-65.266Q200.884-65.266 200.910-65.239Q200.935-65.211 200.935-65.168Q200.935-65.118 200.904-65.098Q200.396-64.645 200.074-64.022Q199.752-63.399 199.611-62.703Q199.470-62.008 199.470-61.266Q199.470-60.532 199.609-59.832Q199.748-59.133 200.072-58.508Q200.396-57.883 200.904-57.434Q200.935-57.414 200.935-57.364Q200.935-57.321 200.910-57.293Q200.884-57.266 200.845-57.266L200.767-57.266Q200.759-57.270 200.750-57.272Q200.740-57.274 200.728-57.274M202.599-59Q202.599-59.063 202.631-59.106L206.377-64.364Q205.920-64.129 205.353-64.129Q204.701-64.129 204.095-64.450Q204.240-64.102 204.240-63.657Q204.240-63.297 204.119-62.926Q203.998-62.555 203.748-62.299Q203.498-62.043 203.134-62.043Q202.748-62.043 202.465-62.287Q202.181-62.532 202.035-62.905Q201.888-63.278 201.888-63.657Q201.888-64.036 202.035-64.407Q202.181-64.778 202.465-65.022Q202.748-65.266 203.134-65.266Q203.451-65.266 203.720-65.028Q204.056-64.723 204.486-64.551Q204.916-64.379 205.353-64.379Q205.845-64.379 206.263-64.592Q206.681-64.805 206.982-65.203Q207.025-65.266 207.119-65.266Q207.193-65.266 207.248-65.211Q207.302-65.157 207.302-65.082Q207.302-65.020 207.271-64.977L202.927-58.883Q202.881-58.817 202.783-58.817Q202.701-58.817 202.650-58.868Q202.599-58.918 202.599-59M203.134-62.297Q203.408-62.297 203.595-62.522Q203.783-62.746 203.871-63.069Q203.959-63.391 203.959-63.657Q203.959-63.914 203.871-64.237Q203.783-64.559 203.595-64.784Q203.408-65.008 203.134-65.008Q202.748-65.008 202.605-64.580Q202.463-64.153 202.463-63.657Q202.463-63.149 202.603-62.723Q202.744-62.297 203.134-62.297M206.912-58.817Q206.525-58.817 206.242-59.063Q205.959-59.309 205.810-59.682Q205.662-60.055 205.662-60.434Q205.662-60.707 205.748-60.995Q205.834-61.282 205.988-61.516Q206.142-61.750 206.379-61.897Q206.615-62.043 206.912-62.043Q207.193-62.043 207.400-61.891Q207.607-61.739 207.746-61.496Q207.884-61.254 207.951-60.973Q208.017-60.692 208.017-60.434Q208.017-60.075 207.896-59.702Q207.775-59.328 207.525-59.073Q207.275-58.817 206.912-58.817M206.912-59.075Q207.185-59.075 207.373-59.299Q207.560-59.524 207.648-59.846Q207.736-60.168 207.736-60.434Q207.736-60.692 207.648-61.014Q207.560-61.336 207.373-61.561Q207.185-61.786 206.912-61.786Q206.521-61.786 206.381-61.356Q206.240-60.926 206.240-60.434Q206.240-59.926 206.377-59.500Q206.513-59.075 206.912-59.075M210.740-59.266L208.759-59.266L208.759-59.563Q209.029-59.563 209.197-59.608Q209.365-59.653 209.365-59.825L209.365-61.961Q209.365-62.176 209.302-62.272Q209.240-62.368 209.123-62.389Q209.006-62.411 208.759-62.411L208.759-62.707L209.927-62.793L209.927-62.008Q210.006-62.219 210.158-62.405Q210.310-62.590 210.509-62.692Q210.709-62.793 210.935-62.793Q211.181-62.793 211.373-62.649Q211.564-62.504 211.564-62.274Q211.564-62.118 211.459-62.008Q211.353-61.899 211.197-61.899Q211.041-61.899 210.931-62.008Q210.822-62.118 210.822-62.274Q210.822-62.434 210.927-62.539Q210.603-62.539 210.388-62.311Q210.173-62.082 210.078-61.743Q209.982-61.403 209.982-61.098L209.982-59.825Q209.982-59.657 210.209-59.610Q210.435-59.563 210.740-59.563L210.740-59.266M212.142-60.098Q212.142-60.582 212.545-60.877Q212.947-61.172 213.498-61.291Q214.048-61.411 214.541-61.411L214.541-61.700Q214.541-61.926 214.425-62.133Q214.310-62.340 214.113-62.459Q213.916-62.578 213.685-62.578Q213.259-62.578 212.974-62.473Q213.045-62.446 213.091-62.391Q213.138-62.336 213.164-62.266Q213.189-62.196 213.189-62.121Q213.189-62.016 213.138-61.924Q213.088-61.832 212.996-61.782Q212.904-61.731 212.798-61.731Q212.693-61.731 212.601-61.782Q212.509-61.832 212.459-61.924Q212.408-62.016 212.408-62.121Q212.408-62.539 212.797-62.686Q213.185-62.832 213.685-62.832Q214.017-62.832 214.371-62.702Q214.724-62.571 214.953-62.317Q215.181-62.063 215.181-61.715L215.181-59.914Q215.181-59.782 215.254-59.672Q215.326-59.563 215.455-59.563Q215.580-59.563 215.648-59.668Q215.716-59.774 215.716-59.914L215.716-60.426L215.998-60.426L215.998-59.914Q215.998-59.711 215.881-59.553Q215.763-59.395 215.582-59.311Q215.400-59.227 215.197-59.227Q214.966-59.227 214.814-59.399Q214.662-59.571 214.631-59.801Q214.470-59.520 214.162-59.354Q213.853-59.188 213.502-59.188Q212.990-59.188 212.566-59.411Q212.142-59.633 212.142-60.098M212.830-60.098Q212.830-59.813 213.056-59.627Q213.283-59.442 213.576-59.442Q213.822-59.442 214.047-59.559Q214.271-59.676 214.406-59.879Q214.541-60.082 214.541-60.336L214.541-61.168Q214.275-61.168 213.990-61.114Q213.705-61.059 213.433-60.930Q213.162-60.801 212.996-60.594Q212.830-60.387 212.830-60.098M217.677-59.266L216.181-59.266L216.181-59.563Q216.814-59.563 217.236-60.043L218.006-60.953L217.013-62.153Q216.857-62.332 216.695-62.375Q216.533-62.418 216.228-62.418L216.228-62.715L217.916-62.715L217.916-62.418Q217.822-62.418 217.746-62.375Q217.670-62.332 217.670-62.243Q217.670-62.200 217.701-62.153L218.357-61.364L218.838-61.938Q218.955-62.075 218.955-62.211Q218.955-62.301 218.904-62.360Q218.853-62.418 218.771-62.418L218.771-62.715L220.259-62.715L220.259-62.418Q219.623-62.418 219.213-61.938L218.533-61.137L219.619-59.825Q219.779-59.649 219.939-59.606Q220.099-59.563 220.404-59.563L220.404-59.266L218.716-59.266L218.716-59.563Q218.806-59.563 218.884-59.606Q218.963-59.649 218.963-59.739Q218.963-59.762 218.931-59.825L218.189-60.731L217.603-60.043Q217.486-59.907 217.486-59.770Q217.486-59.684 217.537-59.623Q217.588-59.563 217.677-59.563L217.677-59.266M221.173-57.266L221.091-57.266Q221.056-57.266 221.031-57.295Q221.006-57.325 221.006-57.364Q221.006-57.414 221.037-57.434Q221.423-57.770 221.707-58.219Q221.990-58.668 222.156-59.168Q222.322-59.668 222.396-60.186Q222.470-60.703 222.470-61.266Q222.470-61.836 222.396-62.352Q222.322-62.868 222.156-63.364Q221.990-63.860 221.711-64.307Q221.431-64.754 221.037-65.098Q221.006-65.118 221.006-65.168Q221.006-65.207 221.031-65.237Q221.056-65.266 221.091-65.266L221.173-65.266Q221.185-65.266 221.195-65.264Q221.205-65.262 221.213-65.258Q221.826-64.801 222.228-64.166Q222.631-63.532 222.826-62.786Q223.021-62.039 223.021-61.266Q223.021-60.493 222.826-59.746Q222.631-59 222.228-58.366Q221.826-57.731 221.213-57.274Q221.201-57.274 221.193-57.272Q221.185-57.270 221.173-57.266M224.662-57.860Q224.662-57.899 224.685-57.922Q224.959-58.207 225.101-58.571Q225.244-58.934 225.244-59.321Q225.146-59.266 225.021-59.266Q224.830-59.266 224.693-59.399Q224.556-59.532 224.556-59.731Q224.556-59.922 224.693-60.055Q224.830-60.188 225.021-60.188Q225.502-60.188 225.502-59.313Q225.502-59.024 225.429-58.743Q225.357-58.461 225.215-58.207Q225.072-57.953 224.877-57.746Q224.845-57.715 224.806-57.715Q224.759-57.715 224.711-57.760Q224.662-57.805 224.662-57.860M224.556-62.258Q224.556-62.442 224.693-62.578Q224.830-62.715 225.021-62.715Q225.213-62.715 225.345-62.582Q225.478-62.450 225.478-62.258Q225.478-62.059 225.345-61.926Q225.213-61.793 225.021-61.793Q224.830-61.793 224.693-61.930Q224.556-62.067 224.556-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M231.088-59.297L229.865-62.153Q229.783-62.328 229.639-62.373Q229.494-62.418 229.225-62.418L229.225-62.715L230.936-62.715L230.936-62.418Q230.514-62.418 230.514-62.235Q230.514-62.200 230.529-62.153L231.475-59.961L232.315-61.938Q232.354-62.016 232.354-62.106Q232.354-62.246 232.248-62.332Q232.143-62.418 232.002-62.418L232.002-62.715L233.354-62.715L233.354-62.418Q232.830-62.418 232.615-61.938L231.490-59.297Q231.428-59.188 231.322-59.188L231.256-59.188Q231.143-59.188 231.088-59.297\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M233.399-60.098Q233.399-60.582 233.801-60.877Q234.204-61.172 234.754-61.291Q235.305-61.411 235.797-61.411L235.797-61.700Q235.797-61.926 235.682-62.133Q235.567-62.340 235.370-62.459Q235.172-62.578 234.942-62.578Q234.516-62.578 234.231-62.473Q234.301-62.446 234.348-62.391Q234.395-62.336 234.420-62.266Q234.446-62.196 234.446-62.121Q234.446-62.016 234.395-61.924Q234.344-61.832 234.252-61.782Q234.161-61.731 234.055-61.731Q233.950-61.731 233.858-61.782Q233.766-61.832 233.715-61.924Q233.665-62.016 233.665-62.121Q233.665-62.539 234.053-62.686Q234.442-62.832 234.942-62.832Q235.274-62.832 235.627-62.702Q235.981-62.571 236.209-62.317Q236.438-62.063 236.438-61.715L236.438-59.914Q236.438-59.782 236.510-59.672Q236.583-59.563 236.711-59.563Q236.836-59.563 236.905-59.668Q236.973-59.774 236.973-59.914L236.973-60.426L237.254-60.426L237.254-59.914Q237.254-59.711 237.137-59.553Q237.020-59.395 236.838-59.311Q236.657-59.227 236.454-59.227Q236.223-59.227 236.071-59.399Q235.918-59.571 235.887-59.801Q235.727-59.520 235.418-59.354Q235.110-59.188 234.758-59.188Q234.247-59.188 233.823-59.411Q233.399-59.633 233.399-60.098M234.086-60.098Q234.086-59.813 234.313-59.627Q234.540-59.442 234.833-59.442Q235.079-59.442 235.303-59.559Q235.528-59.676 235.663-59.879Q235.797-60.082 235.797-60.336L235.797-61.168Q235.532-61.168 235.247-61.114Q234.961-61.059 234.690-60.930Q234.418-60.801 234.252-60.594Q234.086-60.387 234.086-60.098M239.461-59.266L237.629-59.266L237.629-59.563Q237.903-59.563 238.071-59.610Q238.239-59.657 238.239-59.825L238.239-63.985Q238.239-64.200 238.176-64.295Q238.114-64.391 237.995-64.412Q237.875-64.434 237.629-64.434L237.629-64.731L238.852-64.817L238.852-59.825Q238.852-59.657 239.020-59.610Q239.188-59.563 239.461-59.563L239.461-59.266M242.403-59.266L240.020-59.266L240.020-59.563Q240.344-59.563 240.586-59.610Q240.829-59.657 240.829-59.825L240.829-64.168Q240.829-64.340 240.586-64.387Q240.344-64.434 240.020-64.434L240.020-64.731L242.965-64.731Q243.309-64.731 243.665-64.631Q244.020-64.532 244.315-64.340Q244.610-64.149 244.792-63.864Q244.973-63.578 244.973-63.219Q244.973-62.746 244.663-62.411Q244.352-62.075 243.887-61.903Q243.422-61.731 242.965-61.731L241.598-61.731L241.598-59.825Q241.598-59.657 241.840-59.610Q242.083-59.563 242.403-59.563L242.403-59.266M241.571-64.168L241.571-62L242.747-62Q243.434-62 243.772-62.276Q244.110-62.551 244.110-63.219Q244.110-63.883 243.772-64.159Q243.434-64.434 242.747-64.434L241.973-64.434Q241.754-64.434 241.663-64.391Q241.571-64.348 241.571-64.168M251.407-60.243L246.094-60.243Q246.016-60.250 245.967-60.299Q245.918-60.348 245.918-60.426Q245.918-60.496 245.965-60.547Q246.012-60.598 246.094-60.610L251.407-60.610Q251.481-60.598 251.528-60.547Q251.575-60.496 251.575-60.426Q251.575-60.348 251.526-60.299Q251.477-60.250 251.407-60.243M251.407-61.930L246.094-61.930Q246.016-61.938 245.967-61.987Q245.918-62.036 245.918-62.114Q245.918-62.184 245.965-62.235Q246.012-62.286 246.094-62.297L251.407-62.297Q251.481-62.286 251.528-62.235Q251.575-62.184 251.575-62.114Q251.575-62.036 251.526-61.987Q251.477-61.938 251.407-61.930M254.176-59.098Q253.473-59.098 253.073-59.498Q252.672-59.899 252.528-60.508Q252.383-61.118 252.383-61.817Q252.383-62.340 252.454-62.803Q252.524-63.266 252.717-63.678Q252.911-64.090 253.268-64.338Q253.625-64.586 254.176-64.586Q254.727-64.586 255.084-64.338Q255.442-64.090 255.633-63.680Q255.825-63.270 255.895-62.801Q255.965-62.332 255.965-61.817Q255.965-61.118 255.823-60.510Q255.680-59.903 255.280-59.500Q254.879-59.098 254.176-59.098M254.176-59.356Q254.649-59.356 254.881-59.791Q255.114-60.227 255.168-60.766Q255.223-61.305 255.223-61.946Q255.223-62.942 255.040-63.635Q254.856-64.328 254.176-64.328Q253.809-64.328 253.588-64.090Q253.368-63.852 253.272-63.495Q253.176-63.137 253.151-62.766Q253.125-62.395 253.125-61.946Q253.125-61.305 253.180-60.766Q253.235-60.227 253.467-59.791Q253.700-59.356 254.176-59.356M257.926-59.266L256.430-59.266L256.430-59.563Q257.063-59.563 257.485-60.043L258.254-60.953L257.262-62.153Q257.106-62.332 256.944-62.375Q256.782-62.418 256.477-62.418L256.477-62.715L258.165-62.715L258.165-62.418Q258.071-62.418 257.995-62.375Q257.918-62.332 257.918-62.243Q257.918-62.200 257.950-62.153L258.606-61.364L259.086-61.938Q259.204-62.075 259.204-62.211Q259.204-62.301 259.153-62.360Q259.102-62.418 259.020-62.418L259.020-62.715L260.508-62.715L260.508-62.418Q259.872-62.418 259.461-61.938L258.782-61.137L259.868-59.825Q260.028-59.649 260.188-59.606Q260.348-59.563 260.653-59.563L260.653-59.266L258.965-59.266L258.965-59.563Q259.055-59.563 259.133-59.606Q259.211-59.649 259.211-59.739Q259.211-59.762 259.180-59.825L258.438-60.731L257.852-60.043Q257.735-59.907 257.735-59.770Q257.735-59.684 257.786-59.623Q257.836-59.563 257.926-59.563L257.926-59.266M264.368-59.266L261.208-59.266L261.208-59.473Q261.208-59.500 261.231-59.532L262.583-60.930Q262.961-61.317 263.209-61.606Q263.458-61.895 263.631-62.252Q263.805-62.610 263.805-63Q263.805-63.348 263.672-63.641Q263.540-63.934 263.286-64.112Q263.032-64.289 262.676-64.289Q262.317-64.289 262.026-64.094Q261.735-63.899 261.590-63.571L261.645-63.571Q261.829-63.571 261.954-63.450Q262.079-63.328 262.079-63.137Q262.079-62.957 261.954-62.828Q261.829-62.700 261.645-62.700Q261.465-62.700 261.336-62.828Q261.208-62.957 261.208-63.137Q261.208-63.539 261.428-63.875Q261.649-64.211 262.014-64.399Q262.379-64.586 262.782-64.586Q263.262-64.586 263.678-64.399Q264.094-64.211 264.346-63.850Q264.598-63.489 264.598-63Q264.598-62.641 264.444-62.338Q264.290-62.036 264.038-61.776Q263.786-61.516 263.436-61.231Q263.086-60.946 262.918-60.793L261.989-59.953L262.704-59.953Q264.079-59.953 264.118-59.993Q264.188-60.071 264.231-60.256Q264.274-60.442 264.317-60.731L264.598-60.731L264.368-59.266M267.149-59.098Q266.446-59.098 266.045-59.498Q265.645-59.899 265.500-60.508Q265.356-61.118 265.356-61.817Q265.356-62.340 265.426-62.803Q265.497-63.266 265.690-63.678Q265.883-64.090 266.241-64.338Q266.598-64.586 267.149-64.586Q267.700-64.586 268.057-64.338Q268.415-64.090 268.606-63.680Q268.797-63.270 268.868-62.801Q268.938-62.332 268.938-61.817Q268.938-61.118 268.795-60.510Q268.653-59.903 268.252-59.500Q267.852-59.098 267.149-59.098M267.149-59.356Q267.622-59.356 267.854-59.791Q268.086-60.227 268.141-60.766Q268.196-61.305 268.196-61.946Q268.196-62.942 268.012-63.635Q267.829-64.328 267.149-64.328Q266.782-64.328 266.561-64.090Q266.340-63.852 266.245-63.495Q266.149-63.137 266.124-62.766Q266.098-62.395 266.098-61.946Q266.098-61.305 266.153-60.766Q266.208-60.227 266.440-59.791Q266.672-59.356 267.149-59.356\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-47.316h404.029\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-31.684 26.616)\">\u003Cpath d=\"M11.739-59.266L8.967-59.266L8.967-59.546Q9.688-59.546 9.688-59.755L9.688-63.556Q9.688-63.767 8.967-63.767L8.967-64.048L11.739-64.048Q12.224-64.048 12.660-63.853Q13.096-63.658 13.419-63.316Q13.742-62.974 13.920-62.534Q14.097-62.093 14.097-61.611Q14.097-61.125 13.913-60.702Q13.728-60.278 13.405-59.956Q13.082-59.635 12.650-59.451Q12.218-59.266 11.739-59.266M10.351-63.556L10.351-59.755Q10.351-59.615 10.440-59.580Q10.529-59.546 10.717-59.546L11.541-59.546Q12.166-59.546 12.570-59.808Q12.973-60.069 13.161-60.536Q13.349-61.002 13.349-61.611Q13.349-62.089 13.257-62.482Q13.164-62.875 12.915-63.173Q12.676-63.460 12.312-63.614Q11.948-63.767 11.541-63.767L10.717-63.767Q10.529-63.767 10.440-63.733Q10.351-63.699 10.351-63.556M14.866-60.801Q14.866-61.122 14.991-61.411Q15.116-61.700 15.342-61.923Q15.567-62.147 15.863-62.267Q16.158-62.387 16.476-62.387Q16.804-62.387 17.066-62.287Q17.327-62.188 17.503-62.006Q17.679-61.823 17.773-61.565Q17.867-61.307 17.867-60.975Q17.867-60.883 17.785-60.862L15.530-60.862L15.530-60.801Q15.530-60.213 15.813-59.830Q16.097-59.447 16.664-59.447Q16.986-59.447 17.254-59.640Q17.522-59.833 17.611-60.148Q17.618-60.189 17.693-60.203L17.785-60.203Q17.867-60.179 17.867-60.107Q17.867-60.100 17.861-60.073Q17.748-59.676 17.377-59.437Q17.006-59.198 16.582-59.198Q16.145-59.198 15.745-59.406Q15.345-59.615 15.106-59.982Q14.866-60.349 14.866-60.801M15.536-61.071L17.351-61.071Q17.351-61.348 17.254-61.600Q17.157-61.853 16.958-62.009Q16.760-62.164 16.476-62.164Q16.199-62.164 15.986-62.006Q15.772-61.847 15.654-61.592Q15.536-61.337 15.536-61.071M18.455-60.777Q18.455-61.105 18.590-61.406Q18.725-61.706 18.961-61.927Q19.197-62.147 19.501-62.267Q19.805-62.387 20.130-62.387Q20.636-62.387 20.985-62.284Q21.333-62.182 21.333-61.806Q21.333-61.659 21.236-61.558Q21.138-61.457 20.991-61.457Q20.838-61.457 20.739-61.556Q20.639-61.655 20.639-61.806Q20.639-61.994 20.780-62.086Q20.578-62.137 20.137-62.137Q19.782-62.137 19.553-61.941Q19.324-61.744 19.223-61.435Q19.122-61.125 19.122-60.777Q19.122-60.428 19.248-60.122Q19.375-59.816 19.629-59.632Q19.884-59.447 20.240-59.447Q20.462-59.447 20.646-59.531Q20.831-59.615 20.966-59.770Q21.101-59.926 21.159-60.134Q21.173-60.189 21.227-60.189L21.340-60.189Q21.371-60.189 21.393-60.165Q21.415-60.141 21.415-60.107L21.415-60.086Q21.330-59.799 21.142-59.601Q20.954-59.403 20.689-59.300Q20.424-59.198 20.130-59.198Q19.699-59.198 19.312-59.404Q18.924-59.611 18.689-59.974Q18.455-60.336 18.455-60.777M21.962-60.749Q21.962-61.091 22.097-61.390Q22.232-61.689 22.471-61.913Q22.711-62.137 23.029-62.262Q23.346-62.387 23.678-62.387Q24.122-62.387 24.522-62.171Q24.922-61.956 25.156-61.578Q25.390-61.201 25.390-60.749Q25.390-60.408 25.249-60.124Q25.107-59.840 24.862-59.633Q24.618-59.427 24.309-59.312Q23.999-59.198 23.678-59.198Q23.247-59.198 22.846-59.399Q22.444-59.601 22.203-59.953Q21.962-60.305 21.962-60.749M23.678-59.447Q24.280-59.447 24.503-59.825Q24.727-60.203 24.727-60.835Q24.727-61.447 24.493-61.806Q24.259-62.164 23.678-62.164Q22.625-62.164 22.625-60.835Q22.625-60.203 22.851-59.825Q23.076-59.447 23.678-59.447\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-31.684 26.616)\">\u003Cpath d=\"M26.221-60.777Q26.221-61.115 26.362-61.406Q26.502-61.696 26.746-61.910Q26.990-62.123 27.295-62.238Q27.599-62.352 27.924-62.352Q28.194-62.352 28.457-62.253Q28.720-62.154 28.911-61.976L28.911-63.374Q28.911-63.644 28.804-63.706Q28.696-63.767 28.385-63.767L28.385-64.048L29.462-64.123L29.462-59.939Q29.462-59.751 29.516-59.668Q29.571-59.584 29.672-59.565Q29.773-59.546 29.988-59.546L29.988-59.266L28.881-59.198L28.881-59.615Q28.464-59.198 27.838-59.198Q27.407-59.198 27.035-59.410Q26.662-59.621 26.442-59.982Q26.221-60.343 26.221-60.777M27.896-59.420Q28.105-59.420 28.291-59.492Q28.477-59.563 28.631-59.700Q28.785-59.837 28.881-60.015L28.881-61.624Q28.795-61.771 28.650-61.891Q28.505-62.011 28.335-62.070Q28.166-62.130 27.985-62.130Q27.425-62.130 27.156-61.741Q26.888-61.351 26.888-60.770Q26.888-60.199 27.122-59.809Q27.356-59.420 27.896-59.420M30.596-60.801Q30.596-61.122 30.721-61.411Q30.846-61.700 31.072-61.923Q31.297-62.147 31.593-62.267Q31.888-62.387 32.206-62.387Q32.534-62.387 32.796-62.287Q33.057-62.188 33.233-62.006Q33.409-61.823 33.503-61.565Q33.597-61.307 33.597-60.975Q33.597-60.883 33.515-60.862L31.260-60.862L31.260-60.801Q31.260-60.213 31.543-59.830Q31.827-59.447 32.394-59.447Q32.716-59.447 32.984-59.640Q33.252-59.833 33.341-60.148Q33.348-60.189 33.423-60.203L33.515-60.203Q33.597-60.179 33.597-60.107Q33.597-60.100 33.591-60.073Q33.478-59.676 33.107-59.437Q32.736-59.198 32.312-59.198Q31.875-59.198 31.475-59.406Q31.075-59.615 30.836-59.982Q30.596-60.349 30.596-60.801M31.266-61.071L33.081-61.071Q33.081-61.348 32.984-61.600Q32.886-61.853 32.688-62.009Q32.490-62.164 32.206-62.164Q31.929-62.164 31.716-62.006Q31.502-61.847 31.384-61.592Q31.266-61.337 31.266-61.071\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M8.855-59.274L8.855-60.496Q8.855-60.524 8.886-60.555Q8.918-60.586 8.941-60.586L9.047-60.586Q9.117-60.586 9.133-60.524Q9.195-60.203 9.334-59.963Q9.472-59.723 9.705-59.582Q9.937-59.442 10.246-59.442Q10.484-59.442 10.693-59.502Q10.902-59.563 11.039-59.711Q11.176-59.860 11.176-60.106Q11.176-60.360 10.965-60.526Q10.754-60.692 10.484-60.746L9.863-60.860Q9.457-60.938 9.156-61.194Q8.855-61.450 8.855-61.825Q8.855-62.192 9.056-62.414Q9.258-62.637 9.582-62.735Q9.906-62.832 10.246-62.832Q10.711-62.832 11.008-62.625L11.230-62.809Q11.254-62.832 11.285-62.832L11.336-62.832Q11.367-62.832 11.394-62.805Q11.422-62.778 11.422-62.746L11.422-61.762Q11.422-61.731 11.396-61.702Q11.371-61.672 11.336-61.672L11.230-61.672Q11.195-61.672 11.168-61.700Q11.140-61.727 11.140-61.762Q11.140-62.161 10.888-62.381Q10.636-62.602 10.238-62.602Q9.883-62.602 9.599-62.479Q9.316-62.356 9.316-62.051Q9.316-61.832 9.517-61.700Q9.719-61.567 9.965-61.524L10.590-61.411Q11.019-61.321 11.328-61.024Q11.636-60.727 11.636-60.313Q11.636-59.743 11.238-59.465Q10.840-59.188 10.246-59.188Q9.695-59.188 9.344-59.524L9.047-59.211Q9.023-59.188 8.988-59.188L8.941-59.188Q8.918-59.188 8.886-59.219Q8.855-59.250 8.855-59.274M14.172-59.266L12.191-59.266L12.191-59.563Q12.461-59.563 12.629-59.608Q12.797-59.653 12.797-59.825L12.797-61.961Q12.797-62.176 12.734-62.272Q12.672-62.368 12.554-62.389Q12.437-62.411 12.191-62.411L12.191-62.707L13.359-62.793L13.359-62.008Q13.437-62.219 13.590-62.405Q13.742-62.590 13.941-62.692Q14.140-62.793 14.367-62.793Q14.613-62.793 14.804-62.649Q14.996-62.504 14.996-62.274Q14.996-62.118 14.890-62.008Q14.785-61.899 14.629-61.899Q14.472-61.899 14.363-62.008Q14.254-62.118 14.254-62.274Q14.254-62.434 14.359-62.539Q14.035-62.539 13.820-62.311Q13.605-62.082 13.510-61.743Q13.414-61.403 13.414-61.098L13.414-59.825Q13.414-59.657 13.640-59.610Q13.867-59.563 14.172-59.563L14.172-59.266M15.519-60.993Q15.519-61.489 15.769-61.914Q16.019-62.340 16.439-62.586Q16.859-62.832 17.359-62.832Q17.898-62.832 18.289-62.707Q18.679-62.582 18.679-62.168Q18.679-62.063 18.629-61.971Q18.578-61.879 18.486-61.828Q18.394-61.778 18.285-61.778Q18.179-61.778 18.088-61.828Q17.996-61.879 17.945-61.971Q17.894-62.063 17.894-62.168Q17.894-62.391 18.062-62.496Q17.840-62.555 17.367-62.555Q17.070-62.555 16.855-62.416Q16.640-62.278 16.510-62.047Q16.379-61.817 16.320-61.547Q16.261-61.278 16.261-60.993Q16.261-60.598 16.394-60.248Q16.527-59.899 16.799-59.682Q17.070-59.465 17.469-59.465Q17.844-59.465 18.119-59.682Q18.394-59.899 18.496-60.258Q18.511-60.321 18.574-60.321L18.679-60.321Q18.715-60.321 18.740-60.293Q18.765-60.266 18.765-60.227L18.765-60.203Q18.633-59.723 18.248-59.455Q17.863-59.188 17.359-59.188Q16.996-59.188 16.662-59.325Q16.328-59.461 16.068-59.711Q15.808-59.961 15.664-60.297Q15.519-60.633 15.519-60.993M21.054-59.266L19.304-59.266L19.304-59.563Q20.004-59.563 20.191-60.043L21.992-64.868Q22.047-64.977 22.160-64.977L22.230-64.977Q22.344-64.977 22.398-64.868L24.289-59.825Q24.367-59.657 24.570-59.610Q24.773-59.563 25.086-59.563L25.086-59.266L22.863-59.266L22.863-59.563Q23.504-59.563 23.504-59.778Q23.504-59.797 23.502-59.807Q23.500-59.817 23.496-59.825L23.031-61.059L20.886-61.059L20.504-60.043Q20.500-60.028 20.494-59.998Q20.488-59.969 20.488-59.946Q20.488-59.805 20.578-59.721Q20.668-59.637 20.801-59.600Q20.933-59.563 21.054-59.563L21.054-59.266M21.961-63.922L20.992-61.356L22.918-61.356L21.961-63.922M31.336-60.243L26.023-60.243Q25.945-60.250 25.896-60.299Q25.847-60.348 25.847-60.426Q25.847-60.496 25.894-60.547Q25.941-60.598 26.023-60.610L31.336-60.610Q31.410-60.598 31.457-60.547Q31.504-60.496 31.504-60.426Q31.504-60.348 31.455-60.299Q31.406-60.250 31.336-60.243M31.336-61.930L26.023-61.930Q25.945-61.938 25.896-61.987Q25.847-62.036 25.847-62.114Q25.847-62.184 25.894-62.235Q25.941-62.286 26.023-62.297L31.336-62.297Q31.410-62.286 31.457-62.235Q31.504-62.184 31.504-62.114Q31.504-62.036 31.455-61.987Q31.406-61.938 31.336-61.930M33.480-59.489Q33.480-59.914 33.564-60.364Q33.648-60.813 33.804-61.231Q33.961-61.649 34.176-62.036Q34.390-62.422 34.664-62.778L35.390-63.731L34.480-63.731Q32.984-63.731 32.945-63.692Q32.875-63.610 32.828-63.420Q32.781-63.231 32.738-62.953L32.457-62.953L32.726-64.672L33.008-64.672L33.008-64.649Q33.008-64.504 33.525-64.461Q34.043-64.418 34.535-64.418L36.105-64.418L36.105-64.227Q36.097-64.188 36.082-64.161L34.906-62.625Q34.605-62.207 34.467-61.700Q34.328-61.192 34.297-60.698Q34.265-60.203 34.265-59.489Q34.265-59.383 34.215-59.291Q34.164-59.200 34.072-59.149Q33.980-59.098 33.871-59.098Q33.765-59.098 33.674-59.149Q33.582-59.200 33.531-59.291Q33.480-59.383 33.480-59.489M36.949-59.731Q36.949-59.914 37.086-60.051Q37.222-60.188 37.414-60.188Q37.605-60.188 37.738-60.055Q37.871-59.922 37.871-59.731Q37.871-59.532 37.738-59.399Q37.605-59.266 37.414-59.266Q37.222-59.266 37.086-59.403Q36.949-59.539 36.949-59.731M36.949-62.258Q36.949-62.442 37.086-62.578Q37.222-62.715 37.414-62.715Q37.605-62.715 37.738-62.582Q37.871-62.450 37.871-62.258Q37.871-62.059 37.738-61.926Q37.605-61.793 37.414-61.793Q37.222-61.793 37.086-61.930Q36.949-62.067 36.949-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M44.423-59.297L43.200-62.153Q43.118-62.328 42.974-62.373Q42.829-62.418 42.560-62.418L42.560-62.715L44.271-62.715L44.271-62.418Q43.849-62.418 43.849-62.235Q43.849-62.200 43.864-62.153L44.810-59.961L45.650-61.938Q45.689-62.016 45.689-62.106Q45.689-62.246 45.583-62.332Q45.478-62.418 45.337-62.418L45.337-62.715L46.689-62.715L46.689-62.418Q46.165-62.418 45.950-61.938L44.825-59.297Q44.763-59.188 44.657-59.188L44.591-59.188Q44.478-59.188 44.423-59.297\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M46.734-60.098Q46.734-60.582 47.136-60.877Q47.539-61.172 48.089-61.291Q48.640-61.411 49.132-61.411L49.132-61.700Q49.132-61.926 49.017-62.133Q48.902-62.340 48.705-62.459Q48.507-62.578 48.277-62.578Q47.851-62.578 47.566-62.473Q47.636-62.446 47.683-62.391Q47.730-62.336 47.755-62.266Q47.781-62.196 47.781-62.121Q47.781-62.016 47.730-61.924Q47.679-61.832 47.587-61.782Q47.496-61.731 47.390-61.731Q47.285-61.731 47.193-61.782Q47.101-61.832 47.050-61.924Q47-62.016 47-62.121Q47-62.539 47.388-62.686Q47.777-62.832 48.277-62.832Q48.609-62.832 48.962-62.702Q49.316-62.571 49.544-62.317Q49.773-62.063 49.773-61.715L49.773-59.914Q49.773-59.782 49.845-59.672Q49.918-59.563 50.046-59.563Q50.171-59.563 50.240-59.668Q50.308-59.774 50.308-59.914L50.308-60.426L50.589-60.426L50.589-59.914Q50.589-59.711 50.472-59.553Q50.355-59.395 50.173-59.311Q49.992-59.227 49.789-59.227Q49.558-59.227 49.406-59.399Q49.253-59.571 49.222-59.801Q49.062-59.520 48.753-59.354Q48.445-59.188 48.093-59.188Q47.582-59.188 47.158-59.411Q46.734-59.633 46.734-60.098M47.421-60.098Q47.421-59.813 47.648-59.627Q47.875-59.442 48.168-59.442Q48.414-59.442 48.638-59.559Q48.863-59.676 48.998-59.879Q49.132-60.082 49.132-60.336L49.132-61.168Q48.867-61.168 48.582-61.114Q48.296-61.059 48.025-60.930Q47.753-60.801 47.587-60.594Q47.421-60.387 47.421-60.098M52.796-59.266L50.964-59.266L50.964-59.563Q51.238-59.563 51.406-59.610Q51.574-59.657 51.574-59.825L51.574-63.985Q51.574-64.200 51.511-64.295Q51.449-64.391 51.330-64.412Q51.211-64.434 50.964-64.434L50.964-64.731L52.187-64.817L52.187-59.825Q52.187-59.657 52.355-59.610Q52.523-59.563 52.796-59.563L52.796-59.266M55.043-59.266L53.293-59.266L53.293-59.563Q53.992-59.563 54.179-60.043L55.980-64.868Q56.035-64.977 56.148-64.977L56.218-64.977Q56.332-64.977 56.386-64.868L58.277-59.825Q58.355-59.657 58.558-59.610Q58.761-59.563 59.074-59.563L59.074-59.266L56.851-59.266L56.851-59.563Q57.492-59.563 57.492-59.778Q57.492-59.797 57.490-59.807Q57.488-59.817 57.484-59.825L57.019-61.059L54.875-61.059L54.492-60.043Q54.488-60.028 54.482-59.998Q54.476-59.969 54.476-59.946Q54.476-59.805 54.566-59.721Q54.656-59.637 54.789-59.600Q54.921-59.563 55.043-59.563L55.043-59.266M55.949-63.922L54.980-61.356L56.906-61.356L55.949-63.922M65.324-60.243L60.011-60.243Q59.933-60.250 59.884-60.299Q59.836-60.348 59.836-60.426Q59.836-60.496 59.882-60.547Q59.929-60.598 60.011-60.610L65.324-60.610Q65.398-60.598 65.445-60.547Q65.492-60.496 65.492-60.426Q65.492-60.348 65.443-60.299Q65.394-60.250 65.324-60.243M65.324-61.930L60.011-61.930Q59.933-61.938 59.884-61.987Q59.836-62.036 59.836-62.114Q59.836-62.184 59.882-62.235Q59.929-62.286 60.011-62.297L65.324-62.297Q65.398-62.286 65.445-62.235Q65.492-62.184 65.492-62.114Q65.492-62.036 65.443-61.987Q65.394-61.938 65.324-61.930M68.093-59.098Q67.390-59.098 66.990-59.498Q66.589-59.899 66.445-60.508Q66.300-61.118 66.300-61.817Q66.300-62.340 66.371-62.803Q66.441-63.266 66.634-63.678Q66.828-64.090 67.185-64.338Q67.543-64.586 68.093-64.586Q68.644-64.586 69.002-64.338Q69.359-64.090 69.550-63.680Q69.742-63.270 69.812-62.801Q69.882-62.332 69.882-61.817Q69.882-61.118 69.740-60.510Q69.597-59.903 69.197-59.500Q68.796-59.098 68.093-59.098M68.093-59.356Q68.566-59.356 68.798-59.791Q69.031-60.227 69.085-60.766Q69.140-61.305 69.140-61.946Q69.140-62.942 68.957-63.635Q68.773-64.328 68.093-64.328Q67.726-64.328 67.505-64.090Q67.285-63.852 67.189-63.495Q67.093-63.137 67.068-62.766Q67.043-62.395 67.043-61.946Q67.043-61.305 67.097-60.766Q67.152-60.227 67.384-59.791Q67.617-59.356 68.093-59.356M71.843-59.266L70.347-59.266L70.347-59.563Q70.980-59.563 71.402-60.043L72.171-60.953L71.179-62.153Q71.023-62.332 70.861-62.375Q70.699-62.418 70.394-62.418L70.394-62.715L72.082-62.715L72.082-62.418Q71.988-62.418 71.912-62.375Q71.835-62.332 71.835-62.243Q71.835-62.200 71.867-62.153L72.523-61.364L73.003-61.938Q73.121-62.075 73.121-62.211Q73.121-62.301 73.070-62.360Q73.019-62.418 72.937-62.418L72.937-62.715L74.425-62.715L74.425-62.418Q73.789-62.418 73.378-61.938L72.699-61.137L73.785-59.825Q73.945-59.649 74.105-59.606Q74.265-59.563 74.570-59.563L74.570-59.266L72.882-59.266L72.882-59.563Q72.972-59.563 73.050-59.606Q73.128-59.649 73.128-59.739Q73.128-59.762 73.097-59.825L72.355-60.731L71.769-60.043Q71.652-59.907 71.652-59.770Q71.652-59.684 71.703-59.623Q71.753-59.563 71.843-59.563L71.843-59.266M75.492-59.899Q75.683-59.625 76.039-59.498Q76.394-59.371 76.777-59.371Q77.113-59.371 77.322-59.557Q77.531-59.743 77.627-60.036Q77.722-60.328 77.722-60.641Q77.722-60.965 77.625-61.260Q77.527-61.555 77.314-61.739Q77.101-61.922 76.769-61.922L76.203-61.922Q76.171-61.922 76.142-61.952Q76.113-61.981 76.113-62.008L76.113-62.090Q76.113-62.125 76.142-62.151Q76.171-62.176 76.203-62.176L76.683-62.211Q76.968-62.211 77.166-62.416Q77.363-62.621 77.459-62.916Q77.554-63.211 77.554-63.489Q77.554-63.868 77.355-64.106Q77.156-64.344 76.777-64.344Q76.457-64.344 76.168-64.237Q75.878-64.129 75.714-63.907Q75.894-63.907 76.017-63.780Q76.140-63.653 76.140-63.481Q76.140-63.309 76.015-63.184Q75.890-63.059 75.714-63.059Q75.543-63.059 75.418-63.184Q75.293-63.309 75.293-63.481Q75.293-63.848 75.517-64.096Q75.742-64.344 76.082-64.465Q76.421-64.586 76.777-64.586Q77.125-64.586 77.488-64.465Q77.851-64.344 78.099-64.094Q78.347-63.844 78.347-63.489Q78.347-63.004 78.029-62.621Q77.710-62.239 77.234-62.067Q77.785-61.957 78.185-61.571Q78.585-61.184 78.585-60.649Q78.585-60.192 78.322-59.836Q78.058-59.481 77.636-59.289Q77.214-59.098 76.777-59.098Q76.367-59.098 75.974-59.233Q75.582-59.368 75.316-59.653Q75.050-59.938 75.050-60.356Q75.050-60.551 75.183-60.680Q75.316-60.809 75.507-60.809Q75.632-60.809 75.736-60.750Q75.839-60.692 75.902-60.586Q75.964-60.481 75.964-60.356Q75.964-60.161 75.830-60.030Q75.695-59.899 75.492-59.899M79.769-57.860Q79.769-57.899 79.793-57.922Q80.066-58.207 80.209-58.571Q80.351-58.934 80.351-59.321Q80.253-59.266 80.128-59.266Q79.937-59.266 79.800-59.399Q79.664-59.532 79.664-59.731Q79.664-59.922 79.800-60.055Q79.937-60.188 80.128-60.188Q80.609-60.188 80.609-59.313Q80.609-59.024 80.537-58.743Q80.464-58.461 80.322-58.207Q80.179-57.953 79.984-57.746Q79.953-57.715 79.914-57.715Q79.867-57.715 79.818-57.760Q79.769-57.805 79.769-57.860M79.664-62.258Q79.664-62.442 79.800-62.578Q79.937-62.715 80.128-62.715Q80.320-62.715 80.453-62.582Q80.585-62.450 80.585-62.258Q80.585-62.059 80.453-61.926Q80.320-61.793 80.128-61.793Q79.937-61.793 79.800-61.930Q79.664-62.067 79.664-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M84.449-59.274L84.449-60.496Q84.449-60.524 84.481-60.555Q84.512-60.586 84.535-60.586L84.641-60.586Q84.711-60.586 84.727-60.524Q84.789-60.203 84.928-59.963Q85.066-59.723 85.299-59.582Q85.531-59.442 85.840-59.442Q86.078-59.442 86.287-59.502Q86.496-59.563 86.633-59.711Q86.770-59.860 86.770-60.106Q86.770-60.360 86.559-60.526Q86.348-60.692 86.078-60.746L85.457-60.860Q85.051-60.938 84.750-61.194Q84.449-61.450 84.449-61.825Q84.449-62.192 84.650-62.414Q84.852-62.637 85.176-62.735Q85.500-62.832 85.840-62.832Q86.305-62.832 86.602-62.625L86.824-62.809Q86.848-62.832 86.879-62.832L86.930-62.832Q86.961-62.832 86.988-62.805Q87.016-62.778 87.016-62.746L87.016-61.762Q87.016-61.731 86.990-61.702Q86.965-61.672 86.930-61.672L86.824-61.672Q86.789-61.672 86.762-61.700Q86.734-61.727 86.734-61.762Q86.734-62.161 86.482-62.381Q86.231-62.602 85.832-62.602Q85.477-62.602 85.193-62.479Q84.910-62.356 84.910-62.051Q84.910-61.832 85.111-61.700Q85.313-61.567 85.559-61.524L86.184-61.411Q86.613-61.321 86.922-61.024Q87.231-60.727 87.231-60.313Q87.231-59.743 86.832-59.465Q86.434-59.188 85.840-59.188Q85.289-59.188 84.938-59.524L84.641-59.211Q84.617-59.188 84.582-59.188L84.535-59.188Q84.512-59.188 84.481-59.219Q84.449-59.250 84.449-59.274M89.766-59.266L87.785-59.266L87.785-59.563Q88.055-59.563 88.223-59.608Q88.391-59.653 88.391-59.825L88.391-61.961Q88.391-62.176 88.328-62.272Q88.266-62.368 88.148-62.389Q88.031-62.411 87.785-62.411L87.785-62.707L88.953-62.793L88.953-62.008Q89.031-62.219 89.184-62.405Q89.336-62.590 89.535-62.692Q89.734-62.793 89.961-62.793Q90.207-62.793 90.398-62.649Q90.590-62.504 90.590-62.274Q90.590-62.118 90.484-62.008Q90.379-61.899 90.223-61.899Q90.066-61.899 89.957-62.008Q89.848-62.118 89.848-62.274Q89.848-62.434 89.953-62.539Q89.629-62.539 89.414-62.311Q89.199-62.082 89.104-61.743Q89.008-61.403 89.008-61.098L89.008-59.825Q89.008-59.657 89.234-59.610Q89.461-59.563 89.766-59.563L89.766-59.266M91.113-60.993Q91.113-61.489 91.363-61.914Q91.613-62.340 92.033-62.586Q92.453-62.832 92.953-62.832Q93.492-62.832 93.883-62.707Q94.273-62.582 94.273-62.168Q94.273-62.063 94.223-61.971Q94.172-61.879 94.080-61.828Q93.988-61.778 93.879-61.778Q93.773-61.778 93.682-61.828Q93.590-61.879 93.539-61.971Q93.488-62.063 93.488-62.168Q93.488-62.391 93.656-62.496Q93.434-62.555 92.961-62.555Q92.664-62.555 92.449-62.416Q92.234-62.278 92.104-62.047Q91.973-61.817 91.914-61.547Q91.856-61.278 91.856-60.993Q91.856-60.598 91.988-60.248Q92.121-59.899 92.393-59.682Q92.664-59.465 93.063-59.465Q93.438-59.465 93.713-59.682Q93.988-59.899 94.090-60.258Q94.106-60.321 94.168-60.321L94.273-60.321Q94.309-60.321 94.334-60.293Q94.359-60.266 94.359-60.227L94.359-60.203Q94.227-59.723 93.842-59.455Q93.457-59.188 92.953-59.188Q92.590-59.188 92.256-59.325Q91.922-59.461 91.662-59.711Q91.402-59.961 91.258-60.297Q91.113-60.633 91.113-60.993M98.258-59.266L94.977-59.266L94.977-59.563Q95.301-59.563 95.543-59.610Q95.785-59.657 95.785-59.825L95.785-64.168Q95.785-64.340 95.543-64.387Q95.301-64.434 94.977-64.434L94.977-64.731L98.023-64.731Q98.449-64.731 98.883-64.577Q99.316-64.422 99.611-64.114Q99.906-63.805 99.906-63.371Q99.906-63.118 99.781-62.901Q99.656-62.684 99.455-62.528Q99.254-62.371 99.022-62.272Q98.789-62.172 98.531-62.121Q98.906-62.086 99.285-61.909Q99.664-61.731 99.904-61.432Q100.145-61.133 100.145-60.739Q100.145-60.286 99.861-59.952Q99.578-59.618 99.143-59.442Q98.707-59.266 98.258-59.266M96.496-61.977L96.496-59.825Q96.496-59.653 96.588-59.608Q96.680-59.563 96.898-59.563L98.023-59.563Q98.262-59.563 98.496-59.651Q98.731-59.739 98.916-59.899Q99.102-60.059 99.203-60.272Q99.305-60.485 99.305-60.739Q99.305-61.059 99.152-61.344Q99-61.629 98.731-61.803Q98.461-61.977 98.145-61.977L96.496-61.977M96.496-64.168L96.496-62.235L97.785-62.235Q98.027-62.235 98.266-62.317Q98.504-62.399 98.688-62.545Q98.871-62.692 98.984-62.909Q99.098-63.125 99.098-63.371Q99.098-63.582 99.012-63.784Q98.926-63.985 98.779-64.127Q98.633-64.270 98.438-64.352Q98.242-64.434 98.023-64.434L96.898-64.434Q96.680-64.434 96.588-64.391Q96.496-64.348 96.496-64.168M106.586-60.243L101.273-60.243Q101.195-60.250 101.147-60.299Q101.098-60.348 101.098-60.426Q101.098-60.496 101.145-60.547Q101.191-60.598 101.273-60.610L106.586-60.610Q106.660-60.598 106.707-60.547Q106.754-60.496 106.754-60.426Q106.754-60.348 106.705-60.299Q106.656-60.250 106.586-60.243M106.586-61.930L101.273-61.930Q101.195-61.938 101.147-61.987Q101.098-62.036 101.098-62.114Q101.098-62.184 101.145-62.235Q101.191-62.286 101.273-62.297L106.586-62.297Q106.660-62.286 106.707-62.235Q106.754-62.184 106.754-62.114Q106.754-62.036 106.705-61.987Q106.656-61.938 106.586-61.930M109.356-59.098Q108.652-59.098 108.252-59.498Q107.852-59.899 107.707-60.508Q107.563-61.118 107.563-61.817Q107.563-62.340 107.633-62.803Q107.703-63.266 107.897-63.678Q108.090-64.090 108.447-64.338Q108.805-64.586 109.356-64.586Q109.906-64.586 110.264-64.338Q110.621-64.090 110.813-63.680Q111.004-63.270 111.074-62.801Q111.145-62.332 111.145-61.817Q111.145-61.118 111.002-60.510Q110.859-59.903 110.459-59.500Q110.059-59.098 109.356-59.098M109.356-59.356Q109.828-59.356 110.061-59.791Q110.293-60.227 110.348-60.766Q110.402-61.305 110.402-61.946Q110.402-62.942 110.219-63.635Q110.035-64.328 109.356-64.328Q108.988-64.328 108.768-64.090Q108.547-63.852 108.451-63.495Q108.356-63.137 108.330-62.766Q108.305-62.395 108.305-61.946Q108.305-61.305 108.359-60.766Q108.414-60.227 108.647-59.791Q108.879-59.356 109.356-59.356M112.199-59.731Q112.199-59.914 112.336-60.051Q112.473-60.188 112.664-60.188Q112.856-60.188 112.988-60.055Q113.121-59.922 113.121-59.731Q113.121-59.532 112.988-59.399Q112.856-59.266 112.664-59.266Q112.473-59.266 112.336-59.403Q112.199-59.539 112.199-59.731M112.199-62.258Q112.199-62.442 112.336-62.578Q112.473-62.715 112.664-62.715Q112.856-62.715 112.988-62.582Q113.121-62.450 113.121-62.258Q113.121-62.059 112.988-61.926Q112.856-61.793 112.664-61.793Q112.473-61.793 112.336-61.930Q112.199-62.067 112.199-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M119.667-59.297L118.444-62.153Q118.362-62.328 118.218-62.373Q118.073-62.418 117.804-62.418L117.804-62.715L119.515-62.715L119.515-62.418Q119.093-62.418 119.093-62.235Q119.093-62.200 119.108-62.153L120.054-59.961L120.894-61.938Q120.933-62.016 120.933-62.106Q120.933-62.246 120.827-62.332Q120.722-62.418 120.581-62.418L120.581-62.715L121.933-62.715L121.933-62.418Q121.409-62.418 121.194-61.938L120.069-59.297Q120.007-59.188 119.901-59.188L119.835-59.188Q119.722-59.188 119.667-59.297\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M121.978-60.098Q121.978-60.582 122.380-60.877Q122.783-61.172 123.333-61.291Q123.884-61.411 124.376-61.411L124.376-61.700Q124.376-61.926 124.261-62.133Q124.146-62.340 123.949-62.459Q123.751-62.578 123.521-62.578Q123.095-62.578 122.810-62.473Q122.880-62.446 122.927-62.391Q122.974-62.336 122.999-62.266Q123.025-62.196 123.025-62.121Q123.025-62.016 122.974-61.924Q122.923-61.832 122.831-61.782Q122.740-61.731 122.634-61.731Q122.529-61.731 122.437-61.782Q122.345-61.832 122.294-61.924Q122.244-62.016 122.244-62.121Q122.244-62.539 122.632-62.686Q123.021-62.832 123.521-62.832Q123.853-62.832 124.206-62.702Q124.560-62.571 124.788-62.317Q125.017-62.063 125.017-61.715L125.017-59.914Q125.017-59.782 125.089-59.672Q125.162-59.563 125.290-59.563Q125.415-59.563 125.484-59.668Q125.552-59.774 125.552-59.914L125.552-60.426L125.833-60.426L125.833-59.914Q125.833-59.711 125.716-59.553Q125.599-59.395 125.417-59.311Q125.236-59.227 125.033-59.227Q124.802-59.227 124.650-59.399Q124.497-59.571 124.466-59.801Q124.306-59.520 123.997-59.354Q123.689-59.188 123.337-59.188Q122.826-59.188 122.402-59.411Q121.978-59.633 121.978-60.098M122.665-60.098Q122.665-59.813 122.892-59.627Q123.119-59.442 123.412-59.442Q123.658-59.442 123.882-59.559Q124.107-59.676 124.242-59.879Q124.376-60.082 124.376-60.336L124.376-61.168Q124.111-61.168 123.826-61.114Q123.540-61.059 123.269-60.930Q122.997-60.801 122.831-60.594Q122.665-60.387 122.665-60.098M128.040-59.266L126.208-59.266L126.208-59.563Q126.482-59.563 126.650-59.610Q126.818-59.657 126.818-59.825L126.818-63.985Q126.818-64.200 126.755-64.295Q126.693-64.391 126.574-64.412Q126.454-64.434 126.208-64.434L126.208-64.731L127.431-64.817L127.431-59.825Q127.431-59.657 127.599-59.610Q127.767-59.563 128.040-59.563L128.040-59.266M131.896-59.266L128.615-59.266L128.615-59.563Q128.939-59.563 129.181-59.610Q129.423-59.657 129.423-59.825L129.423-64.168Q129.423-64.340 129.181-64.387Q128.939-64.434 128.615-64.434L128.615-64.731L131.662-64.731Q132.087-64.731 132.521-64.577Q132.954-64.422 133.249-64.114Q133.544-63.805 133.544-63.371Q133.544-63.118 133.419-62.901Q133.294-62.684 133.093-62.528Q132.892-62.371 132.660-62.272Q132.427-62.172 132.169-62.121Q132.544-62.086 132.923-61.909Q133.302-61.731 133.542-61.432Q133.783-61.133 133.783-60.739Q133.783-60.286 133.499-59.952Q133.216-59.618 132.781-59.442Q132.345-59.266 131.896-59.266M130.134-61.977L130.134-59.825Q130.134-59.653 130.226-59.608Q130.318-59.563 130.537-59.563L131.662-59.563Q131.900-59.563 132.134-59.651Q132.369-59.739 132.554-59.899Q132.740-60.059 132.841-60.272Q132.943-60.485 132.943-60.739Q132.943-61.059 132.790-61.344Q132.638-61.629 132.369-61.803Q132.099-61.977 131.783-61.977L130.134-61.977M130.134-64.168L130.134-62.235L131.423-62.235Q131.665-62.235 131.904-62.317Q132.142-62.399 132.326-62.545Q132.509-62.692 132.622-62.909Q132.736-63.125 132.736-63.371Q132.736-63.582 132.650-63.784Q132.564-63.985 132.417-64.127Q132.271-64.270 132.076-64.352Q131.880-64.434 131.662-64.434L130.537-64.434Q130.318-64.434 130.226-64.391Q130.134-64.348 130.134-64.168M140.224-60.243L134.912-60.243Q134.833-60.250 134.785-60.299Q134.736-60.348 134.736-60.426Q134.736-60.496 134.783-60.547Q134.829-60.598 134.912-60.610L140.224-60.610Q140.298-60.598 140.345-60.547Q140.392-60.496 140.392-60.426Q140.392-60.348 140.343-60.299Q140.294-60.250 140.224-60.243M140.224-61.930L134.912-61.930Q134.833-61.938 134.785-61.987Q134.736-62.036 134.736-62.114Q134.736-62.184 134.783-62.235Q134.829-62.286 134.912-62.297L140.224-62.297Q140.298-62.286 140.345-62.235Q140.392-62.184 140.392-62.114Q140.392-62.036 140.343-61.987Q140.294-61.938 140.224-61.930M142.994-59.098Q142.290-59.098 141.890-59.498Q141.490-59.899 141.345-60.508Q141.201-61.118 141.201-61.817Q141.201-62.340 141.271-62.803Q141.341-63.266 141.535-63.678Q141.728-64.090 142.085-64.338Q142.443-64.586 142.994-64.586Q143.544-64.586 143.902-64.338Q144.259-64.090 144.451-63.680Q144.642-63.270 144.712-62.801Q144.783-62.332 144.783-61.817Q144.783-61.118 144.640-60.510Q144.497-59.903 144.097-59.500Q143.697-59.098 142.994-59.098M142.994-59.356Q143.466-59.356 143.699-59.791Q143.931-60.227 143.986-60.766Q144.040-61.305 144.040-61.946Q144.040-62.942 143.857-63.635Q143.673-64.328 142.994-64.328Q142.626-64.328 142.406-64.090Q142.185-63.852 142.089-63.495Q141.994-63.137 141.968-62.766Q141.943-62.395 141.943-61.946Q141.943-61.305 141.997-60.766Q142.052-60.227 142.285-59.791Q142.517-59.356 142.994-59.356M146.744-59.266L145.247-59.266L145.247-59.563Q145.880-59.563 146.302-60.043L147.072-60.953L146.079-62.153Q145.923-62.332 145.761-62.375Q145.599-62.418 145.294-62.418L145.294-62.715L146.982-62.715L146.982-62.418Q146.888-62.418 146.812-62.375Q146.736-62.332 146.736-62.243Q146.736-62.200 146.767-62.153L147.423-61.364L147.904-61.938Q148.021-62.075 148.021-62.211Q148.021-62.301 147.970-62.360Q147.919-62.418 147.837-62.418L147.837-62.715L149.326-62.715L149.326-62.418Q148.689-62.418 148.279-61.938L147.599-61.137L148.685-59.825Q148.845-59.649 149.005-59.606Q149.165-59.563 149.470-59.563L149.470-59.266L147.783-59.266L147.783-59.563Q147.872-59.563 147.951-59.606Q148.029-59.649 148.029-59.739Q148.029-59.762 147.997-59.825L147.255-60.731L146.669-60.043Q146.552-59.907 146.552-59.770Q146.552-59.684 146.603-59.623Q146.654-59.563 146.744-59.563L146.744-59.266M151.720-59.098Q151.017-59.098 150.617-59.498Q150.216-59.899 150.072-60.508Q149.927-61.118 149.927-61.817Q149.927-62.340 149.997-62.803Q150.068-63.266 150.261-63.678Q150.454-64.090 150.812-64.338Q151.169-64.586 151.720-64.586Q152.271-64.586 152.628-64.338Q152.986-64.090 153.177-63.680Q153.369-63.270 153.439-62.801Q153.509-62.332 153.509-61.817Q153.509-61.118 153.367-60.510Q153.224-59.903 152.824-59.500Q152.423-59.098 151.720-59.098M151.720-59.356Q152.193-59.356 152.425-59.791Q152.658-60.227 152.712-60.766Q152.767-61.305 152.767-61.946Q152.767-62.942 152.583-63.635Q152.400-64.328 151.720-64.328Q151.353-64.328 151.132-64.090Q150.912-63.852 150.816-63.495Q150.720-63.137 150.695-62.766Q150.669-62.395 150.669-61.946Q150.669-61.305 150.724-60.766Q150.779-60.227 151.011-59.791Q151.244-59.356 151.720-59.356M154.669-57.860Q154.669-57.899 154.693-57.922Q154.966-58.207 155.109-58.571Q155.251-58.934 155.251-59.321Q155.154-59.266 155.029-59.266Q154.837-59.266 154.701-59.399Q154.564-59.532 154.564-59.731Q154.564-59.922 154.701-60.055Q154.837-60.188 155.029-60.188Q155.509-60.188 155.509-59.313Q155.509-59.024 155.437-58.743Q155.365-58.461 155.222-58.207Q155.079-57.953 154.884-57.746Q154.853-57.715 154.814-57.715Q154.767-57.715 154.718-57.760Q154.669-57.805 154.669-57.860M154.564-62.258Q154.564-62.442 154.701-62.578Q154.837-62.715 155.029-62.715Q155.220-62.715 155.353-62.582Q155.486-62.450 155.486-62.258Q155.486-62.059 155.353-61.926Q155.220-61.793 155.029-61.793Q154.837-61.793 154.701-61.930Q154.564-62.067 154.564-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M161.117-59.188Q160.636-59.188 160.228-59.432Q159.820-59.676 159.582-60.090Q159.343-60.504 159.343-60.993Q159.343-61.485 159.601-61.901Q159.859-62.317 160.291-62.555Q160.722-62.793 161.214-62.793Q161.835-62.793 162.285-62.356L162.285-63.985Q162.285-64.200 162.222-64.295Q162.160-64.391 162.042-64.412Q161.925-64.434 161.679-64.434L161.679-64.731L162.902-64.817L162.902-60.008Q162.902-59.797 162.964-59.702Q163.027-59.606 163.144-59.584Q163.261-59.563 163.511-59.563L163.511-59.266L162.261-59.188L162.261-59.672Q161.796-59.188 161.117-59.188M161.183-59.442Q161.523-59.442 161.816-59.633Q162.109-59.825 162.261-60.121L162.261-61.953Q162.113-62.227 161.851-62.383Q161.589-62.539 161.277-62.539Q160.652-62.539 160.369-62.092Q160.085-61.645 160.085-60.985Q160.085-60.340 160.337-59.891Q160.589-59.442 161.183-59.442M164.062-59.274L164.062-60.496Q164.062-60.524 164.093-60.555Q164.125-60.586 164.148-60.586L164.253-60.586Q164.324-60.586 164.339-60.524Q164.402-60.203 164.541-59.963Q164.679-59.723 164.912-59.582Q165.144-59.442 165.453-59.442Q165.691-59.442 165.900-59.502Q166.109-59.563 166.246-59.711Q166.382-59.860 166.382-60.106Q166.382-60.360 166.171-60.526Q165.960-60.692 165.691-60.746L165.070-60.860Q164.664-60.938 164.363-61.194Q164.062-61.450 164.062-61.825Q164.062-62.192 164.263-62.414Q164.464-62.637 164.789-62.735Q165.113-62.832 165.453-62.832Q165.917-62.832 166.214-62.625L166.437-62.809Q166.460-62.832 166.492-62.832L166.542-62.832Q166.574-62.832 166.601-62.805Q166.628-62.778 166.628-62.746L166.628-61.762Q166.628-61.731 166.603-61.702Q166.578-61.672 166.542-61.672L166.437-61.672Q166.402-61.672 166.375-61.700Q166.347-61.727 166.347-61.762Q166.347-62.161 166.095-62.381Q165.843-62.602 165.445-62.602Q165.089-62.602 164.806-62.479Q164.523-62.356 164.523-62.051Q164.523-61.832 164.724-61.700Q164.925-61.567 165.171-61.524L165.796-61.411Q166.226-61.321 166.535-61.024Q166.843-60.727 166.843-60.313Q166.843-59.743 166.445-59.465Q166.046-59.188 165.453-59.188Q164.902-59.188 164.550-59.524L164.253-59.211Q164.230-59.188 164.195-59.188L164.148-59.188Q164.125-59.188 164.093-59.219Q164.062-59.250 164.062-59.274M167.996-60.227L167.996-62.418L167.292-62.418L167.292-62.672Q167.648-62.672 167.890-62.905Q168.132-63.137 168.244-63.485Q168.355-63.832 168.355-64.188L168.636-64.188L168.636-62.715L169.812-62.715L169.812-62.418L168.636-62.418L168.636-60.243Q168.636-59.922 168.755-59.694Q168.875-59.465 169.156-59.465Q169.335-59.465 169.453-59.588Q169.570-59.711 169.623-59.891Q169.675-60.071 169.675-60.243L169.675-60.715L169.957-60.715L169.957-60.227Q169.957-59.973 169.851-59.733Q169.746-59.493 169.548-59.340Q169.351-59.188 169.093-59.188Q168.777-59.188 168.525-59.311Q168.273-59.434 168.134-59.668Q167.996-59.903 167.996-60.227M175.621-59.266L170.773-59.266L170.773-59.563Q171.093-59.563 171.337-59.610Q171.582-59.657 171.582-59.825L171.582-64.168Q171.582-64.340 171.337-64.387Q171.093-64.434 170.773-64.434L170.773-64.731L175.507-64.731L175.742-62.883L175.460-62.883Q175.378-63.578 175.203-63.899Q175.027-64.219 174.679-64.327Q174.332-64.434 173.613-64.434L172.750-64.434Q172.531-64.434 172.439-64.391Q172.347-64.348 172.347-64.168L172.347-62.250L172.980-62.250Q173.406-62.250 173.613-62.313Q173.820-62.375 173.908-62.571Q173.996-62.766 173.996-63.188L174.277-63.188L174.277-61.020L173.996-61.020Q173.996-61.442 173.908-61.635Q173.820-61.828 173.613-61.891Q173.406-61.953 172.980-61.953L172.347-61.953L172.347-59.825Q172.347-59.653 172.439-59.608Q172.531-59.563 172.750-59.563L173.675-59.563Q174.257-59.563 174.611-59.645Q174.964-59.727 175.169-59.924Q175.375-60.121 175.488-60.459Q175.601-60.797 175.695-61.379L175.972-61.379L175.621-59.266M182.175-60.243L176.863-60.243Q176.785-60.250 176.736-60.299Q176.687-60.348 176.687-60.426Q176.687-60.496 176.734-60.547Q176.781-60.598 176.863-60.610L182.175-60.610Q182.250-60.598 182.296-60.547Q182.343-60.496 182.343-60.426Q182.343-60.348 182.294-60.299Q182.246-60.250 182.175-60.243M182.175-61.930L176.863-61.930Q176.785-61.938 176.736-61.987Q176.687-62.036 176.687-62.114Q176.687-62.184 176.734-62.235Q176.781-62.286 176.863-62.297L182.175-62.297Q182.250-62.286 182.296-62.235Q182.343-62.184 182.343-62.114Q182.343-62.036 182.294-61.987Q182.246-61.938 182.175-61.930M184.945-59.098Q184.242-59.098 183.841-59.498Q183.441-59.899 183.296-60.508Q183.152-61.118 183.152-61.817Q183.152-62.340 183.222-62.803Q183.292-63.266 183.486-63.678Q183.679-64.090 184.037-64.338Q184.394-64.586 184.945-64.586Q185.496-64.586 185.853-64.338Q186.210-64.090 186.402-63.680Q186.593-63.270 186.664-62.801Q186.734-62.332 186.734-61.817Q186.734-61.118 186.591-60.510Q186.449-59.903 186.048-59.500Q185.648-59.098 184.945-59.098M184.945-59.356Q185.417-59.356 185.650-59.791Q185.882-60.227 185.937-60.766Q185.992-61.305 185.992-61.946Q185.992-62.942 185.808-63.635Q185.625-64.328 184.945-64.328Q184.578-64.328 184.357-64.090Q184.136-63.852 184.041-63.495Q183.945-63.137 183.919-62.766Q183.894-62.395 183.894-61.946Q183.894-61.305 183.949-60.766Q184.003-60.227 184.236-59.791Q184.468-59.356 184.945-59.356M187.894-57.860Q187.894-57.899 187.917-57.922Q188.191-58.207 188.333-58.571Q188.476-58.934 188.476-59.321Q188.378-59.266 188.253-59.266Q188.062-59.266 187.925-59.399Q187.789-59.532 187.789-59.731Q187.789-59.922 187.925-60.055Q188.062-60.188 188.253-60.188Q188.734-60.188 188.734-59.313Q188.734-59.024 188.662-58.743Q188.589-58.461 188.447-58.207Q188.304-57.953 188.109-57.746Q188.078-57.715 188.039-57.715Q187.992-57.715 187.943-57.760Q187.894-57.805 187.894-57.860M187.789-62.258Q187.789-62.442 187.925-62.578Q188.062-62.715 188.253-62.715Q188.445-62.715 188.578-62.582Q188.710-62.450 188.710-62.258Q188.710-62.059 188.578-61.926Q188.445-61.793 188.253-61.793Q188.062-61.793 187.925-61.930Q187.789-62.067 187.789-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M194.334-59.188Q193.853-59.188 193.445-59.432Q193.037-59.676 192.799-60.090Q192.560-60.504 192.560-60.993Q192.560-61.485 192.818-61.901Q193.076-62.317 193.508-62.555Q193.939-62.793 194.431-62.793Q195.052-62.793 195.502-62.356L195.502-63.985Q195.502-64.200 195.439-64.295Q195.377-64.391 195.259-64.412Q195.142-64.434 194.896-64.434L194.896-64.731L196.119-64.817L196.119-60.008Q196.119-59.797 196.181-59.702Q196.244-59.606 196.361-59.584Q196.478-59.563 196.728-59.563L196.728-59.266L195.478-59.188L195.478-59.672Q195.013-59.188 194.334-59.188M194.400-59.442Q194.740-59.442 195.033-59.633Q195.326-59.825 195.478-60.121L195.478-61.953Q195.330-62.227 195.068-62.383Q194.806-62.539 194.494-62.539Q193.869-62.539 193.586-62.092Q193.302-61.645 193.302-60.985Q193.302-60.340 193.554-59.891Q193.806-59.442 194.400-59.442M197.279-59.274L197.279-60.496Q197.279-60.524 197.310-60.555Q197.341-60.586 197.365-60.586L197.470-60.586Q197.541-60.586 197.556-60.524Q197.619-60.203 197.758-59.963Q197.896-59.723 198.129-59.582Q198.361-59.442 198.670-59.442Q198.908-59.442 199.117-59.502Q199.326-59.563 199.463-59.711Q199.599-59.860 199.599-60.106Q199.599-60.360 199.388-60.526Q199.177-60.692 198.908-60.746L198.287-60.860Q197.881-60.938 197.580-61.194Q197.279-61.450 197.279-61.825Q197.279-62.192 197.480-62.414Q197.681-62.637 198.006-62.735Q198.330-62.832 198.670-62.832Q199.134-62.832 199.431-62.625L199.654-62.809Q199.677-62.832 199.709-62.832L199.759-62.832Q199.791-62.832 199.818-62.805Q199.845-62.778 199.845-62.746L199.845-61.762Q199.845-61.731 199.820-61.702Q199.795-61.672 199.759-61.672L199.654-61.672Q199.619-61.672 199.591-61.700Q199.564-61.727 199.564-61.762Q199.564-62.161 199.312-62.381Q199.060-62.602 198.662-62.602Q198.306-62.602 198.023-62.479Q197.740-62.356 197.740-62.051Q197.740-61.832 197.941-61.700Q198.142-61.567 198.388-61.524L199.013-61.411Q199.443-61.321 199.752-61.024Q200.060-60.727 200.060-60.313Q200.060-59.743 199.662-59.465Q199.263-59.188 198.670-59.188Q198.119-59.188 197.767-59.524L197.470-59.211Q197.447-59.188 197.412-59.188L197.365-59.188Q197.341-59.188 197.310-59.219Q197.279-59.250 197.279-59.274M201.213-60.227L201.213-62.418L200.509-62.418L200.509-62.672Q200.865-62.672 201.107-62.905Q201.349-63.137 201.461-63.485Q201.572-63.832 201.572-64.188L201.853-64.188L201.853-62.715L203.029-62.715L203.029-62.418L201.853-62.418L201.853-60.243Q201.853-59.922 201.972-59.694Q202.091-59.465 202.373-59.465Q202.552-59.465 202.670-59.588Q202.787-59.711 202.840-59.891Q202.892-60.071 202.892-60.243L202.892-60.715L203.174-60.715L203.174-60.227Q203.174-59.973 203.068-59.733Q202.963-59.493 202.765-59.340Q202.568-59.188 202.310-59.188Q201.994-59.188 201.742-59.311Q201.490-59.434 201.351-59.668Q201.213-59.903 201.213-60.227M205.951-59.266L204.029-59.266L204.029-59.563Q204.838-59.563 204.838-60.043L204.838-64.168Q204.838-64.340 204.595-64.387Q204.353-64.434 204.029-64.434L204.029-64.731L205.525-64.731Q205.634-64.731 205.693-64.618L207.541-60.075L209.381-64.618Q209.443-64.731 209.549-64.731L211.052-64.731L211.052-64.434Q210.732-64.434 210.490-64.387Q210.248-64.340 210.248-64.168L210.248-59.825Q210.248-59.657 210.490-59.610Q210.732-59.563 211.052-59.563L211.052-59.266L208.752-59.266L208.752-59.563Q209.556-59.563 209.556-59.825L209.556-64.418L207.509-59.379Q207.474-59.266 207.341-59.266Q207.201-59.266 207.166-59.379L205.142-64.356L205.142-60.043Q205.142-59.563 205.951-59.563L205.951-59.266M217.392-60.243L212.080-60.243Q212.002-60.250 211.953-60.299Q211.904-60.348 211.904-60.426Q211.904-60.496 211.951-60.547Q211.998-60.598 212.080-60.610L217.392-60.610Q217.466-60.598 217.513-60.547Q217.560-60.496 217.560-60.426Q217.560-60.348 217.511-60.299Q217.463-60.250 217.392-60.243M217.392-61.930L212.080-61.930Q212.002-61.938 211.953-61.987Q211.904-62.036 211.904-62.114Q211.904-62.184 211.951-62.235Q211.998-62.286 212.080-62.297L217.392-62.297Q217.466-62.286 217.513-62.235Q217.560-62.184 217.560-62.114Q217.560-62.036 217.511-61.987Q217.463-61.938 217.392-61.930M220.963-59.266L218.377-59.266L218.377-59.563Q218.697-59.563 218.941-59.610Q219.185-59.657 219.185-59.825L219.185-64.168Q219.185-64.340 218.941-64.387Q218.697-64.434 218.377-64.434L218.377-64.731L222.994-64.731L223.224-62.883L222.943-62.883Q222.857-63.567 222.695-63.887Q222.533-64.207 222.193-64.321Q221.853-64.434 221.162-64.434L220.353-64.434Q220.134-64.434 220.043-64.391Q219.951-64.348 219.951-64.168L219.951-62.145L220.560-62.145Q220.986-62.145 221.183-62.211Q221.381-62.278 221.463-62.471Q221.545-62.664 221.545-63.082L221.826-63.082L221.826-60.914L221.545-60.914Q221.545-61.332 221.463-61.526Q221.381-61.719 221.183-61.786Q220.986-61.852 220.560-61.852L219.951-61.852L219.951-59.825Q219.951-59.661 220.269-59.612Q220.588-59.563 220.963-59.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M229.050-57.274Q228.437-57.731 228.035-58.366Q227.632-59 227.437-59.746Q227.242-60.493 227.242-61.266Q227.242-62.039 227.437-62.786Q227.632-63.532 228.035-64.166Q228.437-64.801 229.050-65.258Q229.062-65.262 229.070-65.264Q229.078-65.266 229.089-65.266L229.167-65.266Q229.206-65.266 229.232-65.239Q229.257-65.211 229.257-65.168Q229.257-65.118 229.226-65.098Q228.718-64.645 228.396-64.022Q228.074-63.399 227.933-62.703Q227.792-62.008 227.792-61.266Q227.792-60.532 227.931-59.832Q228.070-59.133 228.394-58.508Q228.718-57.883 229.226-57.434Q229.257-57.414 229.257-57.364Q229.257-57.321 229.232-57.293Q229.206-57.266 229.167-57.266L229.089-57.266Q229.081-57.270 229.072-57.272Q229.062-57.274 229.050-57.274M232.449-59.266L230.089-59.266L230.089-59.563Q230.413-59.563 230.656-59.610Q230.898-59.657 230.898-59.825L230.898-64.168Q230.898-64.340 230.656-64.387Q230.413-64.434 230.089-64.434L230.089-64.731L232.683-64.731Q233.015-64.731 233.402-64.645Q233.788-64.559 234.136-64.385Q234.484-64.211 234.703-63.930Q234.921-63.649 234.921-63.282Q234.921-62.957 234.720-62.692Q234.519-62.426 234.212-62.250Q233.906-62.075 233.578-61.985Q233.945-61.864 234.204-61.594Q234.464-61.325 234.515-60.961L234.609-60.266Q234.679-59.817 234.777-59.586Q234.874-59.356 235.171-59.356Q235.417-59.356 235.550-59.573Q235.683-59.789 235.683-60.051Q235.703-60.125 235.785-60.145L235.867-60.145Q235.960-60.121 235.960-60.028Q235.960-59.797 235.863-59.582Q235.765-59.368 235.587-59.233Q235.410-59.098 235.179-59.098Q234.581-59.098 234.163-59.385Q233.745-59.672 233.745-60.243L233.745-60.938Q233.745-61.219 233.593-61.434Q233.441-61.649 233.191-61.762Q232.941-61.875 232.667-61.875L231.640-61.875L231.640-59.825Q231.640-59.661 231.884-59.612Q232.128-59.563 232.449-59.563L232.449-59.266M231.640-64.168L231.640-62.129L232.570-62.129Q232.890-62.129 233.158-62.182Q233.425-62.235 233.624-62.362Q233.824-62.489 233.941-62.721Q234.058-62.953 234.058-63.282Q234.058-63.934 233.662-64.184Q233.265-64.434 232.570-64.434L232.042-64.434Q231.824-64.434 231.732-64.391Q231.640-64.348 231.640-64.168M238.242-59.266L236.320-59.266L236.320-59.563Q237.128-59.563 237.128-60.043L237.128-64.387Q236.870-64.434 236.320-64.434L236.320-64.731L237.816-64.731Q237.874-64.711 237.886-64.700L240.894-60.512L240.894-63.953Q240.894-64.434 240.089-64.434L240.089-64.731L242.007-64.731L242.007-64.434Q241.199-64.434 241.199-63.953L241.199-59.371Q241.179-59.286 241.105-59.266L240.999-59.266Q240.945-59.278 240.929-59.305L237.433-64.161L237.433-60.043Q237.433-59.563 238.242-59.563L238.242-59.266M245.648-59.098Q245.066-59.098 244.548-59.325Q244.031-59.551 243.642-59.950Q243.253-60.348 243.035-60.873Q242.816-61.399 242.816-61.969Q242.816-62.739 243.191-63.416Q243.566-64.094 244.216-64.496Q244.867-64.899 245.648-64.899Q246.421-64.899 247.072-64.496Q247.722-64.094 248.097-63.416Q248.472-62.739 248.472-61.969Q248.472-61.399 248.251-60.868Q248.031-60.336 247.646-59.944Q247.261-59.551 246.744-59.325Q246.226-59.098 245.648-59.098M244.206-60.168Q244.370-59.938 244.601-59.762Q244.831-59.586 245.099-59.491Q245.367-59.395 245.648-59.395Q246.066-59.395 246.447-59.606Q246.828-59.817 247.078-60.168Q247.609-60.887 247.609-62.106Q247.609-62.735 247.394-63.313Q247.179-63.891 246.738-64.254Q246.296-64.618 245.648-64.618Q244.995-64.618 244.552-64.254Q244.109-63.891 243.894-63.313Q243.679-62.735 243.679-62.106Q243.679-60.887 244.206-60.168M251.210-59.266L249.288-59.266L249.288-59.563Q250.097-59.563 250.097-60.043L250.097-64.387Q249.839-64.434 249.288-64.434L249.288-64.731L250.785-64.731Q250.843-64.711 250.855-64.700L253.863-60.512L253.863-63.953Q253.863-64.434 253.058-64.434L253.058-64.731L254.976-64.731L254.976-64.434Q254.167-64.434 254.167-63.953L254.167-59.371Q254.148-59.286 254.074-59.266L253.968-59.266Q253.913-59.278 253.898-59.305L250.402-64.161L250.402-60.043Q250.402-59.563 251.210-59.563L251.210-59.266M260.495-59.266L255.648-59.266L255.648-59.563Q255.968-59.563 256.212-59.610Q256.456-59.657 256.456-59.825L256.456-64.168Q256.456-64.340 256.212-64.387Q255.968-64.434 255.648-64.434L255.648-64.731L260.382-64.731L260.617-62.883L260.335-62.883Q260.253-63.578 260.078-63.899Q259.902-64.219 259.554-64.327Q259.206-64.434 258.488-64.434L257.624-64.434Q257.406-64.434 257.314-64.391Q257.222-64.348 257.222-64.168L257.222-62.250L257.855-62.250Q258.281-62.250 258.488-62.313Q258.695-62.375 258.783-62.571Q258.870-62.766 258.870-63.188L259.152-63.188L259.152-61.020L258.870-61.020Q258.870-61.442 258.783-61.635Q258.695-61.828 258.488-61.891Q258.281-61.953 257.855-61.953L257.222-61.953L257.222-59.825Q257.222-59.653 257.314-59.608Q257.406-59.563 257.624-59.563L258.550-59.563Q259.132-59.563 259.486-59.645Q259.839-59.727 260.044-59.924Q260.249-60.121 260.363-60.459Q260.476-60.797 260.570-61.379L260.847-61.379L260.495-59.266M261.730-57.266L261.648-57.266Q261.613-57.266 261.587-57.295Q261.562-57.325 261.562-57.364Q261.562-57.414 261.593-57.434Q261.980-57.770 262.263-58.219Q262.546-58.668 262.712-59.168Q262.878-59.668 262.953-60.186Q263.027-60.703 263.027-61.266Q263.027-61.836 262.953-62.352Q262.878-62.868 262.712-63.364Q262.546-63.860 262.267-64.307Q261.988-64.754 261.593-65.098Q261.562-65.118 261.562-65.168Q261.562-65.207 261.587-65.237Q261.613-65.266 261.648-65.266L261.730-65.266Q261.742-65.266 261.751-65.264Q261.761-65.262 261.769-65.258Q262.382-64.801 262.785-64.166Q263.187-63.532 263.382-62.786Q263.578-62.039 263.578-61.266Q263.578-60.493 263.382-59.746Q263.187-59 262.785-58.366Q262.382-57.731 261.769-57.274Q261.757-57.274 261.749-57.272Q261.742-57.270 261.730-57.266\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-23.131h404.029\"\u002F>\u003Cg transform=\"translate(-34.163 50.761)\">\u003Cpath d=\"M13.356-59.266L8.953-59.266L8.953-59.546Q9.675-59.546 9.675-59.755L9.675-63.556Q9.675-63.767 8.953-63.767L8.953-64.048L13.243-64.048L13.451-62.411L13.188-62.411Q13.130-62.882 13.028-63.147Q12.925-63.412 12.741-63.545Q12.556-63.679 12.284-63.723Q12.012-63.767 11.513-63.767L10.731-63.767Q10.543-63.767 10.454-63.733Q10.365-63.699 10.365-63.556L10.365-61.891L10.939-61.891Q11.329-61.891 11.512-61.942Q11.695-61.994 11.777-62.166Q11.859-62.339 11.859-62.711L12.122-62.711L12.122-60.790L11.859-60.790Q11.859-61.163 11.777-61.336Q11.695-61.508 11.512-61.559Q11.329-61.611 10.939-61.611L10.365-61.611L10.365-59.755Q10.365-59.615 10.454-59.580Q10.543-59.546 10.731-59.546L11.578-59.546Q12.108-59.546 12.418-59.615Q12.727-59.683 12.915-59.850Q13.103-60.018 13.210-60.320Q13.318-60.623 13.404-61.136L13.670-61.136L13.356-59.266M15.441-59.266L14.118-59.266L14.118-59.546Q14.678-59.546 15.058-59.946L15.772-60.743L14.860-61.792Q14.723-61.939 14.574-61.971Q14.426-62.004 14.159-62.004L14.159-62.284L15.659-62.284L15.659-62.004Q15.468-62.004 15.468-61.870Q15.468-61.840 15.499-61.792L16.094-61.108L16.534-61.604Q16.647-61.734 16.647-61.850Q16.647-61.912 16.610-61.958Q16.572-62.004 16.514-62.004L16.514-62.284L17.830-62.284L17.830-62.004Q17.269-62.004 16.890-61.604L16.268-60.903L17.262-59.755Q17.362-59.656 17.462-59.611Q17.563-59.567 17.674-59.557Q17.785-59.546 17.963-59.546L17.963-59.266L16.470-59.266L16.470-59.546Q16.534-59.546 16.594-59.580Q16.654-59.615 16.654-59.680Q16.654-59.727 16.623-59.755L15.947-60.541L15.413-59.946Q15.301-59.816 15.301-59.700Q15.301-59.635 15.342-59.591Q15.383-59.546 15.441-59.546L15.441-59.266M18.418-60.801Q18.418-61.122 18.543-61.411Q18.667-61.700 18.893-61.923Q19.118-62.147 19.414-62.267Q19.710-62.387 20.028-62.387Q20.356-62.387 20.617-62.287Q20.879-62.188 21.055-62.006Q21.231-61.823 21.325-61.565Q21.419-61.307 21.419-60.975Q21.419-60.883 21.337-60.862L19.081-60.862L19.081-60.801Q19.081-60.213 19.365-59.830Q19.648-59.447 20.216-59.447Q20.537-59.447 20.805-59.640Q21.074-59.833 21.162-60.148Q21.169-60.189 21.244-60.203L21.337-60.203Q21.419-60.179 21.419-60.107Q21.419-60.100 21.412-60.073Q21.299-59.676 20.928-59.437Q20.557-59.198 20.134-59.198Q19.696-59.198 19.296-59.406Q18.896-59.615 18.657-59.982Q18.418-60.349 18.418-60.801M19.088-61.071L20.903-61.071Q20.903-61.348 20.805-61.600Q20.708-61.853 20.510-62.009Q20.311-62.164 20.028-62.164Q19.751-62.164 19.537-62.006Q19.324-61.847 19.206-61.592Q19.088-61.337 19.088-61.071M22.007-60.777Q22.007-61.105 22.142-61.406Q22.277-61.706 22.512-61.927Q22.748-62.147 23.053-62.267Q23.357-62.387 23.681-62.387Q24.187-62.387 24.536-62.284Q24.885-62.182 24.885-61.806Q24.885-61.659 24.787-61.558Q24.690-61.457 24.543-61.457Q24.389-61.457 24.290-61.556Q24.191-61.655 24.191-61.806Q24.191-61.994 24.331-62.086Q24.129-62.137 23.688-62.137Q23.333-62.137 23.104-61.941Q22.875-61.744 22.774-61.435Q22.673-61.125 22.673-60.777Q22.673-60.428 22.800-60.122Q22.926-59.816 23.181-59.632Q23.435-59.447 23.791-59.447Q24.013-59.447 24.198-59.531Q24.382-59.615 24.517-59.770Q24.652-59.926 24.710-60.134Q24.724-60.189 24.779-60.189L24.891-60.189Q24.922-60.189 24.944-60.165Q24.967-60.141 24.967-60.107L24.967-60.086Q24.881-59.799 24.693-59.601Q24.505-59.403 24.240-59.300Q23.975-59.198 23.681-59.198Q23.251-59.198 22.863-59.404Q22.475-59.611 22.241-59.974Q22.007-60.336 22.007-60.777M26.129-60.100L26.129-61.604Q26.129-61.874 26.021-61.935Q25.913-61.997 25.602-61.997L25.602-62.277L26.710-62.352L26.710-60.120L26.710-60.100Q26.710-59.820 26.761-59.676Q26.812-59.533 26.954-59.476Q27.096-59.420 27.383-59.420Q27.636-59.420 27.841-59.560Q28.046-59.700 28.162-59.926Q28.279-60.151 28.279-60.401L28.279-61.604Q28.279-61.874 28.171-61.935Q28.063-61.997 27.752-61.997L27.752-62.277L28.860-62.352L28.860-59.939Q28.860-59.748 28.913-59.666Q28.966-59.584 29.066-59.565Q29.167-59.546 29.383-59.546L29.383-59.266L28.306-59.198L28.306-59.762Q28.197-59.580 28.051-59.457Q27.906-59.334 27.720-59.266Q27.533-59.198 27.332-59.198Q26.129-59.198 26.129-60.100M30.497-60.107L30.497-62.004L29.858-62.004L29.858-62.226Q30.176-62.226 30.393-62.436Q30.610-62.646 30.710-62.956Q30.811-63.265 30.811-63.573L31.078-63.573L31.078-62.284L32.155-62.284L32.155-62.004L31.078-62.004L31.078-60.120Q31.078-59.844 31.182-59.645Q31.286-59.447 31.546-59.447Q31.703-59.447 31.809-59.551Q31.915-59.656 31.965-59.809Q32.014-59.963 32.014-60.120L32.014-60.534L32.281-60.534L32.281-60.107Q32.281-59.881 32.182-59.671Q32.083-59.461 31.898-59.329Q31.714-59.198 31.485-59.198Q31.047-59.198 30.772-59.435Q30.497-59.673 30.497-60.107M33.050-60.801Q33.050-61.122 33.175-61.411Q33.300-61.700 33.525-61.923Q33.751-62.147 34.046-62.267Q34.342-62.387 34.660-62.387Q34.988-62.387 35.250-62.287Q35.511-62.188 35.687-62.006Q35.863-61.823 35.957-61.565Q36.051-61.307 36.051-60.975Q36.051-60.883 35.969-60.862L33.713-60.862L33.713-60.801Q33.713-60.213 33.997-59.830Q34.281-59.447 34.848-59.447Q35.169-59.447 35.438-59.640Q35.706-59.833 35.795-60.148Q35.802-60.189 35.877-60.203L35.969-60.203Q36.051-60.179 36.051-60.107Q36.051-60.100 36.044-60.073Q35.931-59.676 35.561-59.437Q35.190-59.198 34.766-59.198Q34.328-59.198 33.928-59.406Q33.529-59.615 33.289-59.982Q33.050-60.349 33.050-60.801M33.720-61.071L35.535-61.071Q35.535-61.348 35.438-61.600Q35.340-61.853 35.142-62.009Q34.944-62.164 34.660-62.164Q34.383-62.164 34.169-62.006Q33.956-61.847 33.838-61.592Q33.720-61.337 33.720-61.071\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M8.910-60.098Q8.910-60.582 9.312-60.877Q9.715-61.172 10.265-61.291Q10.816-61.411 11.308-61.411L11.308-61.700Q11.308-61.926 11.193-62.133Q11.078-62.340 10.881-62.459Q10.683-62.578 10.453-62.578Q10.027-62.578 9.742-62.473Q9.812-62.446 9.859-62.391Q9.906-62.336 9.931-62.266Q9.957-62.196 9.957-62.121Q9.957-62.016 9.906-61.924Q9.855-61.832 9.763-61.782Q9.672-61.731 9.566-61.731Q9.461-61.731 9.369-61.782Q9.277-61.832 9.226-61.924Q9.176-62.016 9.176-62.121Q9.176-62.539 9.564-62.686Q9.953-62.832 10.453-62.832Q10.785-62.832 11.138-62.702Q11.492-62.571 11.720-62.317Q11.949-62.063 11.949-61.715L11.949-59.914Q11.949-59.782 12.021-59.672Q12.094-59.563 12.222-59.563Q12.347-59.563 12.416-59.668Q12.484-59.774 12.484-59.914L12.484-60.426L12.765-60.426L12.765-59.914Q12.765-59.711 12.648-59.553Q12.531-59.395 12.349-59.311Q12.168-59.227 11.965-59.227Q11.734-59.227 11.582-59.399Q11.429-59.571 11.398-59.801Q11.238-59.520 10.929-59.354Q10.621-59.188 10.269-59.188Q9.758-59.188 9.334-59.411Q8.910-59.633 8.910-60.098M9.597-60.098Q9.597-59.813 9.824-59.627Q10.051-59.442 10.344-59.442Q10.590-59.442 10.814-59.559Q11.039-59.676 11.174-59.879Q11.308-60.082 11.308-60.336L11.308-61.168Q11.043-61.168 10.758-61.114Q10.472-61.059 10.201-60.930Q9.929-60.801 9.763-60.594Q9.597-60.387 9.597-60.098M14.972-59.266L13.140-59.266L13.140-59.563Q13.414-59.563 13.582-59.610Q13.750-59.657 13.750-59.825L13.750-63.985Q13.750-64.200 13.687-64.295Q13.625-64.391 13.506-64.412Q13.386-64.434 13.140-64.434L13.140-64.731L14.363-64.817L14.363-59.825Q14.363-59.657 14.531-59.610Q14.699-59.563 14.972-59.563L14.972-59.266M16.101-60.219L16.101-61.961Q16.101-62.176 16.039-62.272Q15.976-62.368 15.857-62.389Q15.738-62.411 15.492-62.411L15.492-62.707L16.738-62.793L16.738-60.243L16.738-60.219Q16.738-59.907 16.793-59.745Q16.847-59.582 16.998-59.512Q17.148-59.442 17.469-59.442Q17.898-59.442 18.172-59.780Q18.445-60.118 18.445-60.563L18.445-61.961Q18.445-62.176 18.383-62.272Q18.320-62.368 18.201-62.389Q18.082-62.411 17.836-62.411L17.836-62.707L19.082-62.793L19.082-60.008Q19.082-59.797 19.144-59.702Q19.207-59.606 19.326-59.584Q19.445-59.563 19.691-59.563L19.691-59.266L18.469-59.188L18.469-59.809Q18.301-59.520 18.019-59.354Q17.738-59.188 17.418-59.188Q16.101-59.188 16.101-60.219M21.937-59.266L20.187-59.266L20.187-59.563Q20.886-59.563 21.074-60.043L22.875-64.868Q22.929-64.977 23.043-64.977L23.113-64.977Q23.226-64.977 23.281-64.868L25.172-59.825Q25.250-59.657 25.453-59.610Q25.656-59.563 25.969-59.563L25.969-59.266L23.746-59.266L23.746-59.563Q24.386-59.563 24.386-59.778Q24.386-59.797 24.385-59.807Q24.383-59.817 24.379-59.825L23.914-61.059L21.769-61.059L21.386-60.043Q21.383-60.028 21.377-59.998Q21.371-59.969 21.371-59.946Q21.371-59.805 21.461-59.721Q21.551-59.637 21.683-59.600Q21.816-59.563 21.937-59.563L21.937-59.266M22.844-63.922L21.875-61.356L23.801-61.356L22.844-63.922M32.219-60.243L26.906-60.243Q26.828-60.250 26.779-60.299Q26.730-60.348 26.730-60.426Q26.730-60.496 26.777-60.547Q26.824-60.598 26.906-60.610L32.219-60.610Q32.293-60.598 32.340-60.547Q32.386-60.496 32.386-60.426Q32.386-60.348 32.338-60.299Q32.289-60.250 32.219-60.243M32.219-61.930L26.906-61.930Q26.828-61.938 26.779-61.987Q26.730-62.036 26.730-62.114Q26.730-62.184 26.777-62.235Q26.824-62.286 26.906-62.297L32.219-62.297Q32.293-62.286 32.340-62.235Q32.386-62.184 32.386-62.114Q32.386-62.036 32.338-61.987Q32.289-61.938 32.219-61.930M34.988-59.098Q34.285-59.098 33.885-59.498Q33.484-59.899 33.340-60.508Q33.195-61.118 33.195-61.817Q33.195-62.340 33.265-62.803Q33.336-63.266 33.529-63.678Q33.722-64.090 34.080-64.338Q34.437-64.586 34.988-64.586Q35.539-64.586 35.896-64.338Q36.254-64.090 36.445-63.680Q36.636-63.270 36.707-62.801Q36.777-62.332 36.777-61.817Q36.777-61.118 36.635-60.510Q36.492-59.903 36.092-59.500Q35.691-59.098 34.988-59.098M34.988-59.356Q35.461-59.356 35.693-59.791Q35.926-60.227 35.980-60.766Q36.035-61.305 36.035-61.946Q36.035-62.942 35.851-63.635Q35.668-64.328 34.988-64.328Q34.621-64.328 34.400-64.090Q34.179-63.852 34.084-63.495Q33.988-63.137 33.963-62.766Q33.937-62.395 33.937-61.946Q33.937-61.305 33.992-60.766Q34.047-60.227 34.279-59.791Q34.511-59.356 34.988-59.356M38.738-59.266L37.242-59.266L37.242-59.563Q37.875-59.563 38.297-60.043L39.066-60.953L38.074-62.153Q37.918-62.332 37.756-62.375Q37.594-62.418 37.289-62.418L37.289-62.715L38.976-62.715L38.976-62.418Q38.883-62.418 38.806-62.375Q38.730-62.332 38.730-62.243Q38.730-62.200 38.761-62.153L39.418-61.364L39.898-61.938Q40.015-62.075 40.015-62.211Q40.015-62.301 39.965-62.360Q39.914-62.418 39.832-62.418L39.832-62.715L41.320-62.715L41.320-62.418Q40.683-62.418 40.273-61.938L39.594-61.137L40.679-59.825Q40.840-59.649 41-59.606Q41.160-59.563 41.465-59.563L41.465-59.266L39.777-59.266L39.777-59.563Q39.867-59.563 39.945-59.606Q40.023-59.649 40.023-59.739Q40.023-59.762 39.992-59.825L39.250-60.731L38.664-60.043Q38.547-59.907 38.547-59.770Q38.547-59.684 38.597-59.623Q38.648-59.563 38.738-59.563L38.738-59.266M42.386-59.899Q42.578-59.625 42.933-59.498Q43.289-59.371 43.672-59.371Q44.008-59.371 44.217-59.557Q44.426-59.743 44.521-60.036Q44.617-60.328 44.617-60.641Q44.617-60.965 44.519-61.260Q44.422-61.555 44.209-61.739Q43.996-61.922 43.664-61.922L43.097-61.922Q43.066-61.922 43.037-61.952Q43.008-61.981 43.008-62.008L43.008-62.090Q43.008-62.125 43.037-62.151Q43.066-62.176 43.097-62.176L43.578-62.211Q43.863-62.211 44.060-62.416Q44.258-62.621 44.353-62.916Q44.449-63.211 44.449-63.489Q44.449-63.868 44.250-64.106Q44.051-64.344 43.672-64.344Q43.351-64.344 43.062-64.237Q42.773-64.129 42.609-63.907Q42.789-63.907 42.912-63.780Q43.035-63.653 43.035-63.481Q43.035-63.309 42.910-63.184Q42.785-63.059 42.609-63.059Q42.437-63.059 42.312-63.184Q42.187-63.309 42.187-63.481Q42.187-63.848 42.412-64.096Q42.636-64.344 42.976-64.465Q43.316-64.586 43.672-64.586Q44.019-64.586 44.383-64.465Q44.746-64.344 44.994-64.094Q45.242-63.844 45.242-63.489Q45.242-63.004 44.924-62.621Q44.605-62.239 44.129-62.067Q44.679-61.957 45.080-61.571Q45.480-61.184 45.480-60.649Q45.480-60.192 45.217-59.836Q44.953-59.481 44.531-59.289Q44.109-59.098 43.672-59.098Q43.261-59.098 42.869-59.233Q42.476-59.368 42.211-59.653Q41.945-59.938 41.945-60.356Q41.945-60.551 42.078-60.680Q42.211-60.809 42.402-60.809Q42.527-60.809 42.631-60.750Q42.734-60.692 42.797-60.586Q42.859-60.481 42.859-60.356Q42.859-60.161 42.724-60.030Q42.590-59.899 42.386-59.899M46.664-57.860Q46.664-57.883 46.695-57.930Q46.988-58.192 47.154-58.559Q47.320-58.926 47.320-59.313L47.320-59.371Q47.191-59.266 47.023-59.266Q46.832-59.266 46.695-59.399Q46.558-59.532 46.558-59.731Q46.558-59.922 46.695-60.055Q46.832-60.188 47.023-60.188Q47.324-60.188 47.449-59.918Q47.574-59.649 47.574-59.313Q47.574-58.864 47.392-58.450Q47.211-58.036 46.871-57.739Q46.847-57.715 46.808-57.715Q46.761-57.715 46.713-57.760Q46.664-57.805 46.664-57.860\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M51.402-60.098Q51.402-60.582 51.804-60.877Q52.207-61.172 52.757-61.291Q53.308-61.411 53.800-61.411L53.800-61.700Q53.800-61.926 53.685-62.133Q53.570-62.340 53.373-62.459Q53.175-62.578 52.945-62.578Q52.519-62.578 52.234-62.473Q52.304-62.446 52.351-62.391Q52.398-62.336 52.423-62.266Q52.449-62.196 52.449-62.121Q52.449-62.016 52.398-61.924Q52.347-61.832 52.255-61.782Q52.164-61.731 52.058-61.731Q51.953-61.731 51.861-61.782Q51.769-61.832 51.718-61.924Q51.668-62.016 51.668-62.121Q51.668-62.539 52.056-62.686Q52.445-62.832 52.945-62.832Q53.277-62.832 53.630-62.702Q53.984-62.571 54.212-62.317Q54.441-62.063 54.441-61.715L54.441-59.914Q54.441-59.782 54.513-59.672Q54.586-59.563 54.714-59.563Q54.839-59.563 54.908-59.668Q54.976-59.774 54.976-59.914L54.976-60.426L55.257-60.426L55.257-59.914Q55.257-59.711 55.140-59.553Q55.023-59.395 54.841-59.311Q54.660-59.227 54.457-59.227Q54.226-59.227 54.074-59.399Q53.921-59.571 53.890-59.801Q53.730-59.520 53.421-59.354Q53.113-59.188 52.761-59.188Q52.250-59.188 51.826-59.411Q51.402-59.633 51.402-60.098M52.089-60.098Q52.089-59.813 52.316-59.627Q52.543-59.442 52.836-59.442Q53.082-59.442 53.306-59.559Q53.531-59.676 53.666-59.879Q53.800-60.082 53.800-60.336L53.800-61.168Q53.535-61.168 53.250-61.114Q52.964-61.059 52.693-60.930Q52.421-60.801 52.255-60.594Q52.089-60.387 52.089-60.098M57.464-59.266L55.632-59.266L55.632-59.563Q55.906-59.563 56.074-59.610Q56.242-59.657 56.242-59.825L56.242-63.985Q56.242-64.200 56.179-64.295Q56.117-64.391 55.998-64.412Q55.879-64.434 55.632-64.434L55.632-64.731L56.855-64.817L56.855-59.825Q56.855-59.657 57.023-59.610Q57.191-59.563 57.464-59.563L57.464-59.266M58.593-60.219L58.593-61.961Q58.593-62.176 58.531-62.272Q58.468-62.368 58.349-62.389Q58.230-62.411 57.984-62.411L57.984-62.707L59.230-62.793L59.230-60.243L59.230-60.219Q59.230-59.907 59.285-59.745Q59.339-59.582 59.490-59.512Q59.640-59.442 59.961-59.442Q60.390-59.442 60.664-59.780Q60.937-60.118 60.937-60.563L60.937-61.961Q60.937-62.176 60.875-62.272Q60.812-62.368 60.693-62.389Q60.574-62.411 60.328-62.411L60.328-62.707L61.574-62.793L61.574-60.008Q61.574-59.797 61.636-59.702Q61.699-59.606 61.818-59.584Q61.937-59.563 62.183-59.563L62.183-59.266L60.961-59.188L60.961-59.809Q60.793-59.520 60.511-59.354Q60.230-59.188 59.910-59.188Q58.593-59.188 58.593-60.219M66.039-59.266L62.757-59.266L62.757-59.563Q63.082-59.563 63.324-59.610Q63.566-59.657 63.566-59.825L63.566-64.168Q63.566-64.340 63.324-64.387Q63.082-64.434 62.757-64.434L62.757-64.731L65.804-64.731Q66.230-64.731 66.664-64.577Q67.097-64.422 67.392-64.114Q67.687-63.805 67.687-63.371Q67.687-63.118 67.562-62.901Q67.437-62.684 67.236-62.528Q67.035-62.371 66.802-62.272Q66.570-62.172 66.312-62.121Q66.687-62.086 67.066-61.909Q67.445-61.731 67.685-61.432Q67.925-61.133 67.925-60.739Q67.925-60.286 67.642-59.952Q67.359-59.618 66.923-59.442Q66.488-59.266 66.039-59.266M64.277-61.977L64.277-59.825Q64.277-59.653 64.369-59.608Q64.461-59.563 64.679-59.563L65.804-59.563Q66.043-59.563 66.277-59.651Q66.511-59.739 66.697-59.899Q66.882-60.059 66.984-60.272Q67.086-60.485 67.086-60.739Q67.086-61.059 66.933-61.344Q66.781-61.629 66.511-61.803Q66.242-61.977 65.925-61.977L64.277-61.977M64.277-64.168L64.277-62.235L65.566-62.235Q65.808-62.235 66.046-62.317Q66.285-62.399 66.468-62.545Q66.652-62.692 66.765-62.909Q66.879-63.125 66.879-63.371Q66.879-63.582 66.793-63.784Q66.707-63.985 66.560-64.127Q66.414-64.270 66.218-64.352Q66.023-64.434 65.804-64.434L64.679-64.434Q64.461-64.434 64.369-64.391Q64.277-64.348 64.277-64.168M74.367-60.243L69.054-60.243Q68.976-60.250 68.927-60.299Q68.879-60.348 68.879-60.426Q68.879-60.496 68.925-60.547Q68.972-60.598 69.054-60.610L74.367-60.610Q74.441-60.598 74.488-60.547Q74.535-60.496 74.535-60.426Q74.535-60.348 74.486-60.299Q74.437-60.250 74.367-60.243M74.367-61.930L69.054-61.930Q68.976-61.938 68.927-61.987Q68.879-62.036 68.879-62.114Q68.879-62.184 68.925-62.235Q68.972-62.286 69.054-62.297L74.367-62.297Q74.441-62.286 74.488-62.235Q74.535-62.184 74.535-62.114Q74.535-62.036 74.486-61.987Q74.437-61.938 74.367-61.930M77.136-59.098Q76.433-59.098 76.033-59.498Q75.632-59.899 75.488-60.508Q75.343-61.118 75.343-61.817Q75.343-62.340 75.414-62.803Q75.484-63.266 75.677-63.678Q75.871-64.090 76.228-64.338Q76.586-64.586 77.136-64.586Q77.687-64.586 78.045-64.338Q78.402-64.090 78.593-63.680Q78.785-63.270 78.855-62.801Q78.925-62.332 78.925-61.817Q78.925-61.118 78.783-60.510Q78.640-59.903 78.240-59.500Q77.839-59.098 77.136-59.098M77.136-59.356Q77.609-59.356 77.841-59.791Q78.074-60.227 78.129-60.766Q78.183-61.305 78.183-61.946Q78.183-62.942 78-63.635Q77.816-64.328 77.136-64.328Q76.769-64.328 76.548-64.090Q76.328-63.852 76.232-63.495Q76.136-63.137 76.111-62.766Q76.086-62.395 76.086-61.946Q76.086-61.305 76.140-60.766Q76.195-60.227 76.427-59.791Q76.660-59.356 77.136-59.356M80.886-59.266L79.390-59.266L79.390-59.563Q80.023-59.563 80.445-60.043L81.214-60.953L80.222-62.153Q80.066-62.332 79.904-62.375Q79.742-62.418 79.437-62.418L79.437-62.715L81.125-62.715L81.125-62.418Q81.031-62.418 80.955-62.375Q80.879-62.332 80.879-62.243Q80.879-62.200 80.910-62.153L81.566-61.364L82.046-61.938Q82.164-62.075 82.164-62.211Q82.164-62.301 82.113-62.360Q82.062-62.418 81.980-62.418L81.980-62.715L83.468-62.715L83.468-62.418Q82.832-62.418 82.421-61.938L81.742-61.137L82.828-59.825Q82.988-59.649 83.148-59.606Q83.308-59.563 83.613-59.563L83.613-59.266L81.925-59.266L81.925-59.563Q82.015-59.563 82.093-59.606Q82.171-59.649 82.171-59.739Q82.171-59.762 82.140-59.825L81.398-60.731L80.812-60.043Q80.695-59.907 80.695-59.770Q80.695-59.684 80.746-59.623Q80.796-59.563 80.886-59.563L80.886-59.266M85.863-59.098Q85.160-59.098 84.759-59.498Q84.359-59.899 84.214-60.508Q84.070-61.118 84.070-61.817Q84.070-62.340 84.140-62.803Q84.211-63.266 84.404-63.678Q84.597-64.090 84.955-64.338Q85.312-64.586 85.863-64.586Q86.414-64.586 86.771-64.338Q87.129-64.090 87.320-63.680Q87.511-63.270 87.582-62.801Q87.652-62.332 87.652-61.817Q87.652-61.118 87.509-60.510Q87.367-59.903 86.966-59.500Q86.566-59.098 85.863-59.098M85.863-59.356Q86.336-59.356 86.568-59.791Q86.800-60.227 86.855-60.766Q86.910-61.305 86.910-61.946Q86.910-62.942 86.726-63.635Q86.543-64.328 85.863-64.328Q85.496-64.328 85.275-64.090Q85.054-63.852 84.959-63.495Q84.863-63.137 84.837-62.766Q84.812-62.395 84.812-61.946Q84.812-61.305 84.867-60.766Q84.921-60.227 85.154-59.791Q85.386-59.356 85.863-59.356M88.812-57.860Q88.812-57.883 88.843-57.930Q89.136-58.192 89.302-58.559Q89.468-58.926 89.468-59.313L89.468-59.371Q89.339-59.266 89.171-59.266Q88.980-59.266 88.843-59.399Q88.707-59.532 88.707-59.731Q88.707-59.922 88.843-60.055Q88.980-60.188 89.171-60.188Q89.472-60.188 89.597-59.918Q89.722-59.649 89.722-59.313Q89.722-58.864 89.541-58.450Q89.359-58.036 89.019-57.739Q88.996-57.715 88.957-57.715Q88.910-57.715 88.861-57.760Q88.812-57.805 88.812-57.860\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M93.544-60.098Q93.544-60.582 93.946-60.877Q94.349-61.172 94.899-61.291Q95.450-61.411 95.942-61.411L95.942-61.700Q95.942-61.926 95.827-62.133Q95.712-62.340 95.515-62.459Q95.317-62.578 95.087-62.578Q94.661-62.578 94.376-62.473Q94.446-62.446 94.493-62.391Q94.540-62.336 94.565-62.266Q94.591-62.196 94.591-62.121Q94.591-62.016 94.540-61.924Q94.489-61.832 94.397-61.782Q94.306-61.731 94.200-61.731Q94.095-61.731 94.003-61.782Q93.911-61.832 93.860-61.924Q93.810-62.016 93.810-62.121Q93.810-62.539 94.198-62.686Q94.587-62.832 95.087-62.832Q95.419-62.832 95.772-62.702Q96.126-62.571 96.354-62.317Q96.583-62.063 96.583-61.715L96.583-59.914Q96.583-59.782 96.655-59.672Q96.728-59.563 96.856-59.563Q96.981-59.563 97.050-59.668Q97.118-59.774 97.118-59.914L97.118-60.426L97.399-60.426L97.399-59.914Q97.399-59.711 97.282-59.553Q97.165-59.395 96.983-59.311Q96.802-59.227 96.599-59.227Q96.368-59.227 96.216-59.399Q96.063-59.571 96.032-59.801Q95.872-59.520 95.563-59.354Q95.255-59.188 94.903-59.188Q94.392-59.188 93.968-59.411Q93.544-59.633 93.544-60.098M94.231-60.098Q94.231-59.813 94.458-59.627Q94.685-59.442 94.978-59.442Q95.224-59.442 95.448-59.559Q95.673-59.676 95.808-59.879Q95.942-60.082 95.942-60.336L95.942-61.168Q95.677-61.168 95.392-61.114Q95.106-61.059 94.835-60.930Q94.563-60.801 94.397-60.594Q94.231-60.387 94.231-60.098M99.606-59.266L97.774-59.266L97.774-59.563Q98.048-59.563 98.216-59.610Q98.384-59.657 98.384-59.825L98.384-63.985Q98.384-64.200 98.321-64.295Q98.259-64.391 98.140-64.412Q98.020-64.434 97.774-64.434L97.774-64.731L98.997-64.817L98.997-59.825Q98.997-59.657 99.165-59.610Q99.333-59.563 99.606-59.563L99.606-59.266M100.735-60.219L100.735-61.961Q100.735-62.176 100.673-62.272Q100.610-62.368 100.491-62.389Q100.372-62.411 100.126-62.411L100.126-62.707L101.372-62.793L101.372-60.243L101.372-60.219Q101.372-59.907 101.427-59.745Q101.481-59.582 101.632-59.512Q101.782-59.442 102.103-59.442Q102.532-59.442 102.806-59.780Q103.079-60.118 103.079-60.563L103.079-61.961Q103.079-62.176 103.017-62.272Q102.954-62.368 102.835-62.389Q102.716-62.411 102.470-62.411L102.470-62.707L103.716-62.793L103.716-60.008Q103.716-59.797 103.778-59.702Q103.841-59.606 103.960-59.584Q104.079-59.563 104.325-59.563L104.325-59.266L103.103-59.188L103.103-59.809Q102.935-59.520 102.653-59.354Q102.372-59.188 102.052-59.188Q100.735-59.188 100.735-60.219M106.837-59.266L104.853-59.266L104.853-59.563Q105.126-59.563 105.294-59.610Q105.462-59.657 105.462-59.825L105.462-62.418L104.821-62.418L104.821-62.715L105.462-62.715L105.462-63.649Q105.462-63.914 105.579-64.151Q105.696-64.387 105.890-64.551Q106.083-64.715 106.331-64.807Q106.579-64.899 106.845-64.899Q107.130-64.899 107.354-64.741Q107.579-64.582 107.579-64.305Q107.579-64.149 107.474-64.039Q107.368-63.930 107.204-63.930Q107.048-63.930 106.938-64.039Q106.829-64.149 106.829-64.305Q106.829-64.512 106.989-64.618Q106.892-64.641 106.798-64.641Q106.567-64.641 106.395-64.485Q106.224-64.328 106.138-64.092Q106.052-63.856 106.052-63.633L106.052-62.715L107.020-62.715L107.020-62.418L106.075-62.418L106.075-59.825Q106.075-59.657 106.302-59.610Q106.528-59.563 106.837-59.563L106.837-59.266M108.048-60.219L108.048-61.961Q108.048-62.176 107.985-62.272Q107.923-62.368 107.804-62.389Q107.685-62.411 107.438-62.411L107.438-62.707L108.685-62.793L108.685-60.243L108.685-60.219Q108.685-59.907 108.739-59.745Q108.794-59.582 108.944-59.512Q109.095-59.442 109.415-59.442Q109.845-59.442 110.118-59.780Q110.392-60.118 110.392-60.563L110.392-61.961Q110.392-62.176 110.329-62.272Q110.267-62.368 110.147-62.389Q110.028-62.411 109.782-62.411L109.782-62.707L111.028-62.793L111.028-60.008Q111.028-59.797 111.091-59.702Q111.153-59.606 111.272-59.584Q111.392-59.563 111.638-59.563L111.638-59.266L110.415-59.188L110.415-59.809Q110.247-59.520 109.966-59.354Q109.685-59.188 109.364-59.188Q108.048-59.188 108.048-60.219M114.013-59.266L112.157-59.266L112.157-59.563Q112.431-59.563 112.599-59.610Q112.767-59.657 112.767-59.825L112.767-61.961Q112.767-62.176 112.704-62.272Q112.642-62.368 112.522-62.389Q112.403-62.411 112.157-62.411L112.157-62.707L113.349-62.793L113.349-62.059Q113.462-62.274 113.655-62.442Q113.849-62.610 114.087-62.702Q114.325-62.793 114.579-62.793Q115.747-62.793 115.747-61.715L115.747-59.825Q115.747-59.657 115.917-59.610Q116.087-59.563 116.356-59.563L116.356-59.266L114.501-59.266L114.501-59.563Q114.774-59.563 114.942-59.610Q115.110-59.657 115.110-59.825L115.110-61.700Q115.110-62.082 114.989-62.311Q114.868-62.539 114.517-62.539Q114.204-62.539 113.950-62.377Q113.696-62.215 113.550-61.946Q113.403-61.676 113.403-61.379L113.403-59.825Q113.403-59.657 113.573-59.610Q113.743-59.563 114.013-59.563L114.013-59.266M122.524-60.243L117.212-60.243Q117.134-60.250 117.085-60.299Q117.036-60.348 117.036-60.426Q117.036-60.496 117.083-60.547Q117.130-60.598 117.212-60.610L122.524-60.610Q122.599-60.598 122.645-60.547Q122.692-60.496 122.692-60.426Q122.692-60.348 122.644-60.299Q122.595-60.250 122.524-60.243M122.524-61.930L117.212-61.930Q117.134-61.938 117.085-61.987Q117.036-62.036 117.036-62.114Q117.036-62.184 117.083-62.235Q117.130-62.286 117.212-62.297L122.524-62.297Q122.599-62.286 122.645-62.235Q122.692-62.184 122.692-62.114Q122.692-62.036 122.644-61.987Q122.595-61.938 122.524-61.930M125.212-59.266L123.462-59.266L123.462-59.563Q124.161-59.563 124.349-60.043L126.149-64.868Q126.204-64.977 126.317-64.977L126.388-64.977Q126.501-64.977 126.556-64.868L128.446-59.825Q128.524-59.657 128.728-59.610Q128.931-59.563 129.243-59.563L129.243-59.266L127.020-59.266L127.020-59.563Q127.661-59.563 127.661-59.778Q127.661-59.797 127.659-59.807Q127.657-59.817 127.653-59.825L127.188-61.059L125.044-61.059L124.661-60.043Q124.657-60.028 124.651-59.998Q124.645-59.969 124.645-59.946Q124.645-59.805 124.735-59.721Q124.825-59.637 124.958-59.600Q125.091-59.563 125.212-59.563L125.212-59.266M126.118-63.922L125.149-61.356L127.075-61.356L126.118-63.922M132.946-59.266L129.884-59.266L129.884-59.563Q130.208-59.563 130.450-59.610Q130.692-59.657 130.692-59.825L130.692-64.168Q130.692-64.340 130.450-64.387Q130.208-64.434 129.884-64.434L129.884-64.731L132.946-64.731Q133.497-64.731 133.976-64.504Q134.454-64.278 134.808-63.883Q135.161-63.489 135.351-62.989Q135.540-62.489 135.540-61.946Q135.540-61.239 135.196-60.621Q134.853-60.004 134.257-59.635Q133.661-59.266 132.946-59.266M131.435-64.168L131.435-59.825Q131.435-59.653 131.526-59.608Q131.618-59.563 131.837-59.563L132.731-59.563Q133.177-59.563 133.569-59.733Q133.962-59.903 134.233-60.227Q134.505-60.551 134.603-60.971Q134.700-61.391 134.700-61.946Q134.700-62.301 134.663-62.614Q134.626-62.926 134.520-63.221Q134.415-63.516 134.235-63.739Q134.052-63.973 133.813-64.123Q133.575-64.274 133.294-64.354Q133.013-64.434 132.731-64.434L131.837-64.434Q131.618-64.434 131.526-64.391Q131.435-64.348 131.435-64.168M139.435-59.266L136.372-59.266L136.372-59.563Q136.696-59.563 136.938-59.610Q137.181-59.657 137.181-59.825L137.181-64.168Q137.181-64.340 136.938-64.387Q136.696-64.434 136.372-64.434L136.372-64.731L139.435-64.731Q139.985-64.731 140.464-64.504Q140.942-64.278 141.296-63.883Q141.649-63.489 141.839-62.989Q142.028-62.489 142.028-61.946Q142.028-61.239 141.685-60.621Q141.341-60.004 140.745-59.635Q140.149-59.266 139.435-59.266M137.923-64.168L137.923-59.825Q137.923-59.653 138.015-59.608Q138.106-59.563 138.325-59.563L139.220-59.563Q139.665-59.563 140.058-59.733Q140.450-59.903 140.722-60.227Q140.993-60.551 141.091-60.971Q141.188-61.391 141.188-61.946Q141.188-62.301 141.151-62.614Q141.114-62.926 141.009-63.221Q140.903-63.516 140.724-63.739Q140.540-63.973 140.302-64.123Q140.063-64.274 139.782-64.354Q139.501-64.434 139.220-64.434L138.325-64.434Q138.106-64.434 138.015-64.391Q137.923-64.348 137.923-64.168M143.228-59.731Q143.228-59.914 143.364-60.051Q143.501-60.188 143.692-60.188Q143.884-60.188 144.017-60.055Q144.149-59.922 144.149-59.731Q144.149-59.532 144.017-59.399Q143.884-59.266 143.692-59.266Q143.501-59.266 143.364-59.403Q143.228-59.539 143.228-59.731M143.228-62.258Q143.228-62.442 143.364-62.578Q143.501-62.715 143.692-62.715Q143.884-62.715 144.017-62.582Q144.149-62.450 144.149-62.258Q144.149-62.059 144.017-61.926Q143.884-61.793 143.692-61.793Q143.501-61.793 143.364-61.930Q143.228-62.067 143.228-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M149.773-59.297L148.550-62.153Q148.468-62.328 148.324-62.373Q148.179-62.418 147.910-62.418L147.910-62.715L149.621-62.715L149.621-62.418Q149.199-62.418 149.199-62.235Q149.199-62.200 149.214-62.153L150.160-59.961L151-61.938Q151.039-62.016 151.039-62.106Q151.039-62.246 150.933-62.332Q150.828-62.418 150.687-62.418L150.687-62.715L152.039-62.715L152.039-62.418Q151.515-62.418 151.300-61.938L150.175-59.297Q150.113-59.188 150.007-59.188L149.941-59.188Q149.828-59.188 149.773-59.297\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M152.084-60.098Q152.084-60.582 152.486-60.877Q152.889-61.172 153.439-61.291Q153.990-61.411 154.482-61.411L154.482-61.700Q154.482-61.926 154.367-62.133Q154.252-62.340 154.055-62.459Q153.857-62.578 153.627-62.578Q153.201-62.578 152.916-62.473Q152.986-62.446 153.033-62.391Q153.080-62.336 153.105-62.266Q153.131-62.196 153.131-62.121Q153.131-62.016 153.080-61.924Q153.029-61.832 152.937-61.782Q152.846-61.731 152.740-61.731Q152.635-61.731 152.543-61.782Q152.451-61.832 152.400-61.924Q152.350-62.016 152.350-62.121Q152.350-62.539 152.738-62.686Q153.127-62.832 153.627-62.832Q153.959-62.832 154.312-62.702Q154.666-62.571 154.894-62.317Q155.123-62.063 155.123-61.715L155.123-59.914Q155.123-59.782 155.195-59.672Q155.268-59.563 155.396-59.563Q155.521-59.563 155.590-59.668Q155.658-59.774 155.658-59.914L155.658-60.426L155.939-60.426L155.939-59.914Q155.939-59.711 155.822-59.553Q155.705-59.395 155.523-59.311Q155.342-59.227 155.139-59.227Q154.908-59.227 154.756-59.399Q154.603-59.571 154.572-59.801Q154.412-59.520 154.103-59.354Q153.795-59.188 153.443-59.188Q152.932-59.188 152.508-59.411Q152.084-59.633 152.084-60.098M152.771-60.098Q152.771-59.813 152.998-59.627Q153.225-59.442 153.518-59.442Q153.764-59.442 153.988-59.559Q154.213-59.676 154.348-59.879Q154.482-60.082 154.482-60.336L154.482-61.168Q154.217-61.168 153.932-61.114Q153.646-61.059 153.375-60.930Q153.103-60.801 152.937-60.594Q152.771-60.387 152.771-60.098M158.146-59.266L156.314-59.266L156.314-59.563Q156.588-59.563 156.756-59.610Q156.924-59.657 156.924-59.825L156.924-63.985Q156.924-64.200 156.861-64.295Q156.799-64.391 156.680-64.412Q156.560-64.434 156.314-64.434L156.314-64.731L157.537-64.817L157.537-59.825Q157.537-59.657 157.705-59.610Q157.873-59.563 158.146-59.563L158.146-59.266M163.537-59.266L158.689-59.266L158.689-59.563Q159.010-59.563 159.254-59.610Q159.498-59.657 159.498-59.825L159.498-64.168Q159.498-64.340 159.254-64.387Q159.010-64.434 158.689-64.434L158.689-64.731L163.424-64.731L163.658-62.883L163.377-62.883Q163.295-63.578 163.119-63.899Q162.943-64.219 162.596-64.327Q162.248-64.434 161.529-64.434L160.666-64.434Q160.447-64.434 160.355-64.391Q160.264-64.348 160.264-64.168L160.264-62.250L160.896-62.250Q161.322-62.250 161.529-62.313Q161.736-62.375 161.824-62.571Q161.912-62.766 161.912-63.188L162.193-63.188L162.193-61.020L161.912-61.020Q161.912-61.442 161.824-61.635Q161.736-61.828 161.529-61.891Q161.322-61.953 160.896-61.953L160.264-61.953L160.264-59.825Q160.264-59.653 160.355-59.608Q160.447-59.563 160.666-59.563L161.592-59.563Q162.174-59.563 162.527-59.645Q162.881-59.727 163.086-59.924Q163.291-60.121 163.404-60.459Q163.518-60.797 163.611-61.379L163.889-61.379L163.537-59.266M170.092-60.243L164.779-60.243Q164.701-60.250 164.652-60.299Q164.603-60.348 164.603-60.426Q164.603-60.496 164.650-60.547Q164.697-60.598 164.779-60.610L170.092-60.610Q170.166-60.598 170.213-60.547Q170.260-60.496 170.260-60.426Q170.260-60.348 170.211-60.299Q170.162-60.250 170.092-60.243M170.092-61.930L164.779-61.930Q164.701-61.938 164.652-61.987Q164.603-62.036 164.603-62.114Q164.603-62.184 164.650-62.235Q164.697-62.286 164.779-62.297L170.092-62.297Q170.166-62.286 170.213-62.235Q170.260-62.184 170.260-62.114Q170.260-62.036 170.211-61.987Q170.162-61.938 170.092-61.930M172.861-59.098Q172.158-59.098 171.758-59.498Q171.357-59.899 171.213-60.508Q171.068-61.118 171.068-61.817Q171.068-62.340 171.139-62.803Q171.209-63.266 171.402-63.678Q171.596-64.090 171.953-64.338Q172.310-64.586 172.861-64.586Q173.412-64.586 173.769-64.338Q174.127-64.090 174.318-63.680Q174.510-63.270 174.580-62.801Q174.650-62.332 174.650-61.817Q174.650-61.118 174.508-60.510Q174.365-59.903 173.965-59.500Q173.564-59.098 172.861-59.098M172.861-59.356Q173.334-59.356 173.566-59.791Q173.799-60.227 173.853-60.766Q173.908-61.305 173.908-61.946Q173.908-62.942 173.725-63.635Q173.541-64.328 172.861-64.328Q172.494-64.328 172.273-64.090Q172.053-63.852 171.957-63.495Q171.861-63.137 171.836-62.766Q171.810-62.395 171.810-61.946Q171.810-61.305 171.865-60.766Q171.920-60.227 172.152-59.791Q172.385-59.356 172.861-59.356M176.611-59.266L175.115-59.266L175.115-59.563Q175.748-59.563 176.170-60.043L176.939-60.953L175.947-62.153Q175.791-62.332 175.629-62.375Q175.467-62.418 175.162-62.418L175.162-62.715L176.850-62.715L176.850-62.418Q176.756-62.418 176.680-62.375Q176.603-62.332 176.603-62.243Q176.603-62.200 176.635-62.153L177.291-61.364L177.771-61.938Q177.889-62.075 177.889-62.211Q177.889-62.301 177.838-62.360Q177.787-62.418 177.705-62.418L177.705-62.715L179.193-62.715L179.193-62.418Q178.557-62.418 178.146-61.938L177.467-61.137L178.553-59.825Q178.713-59.649 178.873-59.606Q179.033-59.563 179.338-59.563L179.338-59.266L177.650-59.266L177.650-59.563Q177.740-59.563 177.818-59.606Q177.896-59.649 177.896-59.739Q177.896-59.762 177.865-59.825L177.123-60.731L176.537-60.043Q176.420-59.907 176.420-59.770Q176.420-59.684 176.471-59.623Q176.521-59.563 176.611-59.563L176.611-59.266M180.260-59.899Q180.451-59.625 180.807-59.498Q181.162-59.371 181.545-59.371Q181.881-59.371 182.090-59.557Q182.299-59.743 182.394-60.036Q182.490-60.328 182.490-60.641Q182.490-60.965 182.393-61.260Q182.295-61.555 182.082-61.739Q181.869-61.922 181.537-61.922L180.971-61.922Q180.939-61.922 180.910-61.952Q180.881-61.981 180.881-62.008L180.881-62.090Q180.881-62.125 180.910-62.151Q180.939-62.176 180.971-62.176L181.451-62.211Q181.736-62.211 181.934-62.416Q182.131-62.621 182.227-62.916Q182.322-63.211 182.322-63.489Q182.322-63.868 182.123-64.106Q181.924-64.344 181.545-64.344Q181.225-64.344 180.935-64.237Q180.646-64.129 180.482-63.907Q180.662-63.907 180.785-63.780Q180.908-63.653 180.908-63.481Q180.908-63.309 180.783-63.184Q180.658-63.059 180.482-63.059Q180.310-63.059 180.185-63.184Q180.060-63.309 180.060-63.481Q180.060-63.848 180.285-64.096Q180.510-64.344 180.850-64.465Q181.189-64.586 181.545-64.586Q181.893-64.586 182.256-64.465Q182.619-64.344 182.867-64.094Q183.115-63.844 183.115-63.489Q183.115-63.004 182.797-62.621Q182.478-62.239 182.002-62.067Q182.553-61.957 182.953-61.571Q183.353-61.184 183.353-60.649Q183.353-60.192 183.090-59.836Q182.826-59.481 182.404-59.289Q181.982-59.098 181.545-59.098Q181.135-59.098 180.742-59.233Q180.350-59.368 180.084-59.653Q179.818-59.938 179.818-60.356Q179.818-60.551 179.951-60.680Q180.084-60.809 180.275-60.809Q180.400-60.809 180.504-60.750Q180.607-60.692 180.670-60.586Q180.732-60.481 180.732-60.356Q180.732-60.161 180.598-60.030Q180.463-59.899 180.260-59.899M184.537-57.860Q184.537-57.899 184.560-57.922Q184.834-58.207 184.977-58.571Q185.119-58.934 185.119-59.321Q185.021-59.266 184.896-59.266Q184.705-59.266 184.568-59.399Q184.432-59.532 184.432-59.731Q184.432-59.922 184.568-60.055Q184.705-60.188 184.896-60.188Q185.377-60.188 185.377-59.313Q185.377-59.024 185.305-58.743Q185.232-58.461 185.090-58.207Q184.947-57.953 184.752-57.746Q184.721-57.715 184.682-57.715Q184.635-57.715 184.586-57.760Q184.537-57.805 184.537-57.860M184.432-62.258Q184.432-62.442 184.568-62.578Q184.705-62.715 184.896-62.715Q185.088-62.715 185.221-62.582Q185.353-62.450 185.353-62.258Q185.353-62.059 185.221-61.926Q185.088-61.793 184.896-61.793Q184.705-61.793 184.568-61.930Q184.432-62.067 184.432-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M189.213-59.274L189.213-60.496Q189.213-60.524 189.244-60.555Q189.276-60.586 189.299-60.586L189.405-60.586Q189.475-60.586 189.491-60.524Q189.553-60.203 189.692-59.963Q189.830-59.723 190.063-59.582Q190.295-59.442 190.604-59.442Q190.842-59.442 191.051-59.502Q191.260-59.563 191.397-59.711Q191.534-59.860 191.534-60.106Q191.534-60.360 191.323-60.526Q191.112-60.692 190.842-60.746L190.221-60.860Q189.815-60.938 189.514-61.194Q189.213-61.450 189.213-61.825Q189.213-62.192 189.414-62.414Q189.616-62.637 189.940-62.735Q190.264-62.832 190.604-62.832Q191.069-62.832 191.366-62.625L191.588-62.809Q191.612-62.832 191.643-62.832L191.694-62.832Q191.725-62.832 191.752-62.805Q191.780-62.778 191.780-62.746L191.780-61.762Q191.780-61.731 191.754-61.702Q191.729-61.672 191.694-61.672L191.588-61.672Q191.553-61.672 191.526-61.700Q191.498-61.727 191.498-61.762Q191.498-62.161 191.246-62.381Q190.994-62.602 190.596-62.602Q190.241-62.602 189.957-62.479Q189.674-62.356 189.674-62.051Q189.674-61.832 189.875-61.700Q190.077-61.567 190.323-61.524L190.948-61.411Q191.377-61.321 191.686-61.024Q191.994-60.727 191.994-60.313Q191.994-59.743 191.596-59.465Q191.198-59.188 190.604-59.188Q190.053-59.188 189.702-59.524L189.405-59.211Q189.381-59.188 189.346-59.188L189.299-59.188Q189.276-59.188 189.244-59.219Q189.213-59.250 189.213-59.274M192.522-61.020Q192.522-61.500 192.754-61.916Q192.987-62.332 193.397-62.582Q193.807-62.832 194.284-62.832Q195.014-62.832 195.412-62.391Q195.811-61.950 195.811-61.219Q195.811-61.114 195.717-61.090L193.268-61.090L193.268-61.020Q193.268-60.610 193.389-60.254Q193.510-59.899 193.782-59.682Q194.053-59.465 194.483-59.465Q194.846-59.465 195.143-59.694Q195.440-59.922 195.541-60.274Q195.549-60.321 195.635-60.336L195.717-60.336Q195.811-60.309 195.811-60.227Q195.811-60.219 195.803-60.188Q195.741-59.961 195.602-59.778Q195.463-59.594 195.272-59.461Q195.080-59.328 194.862-59.258Q194.643-59.188 194.405-59.188Q194.034-59.188 193.696-59.325Q193.358-59.461 193.090-59.713Q192.823-59.965 192.672-60.305Q192.522-60.645 192.522-61.020M193.276-61.328L195.237-61.328Q195.237-61.633 195.135-61.924Q195.034-62.215 194.817-62.397Q194.600-62.578 194.284-62.578Q193.983-62.578 193.752-62.391Q193.522-62.203 193.399-61.912Q193.276-61.621 193.276-61.328M196.924-60.227L196.924-62.418L196.221-62.418L196.221-62.672Q196.577-62.672 196.819-62.905Q197.061-63.137 197.172-63.485Q197.284-63.832 197.284-64.188L197.565-64.188L197.565-62.715L198.741-62.715L198.741-62.418L197.565-62.418L197.565-60.243Q197.565-59.922 197.684-59.694Q197.803-59.465 198.084-59.465Q198.264-59.465 198.381-59.588Q198.498-59.711 198.551-59.891Q198.604-60.071 198.604-60.243L198.604-60.715L198.885-60.715L198.885-60.227Q198.885-59.973 198.780-59.733Q198.674-59.493 198.477-59.340Q198.280-59.188 198.022-59.188Q197.705-59.188 197.453-59.311Q197.202-59.434 197.063-59.668Q196.924-59.903 196.924-60.227\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M202.675-62Q202.675-62.594 202.907-63.125Q203.139-63.657 203.556-64.057Q203.972-64.457 204.505-64.678Q205.038-64.899 205.643-64.899Q206.081-64.899 206.479-64.717Q206.878-64.536 207.186-64.203L207.659-64.868Q207.690-64.899 207.722-64.899L207.768-64.899Q207.796-64.899 207.827-64.868Q207.858-64.836 207.858-64.809L207.858-62.672Q207.858-62.649 207.827-62.618Q207.796-62.586 207.768-62.586L207.651-62.586Q207.624-62.586 207.593-62.618Q207.561-62.649 207.561-62.672Q207.561-62.938 207.419-63.291Q207.276-63.645 207.097-63.883Q206.843-64.215 206.493-64.409Q206.143-64.602 205.737-64.602Q205.233-64.602 204.780-64.383Q204.327-64.164 204.034-63.770Q203.538-63.102 203.538-62Q203.538-61.469 203.675-61.002Q203.811-60.536 204.087-60.170Q204.362-59.805 204.782-59.600Q205.202-59.395 205.745-59.395Q206.233-59.395 206.657-59.639Q207.081-59.883 207.329-60.303Q207.577-60.723 207.577-61.219Q207.577-61.254 207.606-61.280Q207.636-61.305 207.667-61.305L207.768-61.305Q207.811-61.305 207.835-61.276Q207.858-61.246 207.858-61.203Q207.858-60.766 207.682-60.377Q207.507-59.989 207.196-59.705Q206.886-59.422 206.475-59.260Q206.065-59.098 205.643-59.098Q205.054-59.098 204.513-59.319Q203.972-59.539 203.556-59.944Q203.139-60.348 202.907-60.877Q202.675-61.407 202.675-62M208.811-62Q208.811-62.594 209.044-63.125Q209.276-63.657 209.692-64.057Q210.108-64.457 210.641-64.678Q211.175-64.899 211.780-64.899Q212.218-64.899 212.616-64.717Q213.014-64.536 213.323-64.203L213.796-64.868Q213.827-64.899 213.858-64.899L213.905-64.899Q213.932-64.899 213.964-64.868Q213.995-64.836 213.995-64.809L213.995-62.672Q213.995-62.649 213.964-62.618Q213.932-62.586 213.905-62.586L213.788-62.586Q213.761-62.586 213.729-62.618Q213.698-62.649 213.698-62.672Q213.698-62.938 213.556-63.291Q213.413-63.645 213.233-63.883Q212.979-64.215 212.630-64.409Q212.280-64.602 211.874-64.602Q211.370-64.602 210.917-64.383Q210.464-64.164 210.171-63.770Q209.675-63.102 209.675-62Q209.675-61.469 209.811-61.002Q209.948-60.536 210.223-60.170Q210.499-59.805 210.919-59.600Q211.339-59.395 211.882-59.395Q212.370-59.395 212.794-59.639Q213.218-59.883 213.466-60.303Q213.714-60.723 213.714-61.219Q213.714-61.254 213.743-61.280Q213.772-61.305 213.804-61.305L213.905-61.305Q213.948-61.305 213.972-61.276Q213.995-61.246 213.995-61.203Q213.995-60.766 213.819-60.377Q213.643-59.989 213.333-59.705Q213.022-59.422 212.612-59.260Q212.202-59.098 211.780-59.098Q211.190-59.098 210.649-59.319Q210.108-59.539 209.692-59.944Q209.276-60.348 209.044-60.877Q208.811-61.407 208.811-62M215.194-59.731Q215.194-59.914 215.331-60.051Q215.468-60.188 215.659-60.188Q215.850-60.188 215.983-60.055Q216.116-59.922 216.116-59.731Q216.116-59.532 215.983-59.399Q215.850-59.266 215.659-59.266Q215.468-59.266 215.331-59.403Q215.194-59.539 215.194-59.731M215.194-62.258Q215.194-62.442 215.331-62.578Q215.468-62.715 215.659-62.715Q215.850-62.715 215.983-62.582Q216.116-62.450 216.116-62.258Q216.116-62.059 215.983-61.926Q215.850-61.793 215.659-61.793Q215.468-61.793 215.331-61.930Q215.194-62.067 215.194-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M224.291-59.266L220.260-59.266Q220.209-59.266 220.178-59.297Q220.147-59.328 220.147-59.379L220.147-59.481Q220.147-59.508 220.178-59.555L223.475-64.434L222.299-64.434Q221.862-64.434 221.539-64.368Q221.217-64.301 220.987-64.090Q220.760-63.875 220.653-63.553Q220.545-63.231 220.545-62.883L220.268-62.883L220.362-64.731L224.276-64.731Q224.322-64.731 224.354-64.698Q224.385-64.664 224.385-64.618L224.385-64.532Q224.385-64.528 224.362-64.457L221.057-59.586L222.291-59.586Q222.584-59.586 222.832-59.612Q223.080-59.637 223.309-59.719Q223.537-59.801 223.721-59.977Q223.959-60.215 224.041-60.569Q224.123-60.922 224.154-61.450L224.436-61.450L224.291-59.266M227.787-59.266L225.201-59.266L225.201-59.563Q225.522-59.563 225.766-59.610Q226.010-59.657 226.010-59.825L226.010-64.168Q226.010-64.340 225.766-64.387Q225.522-64.434 225.201-64.434L225.201-64.731L229.819-64.731L230.049-62.883L229.768-62.883Q229.682-63.567 229.520-63.887Q229.358-64.207 229.018-64.321Q228.678-64.434 227.987-64.434L227.178-64.434Q226.959-64.434 226.867-64.391Q226.776-64.348 226.776-64.168L226.776-62.145L227.385-62.145Q227.811-62.145 228.008-62.211Q228.205-62.278 228.287-62.471Q228.369-62.664 228.369-63.082L228.651-63.082L228.651-60.914L228.369-60.914Q228.369-61.332 228.287-61.526Q228.205-61.719 228.008-61.786Q227.811-61.852 227.385-61.852L226.776-61.852L226.776-59.825Q226.776-59.661 227.094-59.612Q227.412-59.563 227.787-59.563L227.787-59.266M236.369-60.243L231.057-60.243Q230.979-60.250 230.930-60.299Q230.881-60.348 230.881-60.426Q230.881-60.496 230.928-60.547Q230.975-60.598 231.057-60.610L236.369-60.610Q236.444-60.598 236.490-60.547Q236.537-60.496 236.537-60.426Q236.537-60.348 236.488-60.299Q236.440-60.250 236.369-60.243M236.369-61.930L231.057-61.930Q230.979-61.938 230.930-61.987Q230.881-62.036 230.881-62.114Q230.881-62.184 230.928-62.235Q230.975-62.286 231.057-62.297L236.369-62.297Q236.444-62.286 236.490-62.235Q236.537-62.184 236.537-62.114Q236.537-62.036 236.488-61.987Q236.440-61.938 236.369-61.930M239.139-59.098Q238.436-59.098 238.035-59.498Q237.635-59.899 237.490-60.508Q237.346-61.118 237.346-61.817Q237.346-62.340 237.416-62.803Q237.487-63.266 237.680-63.678Q237.873-64.090 238.231-64.338Q238.588-64.586 239.139-64.586Q239.690-64.586 240.047-64.338Q240.404-64.090 240.596-63.680Q240.787-63.270 240.858-62.801Q240.928-62.332 240.928-61.817Q240.928-61.118 240.785-60.510Q240.643-59.903 240.242-59.500Q239.842-59.098 239.139-59.098M239.139-59.356Q239.612-59.356 239.844-59.791Q240.076-60.227 240.131-60.766Q240.186-61.305 240.186-61.946Q240.186-62.942 240.002-63.635Q239.819-64.328 239.139-64.328Q238.772-64.328 238.551-64.090Q238.330-63.852 238.235-63.495Q238.139-63.137 238.113-62.766Q238.088-62.395 238.088-61.946Q238.088-61.305 238.143-60.766Q238.197-60.227 238.430-59.791Q238.662-59.356 239.139-59.356M242.088-57.860Q242.088-57.883 242.119-57.930Q242.412-58.192 242.578-58.559Q242.744-58.926 242.744-59.313L242.744-59.371Q242.615-59.266 242.447-59.266Q242.256-59.266 242.119-59.399Q241.983-59.532 241.983-59.731Q241.983-59.922 242.119-60.055Q242.256-60.188 242.447-60.188Q242.748-60.188 242.873-59.918Q242.998-59.649 242.998-59.313Q242.998-58.864 242.817-58.450Q242.635-58.036 242.295-57.739Q242.272-57.715 242.233-57.715Q242.186-57.715 242.137-57.760Q242.088-57.805 242.088-57.860\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M246.942-59.188L246.942-60.993Q246.942-61.020 246.973-61.051Q247.004-61.082 247.028-61.082L247.133-61.082Q247.164-61.082 247.194-61.053Q247.223-61.024 247.223-60.993Q247.223-60.211 247.739-59.803Q248.254-59.395 249.063-59.395Q249.360-59.395 249.615-59.545Q249.871-59.696 250.022-59.952Q250.172-60.207 250.172-60.504Q250.172-60.903 249.926-61.207Q249.680-61.512 249.309-61.594L248.188-61.852Q247.848-61.926 247.561-62.147Q247.274-62.368 247.108-62.686Q246.942-63.004 246.942-63.356Q246.942-63.786 247.172-64.141Q247.403-64.496 247.783-64.698Q248.164-64.899 248.590-64.899Q248.840-64.899 249.086-64.840Q249.332-64.782 249.551-64.659Q249.770-64.536 249.934-64.356L250.262-64.852Q250.293-64.899 250.332-64.899L250.379-64.899Q250.406-64.899 250.438-64.868Q250.469-64.836 250.469-64.809L250.469-63Q250.469-62.977 250.438-62.946Q250.406-62.914 250.379-62.914L250.278-62.914Q250.246-62.914 250.217-62.944Q250.188-62.973 250.188-63Q250.188-63.133 250.145-63.319Q250.102-63.504 250.037-63.659Q249.973-63.813 249.873-63.971Q249.774-64.129 249.684-64.219Q249.254-64.625 248.590-64.625Q248.313-64.625 248.053-64.493Q247.793-64.360 247.635-64.125Q247.477-63.891 247.477-63.610Q247.477-63.254 247.717-62.983Q247.957-62.711 248.324-62.625L249.438-62.371Q249.715-62.305 249.948-62.151Q250.180-61.996 250.350-61.778Q250.520-61.559 250.614-61.301Q250.707-61.043 250.707-60.754Q250.707-60.426 250.582-60.123Q250.457-59.821 250.223-59.584Q249.989-59.348 249.696-59.223Q249.403-59.098 249.063-59.098Q248.047-59.098 247.477-59.641L247.149-59.145Q247.117-59.098 247.078-59.098L247.028-59.098Q247.004-59.098 246.973-59.129Q246.942-59.161 246.942-59.188M254.110-59.266L251.524-59.266L251.524-59.563Q251.844-59.563 252.088-59.610Q252.332-59.657 252.332-59.825L252.332-64.168Q252.332-64.340 252.088-64.387Q251.844-64.434 251.524-64.434L251.524-64.731L256.141-64.731L256.371-62.883L256.090-62.883Q256.004-63.567 255.842-63.887Q255.680-64.207 255.340-64.321Q255-64.434 254.309-64.434L253.500-64.434Q253.281-64.434 253.190-64.391Q253.098-64.348 253.098-64.168L253.098-62.145L253.707-62.145Q254.133-62.145 254.330-62.211Q254.528-62.278 254.610-62.471Q254.692-62.664 254.692-63.082L254.973-63.082L254.973-60.914L254.692-60.914Q254.692-61.332 254.610-61.526Q254.528-61.719 254.330-61.786Q254.133-61.852 253.707-61.852L253.098-61.852L253.098-59.825Q253.098-59.661 253.416-59.612Q253.735-59.563 254.110-59.563L254.110-59.266M262.692-60.243L257.379-60.243Q257.301-60.250 257.252-60.299Q257.203-60.348 257.203-60.426Q257.203-60.496 257.250-60.547Q257.297-60.598 257.379-60.610L262.692-60.610Q262.766-60.598 262.813-60.547Q262.860-60.496 262.860-60.426Q262.860-60.348 262.811-60.299Q262.762-60.250 262.692-60.243M262.692-61.930L257.379-61.930Q257.301-61.938 257.252-61.987Q257.203-62.036 257.203-62.114Q257.203-62.184 257.250-62.235Q257.297-62.286 257.379-62.297L262.692-62.297Q262.766-62.286 262.813-62.235Q262.860-62.184 262.860-62.114Q262.860-62.036 262.811-61.987Q262.762-61.938 262.692-61.930M265.461-59.098Q264.758-59.098 264.358-59.498Q263.957-59.899 263.813-60.508Q263.668-61.118 263.668-61.817Q263.668-62.340 263.739-62.803Q263.809-63.266 264.002-63.678Q264.196-64.090 264.553-64.338Q264.910-64.586 265.461-64.586Q266.012-64.586 266.369-64.338Q266.727-64.090 266.918-63.680Q267.110-63.270 267.180-62.801Q267.250-62.332 267.250-61.817Q267.250-61.118 267.108-60.510Q266.965-59.903 266.565-59.500Q266.164-59.098 265.461-59.098M265.461-59.356Q265.934-59.356 266.166-59.791Q266.399-60.227 266.453-60.766Q266.508-61.305 266.508-61.946Q266.508-62.942 266.324-63.635Q266.141-64.328 265.461-64.328Q265.094-64.328 264.873-64.090Q264.653-63.852 264.557-63.495Q264.461-63.137 264.436-62.766Q264.410-62.395 264.410-61.946Q264.410-61.305 264.465-60.766Q264.520-60.227 264.752-59.791Q264.985-59.356 265.461-59.356M268.410-57.860Q268.410-57.883 268.442-57.930Q268.735-58.192 268.901-58.559Q269.067-58.926 269.067-59.313L269.067-59.371Q268.938-59.266 268.770-59.266Q268.578-59.266 268.442-59.399Q268.305-59.532 268.305-59.731Q268.305-59.922 268.442-60.055Q268.578-60.188 268.770-60.188Q269.071-60.188 269.196-59.918Q269.321-59.649 269.321-59.313Q269.321-58.864 269.139-58.450Q268.957-58.036 268.617-57.739Q268.594-57.715 268.555-57.715Q268.508-57.715 268.459-57.760Q268.410-57.805 268.410-57.860\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M276.097-59.098Q275.515-59.098 274.997-59.325Q274.479-59.551 274.091-59.950Q273.702-60.348 273.483-60.873Q273.265-61.399 273.265-61.969Q273.265-62.739 273.640-63.416Q274.015-64.094 274.665-64.496Q275.315-64.899 276.097-64.899Q276.870-64.899 277.521-64.496Q278.171-64.094 278.546-63.416Q278.921-62.739 278.921-61.969Q278.921-61.399 278.700-60.868Q278.479-60.336 278.095-59.944Q277.710-59.551 277.192-59.325Q276.675-59.098 276.097-59.098M274.655-60.168Q274.819-59.938 275.050-59.762Q275.280-59.586 275.548-59.491Q275.815-59.395 276.097-59.395Q276.515-59.395 276.896-59.606Q277.276-59.817 277.526-60.168Q278.058-60.887 278.058-62.106Q278.058-62.735 277.843-63.313Q277.628-63.891 277.187-64.254Q276.745-64.618 276.097-64.618Q275.444-64.618 275.001-64.254Q274.558-63.891 274.343-63.313Q274.128-62.735 274.128-62.106Q274.128-60.887 274.655-60.168M282.323-59.266L279.737-59.266L279.737-59.563Q280.058-59.563 280.302-59.610Q280.546-59.657 280.546-59.825L280.546-64.168Q280.546-64.340 280.302-64.387Q280.058-64.434 279.737-64.434L279.737-64.731L284.354-64.731L284.585-62.883L284.304-62.883Q284.218-63.567 284.056-63.887Q283.894-64.207 283.554-64.321Q283.214-64.434 282.522-64.434L281.714-64.434Q281.495-64.434 281.403-64.391Q281.312-64.348 281.312-64.168L281.312-62.145L281.921-62.145Q282.347-62.145 282.544-62.211Q282.741-62.278 282.823-62.471Q282.905-62.664 282.905-63.082L283.187-63.082L283.187-60.914L282.905-60.914Q282.905-61.332 282.823-61.526Q282.741-61.719 282.544-61.786Q282.347-61.852 281.921-61.852L281.312-61.852L281.312-59.825Q281.312-59.661 281.630-59.612Q281.948-59.563 282.323-59.563L282.323-59.266M290.905-60.243L285.593-60.243Q285.515-60.250 285.466-60.299Q285.417-60.348 285.417-60.426Q285.417-60.496 285.464-60.547Q285.511-60.598 285.593-60.610L290.905-60.610Q290.979-60.598 291.026-60.547Q291.073-60.496 291.073-60.426Q291.073-60.348 291.024-60.299Q290.976-60.250 290.905-60.243M290.905-61.930L285.593-61.930Q285.515-61.938 285.466-61.987Q285.417-62.036 285.417-62.114Q285.417-62.184 285.464-62.235Q285.511-62.286 285.593-62.297L290.905-62.297Q290.979-62.286 291.026-62.235Q291.073-62.184 291.073-62.114Q291.073-62.036 291.024-61.987Q290.976-61.938 290.905-61.930M293.675-59.098Q292.972-59.098 292.571-59.498Q292.171-59.899 292.026-60.508Q291.882-61.118 291.882-61.817Q291.882-62.340 291.952-62.803Q292.022-63.266 292.216-63.678Q292.409-64.090 292.767-64.338Q293.124-64.586 293.675-64.586Q294.226-64.586 294.583-64.338Q294.940-64.090 295.132-63.680Q295.323-63.270 295.394-62.801Q295.464-62.332 295.464-61.817Q295.464-61.118 295.321-60.510Q295.179-59.903 294.778-59.500Q294.378-59.098 293.675-59.098M293.675-59.356Q294.147-59.356 294.380-59.791Q294.612-60.227 294.667-60.766Q294.722-61.305 294.722-61.946Q294.722-62.942 294.538-63.635Q294.354-64.328 293.675-64.328Q293.308-64.328 293.087-64.090Q292.866-63.852 292.771-63.495Q292.675-63.137 292.649-62.766Q292.624-62.395 292.624-61.946Q292.624-61.305 292.679-60.766Q292.733-60.227 292.966-59.791Q293.198-59.356 293.675-59.356\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 1.053h404.029\"\u002F>\u003Cg transform=\"translate(-35.01 74.266)\">\u003Cpath d=\"M10.731-59.266L8.994-59.266L8.994-59.546Q9.716-59.546 9.716-59.946L9.716-63.556Q9.716-63.767 8.994-63.767L8.994-64.048L10.351-64.048Q10.447-64.048 10.498-63.949L12.173-59.974L13.845-63.949Q13.892-64.048 13.991-64.048L15.342-64.048L15.342-63.767Q14.620-63.767 14.620-63.556L14.620-59.755Q14.620-59.546 15.342-59.546L15.342-59.266L13.284-59.266L13.284-59.546Q14.005-59.546 14.005-59.755L14.005-63.767L12.153-59.365Q12.105-59.266 11.995-59.266Q11.883-59.266 11.835-59.365L10.010-63.696L10.010-59.946Q10.010-59.546 10.731-59.546L10.731-59.266M16.035-60.801Q16.035-61.122 16.160-61.411Q16.285-61.700 16.511-61.923Q16.736-62.147 17.032-62.267Q17.327-62.387 17.645-62.387Q17.973-62.387 18.235-62.287Q18.496-62.188 18.672-62.006Q18.848-61.823 18.942-61.565Q19.036-61.307 19.036-60.975Q19.036-60.883 18.954-60.862L16.699-60.862L16.699-60.801Q16.699-60.213 16.982-59.830Q17.266-59.447 17.833-59.447Q18.155-59.447 18.423-59.640Q18.691-59.833 18.780-60.148Q18.787-60.189 18.862-60.203L18.954-60.203Q19.036-60.179 19.036-60.107Q19.036-60.100 19.030-60.073Q18.917-59.676 18.546-59.437Q18.175-59.198 17.751-59.198Q17.314-59.198 16.914-59.406Q16.514-59.615 16.275-59.982Q16.035-60.349 16.035-60.801M16.705-61.071L18.520-61.071Q18.520-61.348 18.423-61.600Q18.325-61.853 18.127-62.009Q17.929-62.164 17.645-62.164Q17.368-62.164 17.155-62.006Q16.941-61.847 16.823-61.592Q16.705-61.337 16.705-61.071M21.306-59.266L19.672-59.266L19.672-59.546Q19.901-59.546 20.050-59.580Q20.199-59.615 20.199-59.755L20.199-61.604Q20.199-61.874 20.091-61.935Q19.983-61.997 19.672-61.997L19.672-62.277L20.732-62.352L20.732-61.703Q20.903-62.011 21.207-62.182Q21.511-62.352 21.856-62.352Q22.256-62.352 22.533-62.212Q22.810-62.072 22.895-61.724Q23.063-62.017 23.362-62.185Q23.661-62.352 24.006-62.352Q24.512-62.352 24.796-62.129Q25.079-61.905 25.079-61.409L25.079-59.755Q25.079-59.618 25.228-59.582Q25.377-59.546 25.602-59.546L25.602-59.266L23.972-59.266L23.972-59.546Q24.198-59.546 24.348-59.582Q24.498-59.618 24.498-59.755L24.498-61.395Q24.498-61.730 24.379-61.930Q24.259-62.130 23.945-62.130Q23.675-62.130 23.440-61.994Q23.206-61.857 23.068-61.623Q22.929-61.389 22.929-61.115L22.929-59.755Q22.929-59.618 23.078-59.582Q23.227-59.546 23.452-59.546L23.452-59.266L21.822-59.266L21.822-59.546Q22.051-59.546 22.200-59.580Q22.348-59.615 22.348-59.755L22.348-61.395Q22.348-61.730 22.229-61.930Q22.109-62.130 21.795-62.130Q21.525-62.130 21.291-61.994Q21.056-61.857 20.918-61.623Q20.780-61.389 20.780-61.115L20.780-59.755Q20.780-59.618 20.930-59.582Q21.080-59.546 21.306-59.546L21.306-59.266M26.149-60.749Q26.149-61.091 26.284-61.390Q26.419-61.689 26.658-61.913Q26.898-62.137 27.216-62.262Q27.533-62.387 27.865-62.387Q28.309-62.387 28.709-62.171Q29.109-61.956 29.343-61.578Q29.577-61.201 29.577-60.749Q29.577-60.408 29.436-60.124Q29.294-59.840 29.049-59.633Q28.805-59.427 28.496-59.312Q28.186-59.198 27.865-59.198Q27.434-59.198 27.033-59.399Q26.631-59.601 26.390-59.953Q26.149-60.305 26.149-60.749M27.865-59.447Q28.467-59.447 28.690-59.825Q28.914-60.203 28.914-60.835Q28.914-61.447 28.680-61.806Q28.446-62.164 27.865-62.164Q26.812-62.164 26.812-60.835Q26.812-60.203 27.038-59.825Q27.263-59.447 27.865-59.447M31.922-59.266L30.186-59.266L30.186-59.546Q30.415-59.546 30.564-59.580Q30.712-59.615 30.712-59.755L30.712-61.604Q30.712-61.874 30.605-61.935Q30.497-61.997 30.186-61.997L30.186-62.277L31.215-62.352L31.215-61.645Q31.345-61.953 31.587-62.152Q31.830-62.352 32.148-62.352Q32.366-62.352 32.537-62.228Q32.708-62.103 32.708-61.891Q32.708-61.754 32.609-61.655Q32.510-61.556 32.377-61.556Q32.240-61.556 32.141-61.655Q32.042-61.754 32.042-61.891Q32.042-62.031 32.141-62.130Q31.850-62.130 31.650-61.934Q31.450-61.737 31.358-61.443Q31.266-61.149 31.266-60.869L31.266-59.755Q31.266-59.546 31.922-59.546L31.922-59.266M33.628-58.131Q33.758-58.063 33.894-58.063Q34.065-58.063 34.216-58.152Q34.366-58.241 34.477-58.386Q34.588-58.531 34.667-58.699L34.930-59.266L33.761-61.792Q33.686-61.939 33.556-61.971Q33.426-62.004 33.194-62.004L33.194-62.284L34.715-62.284L34.715-62.004Q34.366-62.004 34.366-61.857Q34.369-61.836 34.371-61.819Q34.373-61.802 34.373-61.792L35.231-59.933L36.003-61.604Q36.037-61.672 36.037-61.751Q36.037-61.864 35.954-61.934Q35.870-62.004 35.757-62.004L35.757-62.284L36.953-62.284L36.953-62.004Q36.735-62.004 36.562-61.900Q36.389-61.795 36.297-61.604L34.961-58.699Q34.790-58.329 34.520-58.083Q34.250-57.837 33.894-57.837Q33.624-57.837 33.406-58.003Q33.187-58.169 33.187-58.432Q33.187-58.569 33.279-58.658Q33.371-58.746 33.511-58.746Q33.648-58.746 33.737-58.658Q33.826-58.569 33.826-58.432Q33.826-58.329 33.773-58.251Q33.720-58.172 33.628-58.131\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M10.742-59.266L8.886-59.266L8.886-59.563Q9.160-59.563 9.328-59.610Q9.496-59.657 9.496-59.825L9.496-61.961Q9.496-62.176 9.433-62.272Q9.371-62.368 9.252-62.389Q9.133-62.411 8.886-62.411L8.886-62.707L10.078-62.793L10.078-62.059Q10.191-62.274 10.385-62.442Q10.578-62.610 10.816-62.702Q11.054-62.793 11.308-62.793Q12.269-62.793 12.445-62.082Q12.629-62.411 12.957-62.602Q13.285-62.793 13.664-62.793Q14.840-62.793 14.840-61.715L14.840-59.825Q14.840-59.657 15.008-59.610Q15.176-59.563 15.445-59.563L15.445-59.266L13.590-59.266L13.590-59.563Q13.863-59.563 14.031-59.608Q14.199-59.653 14.199-59.825L14.199-61.700Q14.199-62.086 14.074-62.313Q13.949-62.539 13.597-62.539Q13.293-62.539 13.037-62.377Q12.781-62.215 12.633-61.946Q12.484-61.676 12.484-61.379L12.484-59.825Q12.484-59.657 12.654-59.610Q12.824-59.563 13.094-59.563L13.094-59.266L11.238-59.266L11.238-59.563Q11.511-59.563 11.679-59.610Q11.847-59.657 11.847-59.825L11.847-61.700Q11.847-62.086 11.722-62.313Q11.597-62.539 11.246-62.539Q10.941-62.539 10.685-62.377Q10.429-62.215 10.281-61.946Q10.133-61.676 10.133-61.379L10.133-59.825Q10.133-59.657 10.303-59.610Q10.472-59.563 10.742-59.563L10.742-59.266M15.890-61.020Q15.890-61.500 16.123-61.916Q16.355-62.332 16.765-62.582Q17.176-62.832 17.652-62.832Q18.383-62.832 18.781-62.391Q19.179-61.950 19.179-61.219Q19.179-61.114 19.086-61.090L16.636-61.090L16.636-61.020Q16.636-60.610 16.758-60.254Q16.879-59.899 17.150-59.682Q17.422-59.465 17.851-59.465Q18.215-59.465 18.511-59.694Q18.808-59.922 18.910-60.274Q18.918-60.321 19.004-60.336L19.086-60.336Q19.179-60.309 19.179-60.227Q19.179-60.219 19.172-60.188Q19.109-59.961 18.970-59.778Q18.832-59.594 18.640-59.461Q18.449-59.328 18.230-59.258Q18.011-59.188 17.773-59.188Q17.402-59.188 17.064-59.325Q16.726-59.461 16.459-59.713Q16.191-59.965 16.041-60.305Q15.890-60.645 15.890-61.020M16.644-61.328L18.605-61.328Q18.605-61.633 18.504-61.924Q18.402-62.215 18.185-62.397Q17.969-62.578 17.652-62.578Q17.351-62.578 17.121-62.391Q16.890-62.203 16.767-61.912Q16.644-61.621 16.644-61.328M21.597-59.266L19.742-59.266L19.742-59.563Q20.015-59.563 20.183-59.610Q20.351-59.657 20.351-59.825L20.351-61.961Q20.351-62.176 20.289-62.272Q20.226-62.368 20.107-62.389Q19.988-62.411 19.742-62.411L19.742-62.707L20.933-62.793L20.933-62.059Q21.047-62.274 21.240-62.442Q21.433-62.610 21.672-62.702Q21.910-62.793 22.164-62.793Q23.125-62.793 23.301-62.082Q23.484-62.411 23.812-62.602Q24.140-62.793 24.519-62.793Q25.695-62.793 25.695-61.715L25.695-59.825Q25.695-59.657 25.863-59.610Q26.031-59.563 26.301-59.563L26.301-59.266L24.445-59.266L24.445-59.563Q24.719-59.563 24.886-59.608Q25.054-59.653 25.054-59.825L25.054-61.700Q25.054-62.086 24.929-62.313Q24.804-62.539 24.453-62.539Q24.148-62.539 23.892-62.377Q23.636-62.215 23.488-61.946Q23.340-61.676 23.340-61.379L23.340-59.825Q23.340-59.657 23.510-59.610Q23.679-59.563 23.949-59.563L23.949-59.266L22.094-59.266L22.094-59.563Q22.367-59.563 22.535-59.610Q22.703-59.657 22.703-59.825L22.703-61.700Q22.703-62.086 22.578-62.313Q22.453-62.539 22.101-62.539Q21.797-62.539 21.541-62.377Q21.285-62.215 21.136-61.946Q20.988-61.676 20.988-61.379L20.988-59.825Q20.988-59.657 21.158-59.610Q21.328-59.563 21.597-59.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M31.598-59.266L29.618-59.266L29.618-59.563Q29.887-59.563 30.055-59.608Q30.223-59.653 30.223-59.825L30.223-61.961Q30.223-62.176 30.161-62.272Q30.098-62.368 29.981-62.389Q29.864-62.411 29.618-62.411L29.618-62.707L30.786-62.793L30.786-62.008Q30.864-62.219 31.016-62.405Q31.168-62.590 31.368-62.692Q31.567-62.793 31.793-62.793Q32.040-62.793 32.231-62.649Q32.422-62.504 32.422-62.274Q32.422-62.118 32.317-62.008Q32.211-61.899 32.055-61.899Q31.899-61.899 31.790-62.008Q31.680-62.118 31.680-62.274Q31.680-62.434 31.786-62.539Q31.461-62.539 31.247-62.311Q31.032-62.082 30.936-61.743Q30.840-61.403 30.840-61.098L30.840-59.825Q30.840-59.657 31.067-59.610Q31.293-59.563 31.598-59.563L31.598-59.266M32.903-61.020Q32.903-61.500 33.135-61.916Q33.368-62.332 33.778-62.582Q34.188-62.832 34.665-62.832Q35.395-62.832 35.793-62.391Q36.192-61.950 36.192-61.219Q36.192-61.114 36.098-61.090L33.649-61.090L33.649-61.020Q33.649-60.610 33.770-60.254Q33.891-59.899 34.163-59.682Q34.434-59.465 34.864-59.465Q35.227-59.465 35.524-59.694Q35.821-59.922 35.922-60.274Q35.930-60.321 36.016-60.336L36.098-60.336Q36.192-60.309 36.192-60.227Q36.192-60.219 36.184-60.188Q36.122-59.961 35.983-59.778Q35.844-59.594 35.653-59.461Q35.461-59.328 35.243-59.258Q35.024-59.188 34.786-59.188Q34.415-59.188 34.077-59.325Q33.739-59.461 33.471-59.713Q33.204-59.965 33.053-60.305Q32.903-60.645 32.903-61.020M33.657-61.328L35.618-61.328Q35.618-61.633 35.516-61.924Q35.415-62.215 35.198-62.397Q34.981-62.578 34.665-62.578Q34.364-62.578 34.133-62.391Q33.903-62.203 33.780-61.912Q33.657-61.621 33.657-61.328M36.778-60.098Q36.778-60.582 37.180-60.877Q37.582-61.172 38.133-61.291Q38.684-61.411 39.176-61.411L39.176-61.700Q39.176-61.926 39.061-62.133Q38.946-62.340 38.748-62.459Q38.551-62.578 38.321-62.578Q37.895-62.578 37.610-62.473Q37.680-62.446 37.727-62.391Q37.774-62.336 37.799-62.266Q37.825-62.196 37.825-62.121Q37.825-62.016 37.774-61.924Q37.723-61.832 37.631-61.782Q37.540-61.731 37.434-61.731Q37.329-61.731 37.237-61.782Q37.145-61.832 37.094-61.924Q37.043-62.016 37.043-62.121Q37.043-62.539 37.432-62.686Q37.821-62.832 38.321-62.832Q38.653-62.832 39.006-62.702Q39.360-62.571 39.588-62.317Q39.817-62.063 39.817-61.715L39.817-59.914Q39.817-59.782 39.889-59.672Q39.961-59.563 40.090-59.563Q40.215-59.563 40.284-59.668Q40.352-59.774 40.352-59.914L40.352-60.426L40.633-60.426L40.633-59.914Q40.633-59.711 40.516-59.553Q40.399-59.395 40.217-59.311Q40.036-59.227 39.832-59.227Q39.602-59.227 39.450-59.399Q39.297-59.571 39.266-59.801Q39.106-59.520 38.797-59.354Q38.489-59.188 38.137-59.188Q37.625-59.188 37.202-59.411Q36.778-59.633 36.778-60.098M37.465-60.098Q37.465-59.813 37.692-59.627Q37.918-59.442 38.211-59.442Q38.457-59.442 38.682-59.559Q38.907-59.676 39.041-59.879Q39.176-60.082 39.176-60.336L39.176-61.168Q38.911-61.168 38.625-61.114Q38.340-61.059 38.069-60.930Q37.797-60.801 37.631-60.594Q37.465-60.387 37.465-60.098M42.743-59.188Q42.262-59.188 41.854-59.432Q41.446-59.676 41.207-60.090Q40.969-60.504 40.969-60.993Q40.969-61.485 41.227-61.901Q41.485-62.317 41.916-62.555Q42.348-62.793 42.840-62.793Q43.461-62.793 43.911-62.356L43.911-63.985Q43.911-64.200 43.848-64.295Q43.786-64.391 43.668-64.412Q43.551-64.434 43.305-64.434L43.305-64.731L44.528-64.817L44.528-60.008Q44.528-59.797 44.590-59.702Q44.653-59.606 44.770-59.584Q44.887-59.563 45.137-59.563L45.137-59.266L43.887-59.188L43.887-59.672Q43.422-59.188 42.743-59.188M42.809-59.442Q43.149-59.442 43.442-59.633Q43.735-59.825 43.887-60.121L43.887-61.953Q43.739-62.227 43.477-62.383Q43.215-62.539 42.903-62.539Q42.278-62.539 41.995-62.092Q41.711-61.645 41.711-60.985Q41.711-60.340 41.963-59.891Q42.215-59.442 42.809-59.442M51.368-60.243L46.055-60.243Q45.977-60.250 45.928-60.299Q45.879-60.348 45.879-60.426Q45.879-60.496 45.926-60.547Q45.973-60.598 46.055-60.610L51.368-60.610Q51.442-60.598 51.489-60.547Q51.536-60.496 51.536-60.426Q51.536-60.348 51.487-60.299Q51.438-60.250 51.368-60.243M51.368-61.930L46.055-61.930Q45.977-61.938 45.928-61.987Q45.879-62.036 45.879-62.114Q45.879-62.184 45.926-62.235Q45.973-62.286 46.055-62.297L51.368-62.297Q51.442-62.286 51.489-62.235Q51.536-62.184 51.536-62.114Q51.536-62.036 51.487-61.987Q51.438-61.938 51.368-61.930M54.137-59.098Q53.434-59.098 53.034-59.498Q52.633-59.899 52.489-60.508Q52.344-61.118 52.344-61.817Q52.344-62.340 52.415-62.803Q52.485-63.266 52.678-63.678Q52.872-64.090 53.229-64.338Q53.586-64.586 54.137-64.586Q54.688-64.586 55.045-64.338Q55.403-64.090 55.594-63.680Q55.786-63.270 55.856-62.801Q55.926-62.332 55.926-61.817Q55.926-61.118 55.784-60.510Q55.641-59.903 55.241-59.500Q54.840-59.098 54.137-59.098M54.137-59.356Q54.610-59.356 54.842-59.791Q55.075-60.227 55.129-60.766Q55.184-61.305 55.184-61.946Q55.184-62.942 55-63.635Q54.817-64.328 54.137-64.328Q53.770-64.328 53.549-64.090Q53.329-63.852 53.233-63.495Q53.137-63.137 53.112-62.766Q53.086-62.395 53.086-61.946Q53.086-61.305 53.141-60.766Q53.196-60.227 53.428-59.791Q53.661-59.356 54.137-59.356M57.086-57.860Q57.086-57.883 57.118-57.930Q57.411-58.192 57.577-58.559Q57.743-58.926 57.743-59.313L57.743-59.371Q57.614-59.266 57.446-59.266Q57.254-59.266 57.118-59.399Q56.981-59.532 56.981-59.731Q56.981-59.922 57.118-60.055Q57.254-60.188 57.446-60.188Q57.747-60.188 57.872-59.918Q57.997-59.649 57.997-59.313Q57.997-58.864 57.815-58.450Q57.633-58.036 57.293-57.739Q57.270-57.715 57.231-57.715Q57.184-57.715 57.135-57.760Q57.086-57.805 57.086-57.860\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M63.639-59.266L61.783-59.266L61.783-59.563Q62.057-59.563 62.225-59.610Q62.393-59.657 62.393-59.825L62.393-61.961Q62.393-62.176 62.330-62.272Q62.268-62.368 62.149-62.389Q62.030-62.411 61.783-62.411L61.783-62.707L62.975-62.793L62.975-62.059Q63.088-62.274 63.282-62.442Q63.475-62.610 63.713-62.702Q63.951-62.793 64.205-62.793Q65.166-62.793 65.342-62.082Q65.526-62.411 65.854-62.602Q66.182-62.793 66.561-62.793Q67.737-62.793 67.737-61.715L67.737-59.825Q67.737-59.657 67.905-59.610Q68.073-59.563 68.342-59.563L68.342-59.266L66.487-59.266L66.487-59.563Q66.760-59.563 66.928-59.608Q67.096-59.653 67.096-59.825L67.096-61.700Q67.096-62.086 66.971-62.313Q66.846-62.539 66.494-62.539Q66.190-62.539 65.934-62.377Q65.678-62.215 65.530-61.946Q65.381-61.676 65.381-61.379L65.381-59.825Q65.381-59.657 65.551-59.610Q65.721-59.563 65.991-59.563L65.991-59.266L64.135-59.266L64.135-59.563Q64.409-59.563 64.576-59.610Q64.744-59.657 64.744-59.825L64.744-61.700Q64.744-62.086 64.619-62.313Q64.494-62.539 64.143-62.539Q63.838-62.539 63.582-62.377Q63.326-62.215 63.178-61.946Q63.030-61.676 63.030-61.379L63.030-59.825Q63.030-59.657 63.200-59.610Q63.369-59.563 63.639-59.563L63.639-59.266M68.787-61.020Q68.787-61.500 69.020-61.916Q69.252-62.332 69.662-62.582Q70.073-62.832 70.549-62.832Q71.280-62.832 71.678-62.391Q72.076-61.950 72.076-61.219Q72.076-61.114 71.983-61.090L69.534-61.090L69.534-61.020Q69.534-60.610 69.655-60.254Q69.776-59.899 70.047-59.682Q70.319-59.465 70.748-59.465Q71.112-59.465 71.409-59.694Q71.705-59.922 71.807-60.274Q71.815-60.321 71.901-60.336L71.983-60.336Q72.076-60.309 72.076-60.227Q72.076-60.219 72.069-60.188Q72.006-59.961 71.867-59.778Q71.729-59.594 71.537-59.461Q71.346-59.328 71.127-59.258Q70.909-59.188 70.670-59.188Q70.299-59.188 69.961-59.325Q69.623-59.461 69.356-59.713Q69.088-59.965 68.938-60.305Q68.787-60.645 68.787-61.020M69.541-61.328L71.502-61.328Q71.502-61.633 71.401-61.924Q71.299-62.215 71.082-62.397Q70.866-62.578 70.549-62.578Q70.248-62.578 70.018-62.391Q69.787-62.203 69.664-61.912Q69.541-61.621 69.541-61.328M74.494-59.266L72.639-59.266L72.639-59.563Q72.912-59.563 73.080-59.610Q73.248-59.657 73.248-59.825L73.248-61.961Q73.248-62.176 73.186-62.272Q73.123-62.368 73.004-62.389Q72.885-62.411 72.639-62.411L72.639-62.707L73.830-62.793L73.830-62.059Q73.944-62.274 74.137-62.442Q74.330-62.610 74.569-62.702Q74.807-62.793 75.061-62.793Q76.022-62.793 76.198-62.082Q76.381-62.411 76.709-62.602Q77.037-62.793 77.416-62.793Q78.592-62.793 78.592-61.715L78.592-59.825Q78.592-59.657 78.760-59.610Q78.928-59.563 79.198-59.563L79.198-59.266L77.342-59.266L77.342-59.563Q77.616-59.563 77.784-59.608Q77.951-59.653 77.951-59.825L77.951-61.700Q77.951-62.086 77.826-62.313Q77.701-62.539 77.350-62.539Q77.045-62.539 76.789-62.377Q76.534-62.215 76.385-61.946Q76.237-61.676 76.237-61.379L76.237-59.825Q76.237-59.657 76.407-59.610Q76.576-59.563 76.846-59.563L76.846-59.266L74.991-59.266L74.991-59.563Q75.264-59.563 75.432-59.610Q75.600-59.657 75.600-59.825L75.600-61.700Q75.600-62.086 75.475-62.313Q75.350-62.539 74.998-62.539Q74.694-62.539 74.438-62.377Q74.182-62.215 74.034-61.946Q73.885-61.676 73.885-61.379L73.885-59.825Q73.885-59.657 74.055-59.610Q74.225-59.563 74.494-59.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M84.073-59.297L83.003-62.153Q82.936-62.332 82.806-62.375Q82.675-62.418 82.417-62.418L82.417-62.715L84.097-62.715L84.097-62.418Q83.647-62.418 83.647-62.219Q83.651-62.203 83.653-62.186Q83.655-62.168 83.655-62.153L84.448-60.059L85.159-61.969Q85.124-62.063 85.124-62.108Q85.124-62.153 85.089-62.153Q85.022-62.332 84.892-62.375Q84.761-62.418 84.507-62.418L84.507-62.715L86.097-62.715L86.097-62.418Q85.647-62.418 85.647-62.219Q85.651-62.200 85.653-62.182Q85.655-62.164 85.655-62.153L86.487-59.938L87.241-61.938Q87.265-61.996 87.265-62.067Q87.265-62.227 87.128-62.323Q86.991-62.418 86.823-62.418L86.823-62.715L88.210-62.715L88.210-62.418Q87.976-62.418 87.798-62.291Q87.620-62.164 87.538-61.938L86.554-59.297Q86.499-59.188 86.386-59.188L86.327-59.188Q86.214-59.188 86.171-59.297L85.311-61.571L84.456-59.297Q84.417-59.188 84.296-59.188L84.241-59.188Q84.128-59.188 84.073-59.297M90.632-59.266L88.651-59.266L88.651-59.563Q88.921-59.563 89.089-59.608Q89.257-59.653 89.257-59.825L89.257-61.961Q89.257-62.176 89.194-62.272Q89.132-62.368 89.015-62.389Q88.897-62.411 88.651-62.411L88.651-62.707L89.819-62.793L89.819-62.008Q89.897-62.219 90.050-62.405Q90.202-62.590 90.401-62.692Q90.601-62.793 90.827-62.793Q91.073-62.793 91.265-62.649Q91.456-62.504 91.456-62.274Q91.456-62.118 91.351-62.008Q91.245-61.899 91.089-61.899Q90.933-61.899 90.823-62.008Q90.714-62.118 90.714-62.274Q90.714-62.434 90.819-62.539Q90.495-62.539 90.280-62.311Q90.065-62.082 89.970-61.743Q89.874-61.403 89.874-61.098L89.874-59.825Q89.874-59.657 90.101-59.610Q90.327-59.563 90.632-59.563L90.632-59.266M93.796-59.266L92.019-59.266L92.019-59.563Q92.292-59.563 92.460-59.610Q92.628-59.657 92.628-59.825L92.628-61.961Q92.628-62.176 92.571-62.272Q92.515-62.368 92.401-62.389Q92.288-62.411 92.042-62.411L92.042-62.707L93.241-62.793L93.241-59.825Q93.241-59.657 93.388-59.610Q93.534-59.563 93.796-59.563L93.796-59.266M92.354-64.188Q92.354-64.379 92.489-64.510Q92.624-64.641 92.819-64.641Q92.940-64.641 93.044-64.578Q93.147-64.516 93.210-64.412Q93.272-64.309 93.272-64.188Q93.272-63.993 93.142-63.858Q93.011-63.723 92.819-63.723Q92.620-63.723 92.487-63.856Q92.354-63.989 92.354-64.188M94.921-60.227L94.921-62.418L94.218-62.418L94.218-62.672Q94.573-62.672 94.815-62.905Q95.058-63.137 95.169-63.485Q95.280-63.832 95.280-64.188L95.561-64.188L95.561-62.715L96.737-62.715L96.737-62.418L95.561-62.418L95.561-60.243Q95.561-59.922 95.681-59.694Q95.800-59.465 96.081-59.465Q96.261-59.465 96.378-59.588Q96.495-59.711 96.548-59.891Q96.601-60.071 96.601-60.243L96.601-60.715L96.882-60.715L96.882-60.227Q96.882-59.973 96.776-59.733Q96.671-59.493 96.474-59.340Q96.276-59.188 96.019-59.188Q95.702-59.188 95.450-59.311Q95.198-59.434 95.060-59.668Q94.921-59.903 94.921-60.227M97.601-61.020Q97.601-61.500 97.833-61.916Q98.065-62.332 98.476-62.582Q98.886-62.832 99.362-62.832Q100.093-62.832 100.491-62.391Q100.890-61.950 100.890-61.219Q100.890-61.114 100.796-61.090L98.347-61.090L98.347-61.020Q98.347-60.610 98.468-60.254Q98.589-59.899 98.860-59.682Q99.132-59.465 99.561-59.465Q99.925-59.465 100.222-59.694Q100.519-59.922 100.620-60.274Q100.628-60.321 100.714-60.336L100.796-60.336Q100.890-60.309 100.890-60.227Q100.890-60.219 100.882-60.188Q100.819-59.961 100.681-59.778Q100.542-59.594 100.351-59.461Q100.159-59.328 99.940-59.258Q99.722-59.188 99.483-59.188Q99.112-59.188 98.774-59.325Q98.436-59.461 98.169-59.713Q97.901-59.965 97.751-60.305Q97.601-60.645 97.601-61.020M98.354-61.328L100.315-61.328Q100.315-61.633 100.214-61.924Q100.112-62.215 99.895-62.397Q99.679-62.578 99.362-62.578Q99.061-62.578 98.831-62.391Q98.601-62.203 98.478-61.912Q98.354-61.621 98.354-61.328M107.101-60.243L101.788-60.243Q101.710-60.250 101.661-60.299Q101.612-60.348 101.612-60.426Q101.612-60.496 101.659-60.547Q101.706-60.598 101.788-60.610L107.101-60.610Q107.175-60.598 107.222-60.547Q107.269-60.496 107.269-60.426Q107.269-60.348 107.220-60.299Q107.171-60.250 107.101-60.243M107.101-61.930L101.788-61.930Q101.710-61.938 101.661-61.987Q101.612-62.036 101.612-62.114Q101.612-62.184 101.659-62.235Q101.706-62.286 101.788-62.297L107.101-62.297Q107.175-62.286 107.222-62.235Q107.269-62.184 107.269-62.114Q107.269-62.036 107.220-61.987Q107.171-61.938 107.101-61.930M109.870-59.098Q109.167-59.098 108.767-59.498Q108.366-59.899 108.222-60.508Q108.077-61.118 108.077-61.817Q108.077-62.340 108.147-62.803Q108.218-63.266 108.411-63.678Q108.604-64.090 108.962-64.338Q109.319-64.586 109.870-64.586Q110.421-64.586 110.778-64.338Q111.136-64.090 111.327-63.680Q111.519-63.270 111.589-62.801Q111.659-62.332 111.659-61.817Q111.659-61.118 111.517-60.510Q111.374-59.903 110.974-59.500Q110.573-59.098 109.870-59.098M109.870-59.356Q110.343-59.356 110.575-59.791Q110.808-60.227 110.862-60.766Q110.917-61.305 110.917-61.946Q110.917-62.942 110.733-63.635Q110.550-64.328 109.870-64.328Q109.503-64.328 109.282-64.090Q109.061-63.852 108.966-63.495Q108.870-63.137 108.845-62.766Q108.819-62.395 108.819-61.946Q108.819-61.305 108.874-60.766Q108.929-60.227 109.161-59.791Q109.394-59.356 109.870-59.356M112.714-59.731Q112.714-59.914 112.851-60.051Q112.987-60.188 113.179-60.188Q113.370-60.188 113.503-60.055Q113.636-59.922 113.636-59.731Q113.636-59.532 113.503-59.399Q113.370-59.266 113.179-59.266Q112.987-59.266 112.851-59.403Q112.714-59.539 112.714-59.731M112.714-62.258Q112.714-62.442 112.851-62.578Q112.987-62.715 113.179-62.715Q113.370-62.715 113.503-62.582Q113.636-62.450 113.636-62.258Q113.636-62.059 113.503-61.926Q113.370-61.793 113.179-61.793Q112.987-61.793 112.851-61.930Q112.714-62.067 112.714-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M120.313-59.266L118.457-59.266L118.457-59.563Q118.731-59.563 118.899-59.610Q119.067-59.657 119.067-59.825L119.067-61.961Q119.067-62.176 119.004-62.272Q118.942-62.368 118.823-62.389Q118.704-62.411 118.457-62.411L118.457-62.707L119.649-62.793L119.649-62.059Q119.762-62.274 119.956-62.442Q120.149-62.610 120.387-62.702Q120.625-62.793 120.879-62.793Q122.047-62.793 122.047-61.715L122.047-59.825Q122.047-59.657 122.217-59.610Q122.387-59.563 122.657-59.563L122.657-59.266L120.801-59.266L120.801-59.563Q121.075-59.563 121.243-59.610Q121.411-59.657 121.411-59.825L121.411-61.700Q121.411-62.082 121.290-62.311Q121.168-62.539 120.817-62.539Q120.504-62.539 120.250-62.377Q119.997-62.215 119.850-61.946Q119.704-61.676 119.704-61.379L119.704-59.825Q119.704-59.657 119.874-59.610Q120.043-59.563 120.313-59.563L120.313-59.266M123.102-60.961Q123.102-61.465 123.358-61.897Q123.614-62.328 124.049-62.580Q124.485-62.832 124.985-62.832Q125.372-62.832 125.713-62.688Q126.055-62.543 126.317-62.282Q126.579-62.020 126.721-61.684Q126.864-61.348 126.864-60.961Q126.864-60.469 126.600-60.059Q126.336-59.649 125.907-59.418Q125.477-59.188 124.985-59.188Q124.493-59.188 124.059-59.420Q123.625-59.653 123.364-60.061Q123.102-60.469 123.102-60.961M124.985-59.465Q125.442-59.465 125.694-59.688Q125.946-59.911 126.034-60.262Q126.122-60.614 126.122-61.059Q126.122-61.489 126.028-61.827Q125.934-62.164 125.680-62.371Q125.426-62.578 124.985-62.578Q124.336-62.578 124.092-62.162Q123.848-61.746 123.848-61.059Q123.848-60.614 123.936-60.262Q124.024-59.911 124.276-59.688Q124.528-59.465 124.985-59.465\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M130.287-60.098Q130.287-60.582 130.689-60.877Q131.092-61.172 131.642-61.291Q132.193-61.411 132.685-61.411L132.685-61.700Q132.685-61.926 132.570-62.133Q132.455-62.340 132.258-62.459Q132.060-62.578 131.830-62.578Q131.404-62.578 131.119-62.473Q131.189-62.446 131.236-62.391Q131.283-62.336 131.308-62.266Q131.334-62.196 131.334-62.121Q131.334-62.016 131.283-61.924Q131.232-61.832 131.140-61.782Q131.049-61.731 130.943-61.731Q130.838-61.731 130.746-61.782Q130.654-61.832 130.603-61.924Q130.553-62.016 130.553-62.121Q130.553-62.539 130.941-62.686Q131.330-62.832 131.830-62.832Q132.162-62.832 132.515-62.702Q132.869-62.571 133.097-62.317Q133.326-62.063 133.326-61.715L133.326-59.914Q133.326-59.782 133.398-59.672Q133.471-59.563 133.599-59.563Q133.724-59.563 133.793-59.668Q133.861-59.774 133.861-59.914L133.861-60.426L134.142-60.426L134.142-59.914Q134.142-59.711 134.025-59.553Q133.908-59.395 133.726-59.311Q133.545-59.227 133.342-59.227Q133.111-59.227 132.959-59.399Q132.806-59.571 132.775-59.801Q132.615-59.520 132.306-59.354Q131.998-59.188 131.646-59.188Q131.135-59.188 130.711-59.411Q130.287-59.633 130.287-60.098M130.974-60.098Q130.974-59.813 131.201-59.627Q131.428-59.442 131.721-59.442Q131.967-59.442 132.191-59.559Q132.416-59.676 132.551-59.879Q132.685-60.082 132.685-60.336L132.685-61.168Q132.420-61.168 132.135-61.114Q131.849-61.059 131.578-60.930Q131.306-60.801 131.140-60.594Q130.974-60.387 130.974-60.098M134.478-60.993Q134.478-61.489 134.728-61.914Q134.978-62.340 135.398-62.586Q135.818-62.832 136.318-62.832Q136.857-62.832 137.248-62.707Q137.638-62.582 137.638-62.168Q137.638-62.063 137.588-61.971Q137.537-61.879 137.445-61.828Q137.353-61.778 137.244-61.778Q137.138-61.778 137.047-61.828Q136.955-61.879 136.904-61.971Q136.853-62.063 136.853-62.168Q136.853-62.391 137.021-62.496Q136.799-62.555 136.326-62.555Q136.029-62.555 135.814-62.416Q135.599-62.278 135.469-62.047Q135.338-61.817 135.279-61.547Q135.221-61.278 135.221-60.993Q135.221-60.598 135.353-60.248Q135.486-59.899 135.758-59.682Q136.029-59.465 136.428-59.465Q136.803-59.465 137.078-59.682Q137.353-59.899 137.455-60.258Q137.471-60.321 137.533-60.321L137.638-60.321Q137.674-60.321 137.699-60.293Q137.724-60.266 137.724-60.227L137.724-60.203Q137.592-59.723 137.207-59.455Q136.822-59.188 136.318-59.188Q135.955-59.188 135.621-59.325Q135.287-59.461 135.027-59.711Q134.767-59.961 134.623-60.297Q134.478-60.633 134.478-60.993M138.256-60.993Q138.256-61.489 138.506-61.914Q138.756-62.340 139.176-62.586Q139.596-62.832 140.096-62.832Q140.635-62.832 141.025-62.707Q141.416-62.582 141.416-62.168Q141.416-62.063 141.365-61.971Q141.314-61.879 141.222-61.828Q141.131-61.778 141.021-61.778Q140.916-61.778 140.824-61.828Q140.732-61.879 140.681-61.971Q140.631-62.063 140.631-62.168Q140.631-62.391 140.799-62.496Q140.576-62.555 140.103-62.555Q139.806-62.555 139.592-62.416Q139.377-62.278 139.246-62.047Q139.115-61.817 139.056-61.547Q138.998-61.278 138.998-60.993Q138.998-60.598 139.131-60.248Q139.263-59.899 139.535-59.682Q139.806-59.465 140.205-59.465Q140.580-59.465 140.855-59.682Q141.131-59.899 141.232-60.258Q141.248-60.321 141.310-60.321L141.416-60.321Q141.451-60.321 141.476-60.293Q141.502-60.266 141.502-60.227L141.502-60.203Q141.369-59.723 140.984-59.455Q140.599-59.188 140.096-59.188Q139.732-59.188 139.398-59.325Q139.064-59.461 138.805-59.711Q138.545-59.961 138.400-60.297Q138.256-60.633 138.256-60.993M141.990-61.020Q141.990-61.500 142.222-61.916Q142.455-62.332 142.865-62.582Q143.275-62.832 143.752-62.832Q144.482-62.832 144.881-62.391Q145.279-61.950 145.279-61.219Q145.279-61.114 145.185-61.090L142.736-61.090L142.736-61.020Q142.736-60.610 142.857-60.254Q142.978-59.899 143.250-59.682Q143.521-59.465 143.951-59.465Q144.314-59.465 144.611-59.694Q144.908-59.922 145.010-60.274Q145.017-60.321 145.103-60.336L145.185-60.336Q145.279-60.309 145.279-60.227Q145.279-60.219 145.271-60.188Q145.209-59.961 145.070-59.778Q144.931-59.594 144.740-59.461Q144.549-59.328 144.330-59.258Q144.111-59.188 143.873-59.188Q143.502-59.188 143.164-59.325Q142.826-59.461 142.558-59.713Q142.291-59.965 142.140-60.305Q141.990-60.645 141.990-61.020M142.744-61.328L144.705-61.328Q144.705-61.633 144.603-61.924Q144.502-62.215 144.285-62.397Q144.068-62.578 143.752-62.578Q143.451-62.578 143.221-62.391Q142.990-62.203 142.867-61.912Q142.744-61.621 142.744-61.328M145.810-59.274L145.810-60.496Q145.810-60.524 145.842-60.555Q145.873-60.586 145.896-60.586L146.002-60.586Q146.072-60.586 146.088-60.524Q146.150-60.203 146.289-59.963Q146.428-59.723 146.660-59.582Q146.892-59.442 147.201-59.442Q147.439-59.442 147.648-59.502Q147.857-59.563 147.994-59.711Q148.131-59.860 148.131-60.106Q148.131-60.360 147.920-60.526Q147.709-60.692 147.439-60.746L146.818-60.860Q146.412-60.938 146.111-61.194Q145.810-61.450 145.810-61.825Q145.810-62.192 146.012-62.414Q146.213-62.637 146.537-62.735Q146.861-62.832 147.201-62.832Q147.666-62.832 147.963-62.625L148.185-62.809Q148.209-62.832 148.240-62.832L148.291-62.832Q148.322-62.832 148.349-62.805Q148.377-62.778 148.377-62.746L148.377-61.762Q148.377-61.731 148.351-61.702Q148.326-61.672 148.291-61.672L148.185-61.672Q148.150-61.672 148.123-61.700Q148.096-61.727 148.096-61.762Q148.096-62.161 147.844-62.381Q147.592-62.602 147.193-62.602Q146.838-62.602 146.555-62.479Q146.271-62.356 146.271-62.051Q146.271-61.832 146.472-61.700Q146.674-61.567 146.920-61.524L147.545-61.411Q147.974-61.321 148.283-61.024Q148.592-60.727 148.592-60.313Q148.592-59.743 148.193-59.465Q147.795-59.188 147.201-59.188Q146.650-59.188 146.299-59.524L146.002-59.211Q145.978-59.188 145.943-59.188L145.896-59.188Q145.873-59.188 145.842-59.219Q145.810-59.250 145.810-59.274M149.162-59.274L149.162-60.496Q149.162-60.524 149.193-60.555Q149.224-60.586 149.248-60.586L149.353-60.586Q149.424-60.586 149.439-60.524Q149.502-60.203 149.640-59.963Q149.779-59.723 150.012-59.582Q150.244-59.442 150.553-59.442Q150.791-59.442 151-59.502Q151.209-59.563 151.346-59.711Q151.482-59.860 151.482-60.106Q151.482-60.360 151.271-60.526Q151.060-60.692 150.791-60.746L150.170-60.860Q149.763-60.938 149.463-61.194Q149.162-61.450 149.162-61.825Q149.162-62.192 149.363-62.414Q149.564-62.637 149.888-62.735Q150.213-62.832 150.553-62.832Q151.017-62.832 151.314-62.625L151.537-62.809Q151.560-62.832 151.592-62.832L151.642-62.832Q151.674-62.832 151.701-62.805Q151.728-62.778 151.728-62.746L151.728-61.762Q151.728-61.731 151.703-61.702Q151.678-61.672 151.642-61.672L151.537-61.672Q151.502-61.672 151.474-61.700Q151.447-61.727 151.447-61.762Q151.447-62.161 151.195-62.381Q150.943-62.602 150.545-62.602Q150.189-62.602 149.906-62.479Q149.623-62.356 149.623-62.051Q149.623-61.832 149.824-61.700Q150.025-61.567 150.271-61.524L150.896-61.411Q151.326-61.321 151.635-61.024Q151.943-60.727 151.943-60.313Q151.943-59.743 151.545-59.465Q151.146-59.188 150.553-59.188Q150.002-59.188 149.650-59.524L149.353-59.211Q149.330-59.188 149.295-59.188L149.248-59.188Q149.224-59.188 149.193-59.219Q149.162-59.250 149.162-59.274M153.056-57.860Q153.056-57.883 153.088-57.930Q153.381-58.192 153.547-58.559Q153.713-58.926 153.713-59.313L153.713-59.371Q153.584-59.266 153.416-59.266Q153.224-59.266 153.088-59.399Q152.951-59.532 152.951-59.731Q152.951-59.922 153.088-60.055Q153.224-60.188 153.416-60.188Q153.717-60.188 153.842-59.918Q153.967-59.649 153.967-59.313Q153.967-58.864 153.785-58.450Q153.603-58.036 153.263-57.739Q153.240-57.715 153.201-57.715Q153.154-57.715 153.105-57.760Q153.056-57.805 153.056-57.860\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M159.473-59.297L158.250-62.153Q158.168-62.328 158.024-62.373Q157.879-62.418 157.610-62.418L157.610-62.715L159.321-62.715L159.321-62.418Q158.899-62.418 158.899-62.235Q158.899-62.200 158.914-62.153L159.860-59.961L160.700-61.938Q160.739-62.016 160.739-62.106Q160.739-62.246 160.633-62.332Q160.528-62.418 160.387-62.418L160.387-62.715L161.739-62.715L161.739-62.418Q161.215-62.418 161-61.938L159.875-59.297Q159.813-59.188 159.707-59.188L159.641-59.188Q159.528-59.188 159.473-59.297\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M161.784-60.098Q161.784-60.582 162.186-60.877Q162.589-61.172 163.139-61.291Q163.690-61.411 164.182-61.411L164.182-61.700Q164.182-61.926 164.067-62.133Q163.952-62.340 163.755-62.459Q163.557-62.578 163.327-62.578Q162.901-62.578 162.616-62.473Q162.686-62.446 162.733-62.391Q162.780-62.336 162.805-62.266Q162.831-62.196 162.831-62.121Q162.831-62.016 162.780-61.924Q162.729-61.832 162.637-61.782Q162.546-61.731 162.440-61.731Q162.335-61.731 162.243-61.782Q162.151-61.832 162.100-61.924Q162.050-62.016 162.050-62.121Q162.050-62.539 162.438-62.686Q162.827-62.832 163.327-62.832Q163.659-62.832 164.012-62.702Q164.366-62.571 164.594-62.317Q164.823-62.063 164.823-61.715L164.823-59.914Q164.823-59.782 164.895-59.672Q164.968-59.563 165.096-59.563Q165.221-59.563 165.290-59.668Q165.358-59.774 165.358-59.914L165.358-60.426L165.639-60.426L165.639-59.914Q165.639-59.711 165.522-59.553Q165.405-59.395 165.223-59.311Q165.042-59.227 164.839-59.227Q164.608-59.227 164.456-59.399Q164.303-59.571 164.272-59.801Q164.112-59.520 163.803-59.354Q163.495-59.188 163.143-59.188Q162.632-59.188 162.208-59.411Q161.784-59.633 161.784-60.098M162.471-60.098Q162.471-59.813 162.698-59.627Q162.925-59.442 163.218-59.442Q163.464-59.442 163.688-59.559Q163.913-59.676 164.048-59.879Q164.182-60.082 164.182-60.336L164.182-61.168Q163.917-61.168 163.632-61.114Q163.346-61.059 163.075-60.930Q162.803-60.801 162.637-60.594Q162.471-60.387 162.471-60.098M167.846-59.266L166.014-59.266L166.014-59.563Q166.288-59.563 166.456-59.610Q166.624-59.657 166.624-59.825L166.624-63.985Q166.624-64.200 166.561-64.295Q166.499-64.391 166.380-64.412Q166.261-64.434 166.014-64.434L166.014-64.731L167.237-64.817L167.237-59.825Q167.237-59.657 167.405-59.610Q167.573-59.563 167.846-59.563L167.846-59.266M170.350-59.266L168.428-59.266L168.428-59.563Q169.237-59.563 169.237-60.043L169.237-64.168Q169.237-64.340 168.995-64.387Q168.753-64.434 168.428-64.434L168.428-64.731L169.925-64.731Q170.034-64.731 170.093-64.618L171.940-60.075L173.780-64.618Q173.843-64.731 173.948-64.731L175.452-64.731L175.452-64.434Q175.132-64.434 174.889-64.387Q174.647-64.340 174.647-64.168L174.647-59.825Q174.647-59.657 174.889-59.610Q175.132-59.563 175.452-59.563L175.452-59.266L173.151-59.266L173.151-59.563Q173.956-59.563 173.956-59.825L173.956-64.418L171.909-59.379Q171.874-59.266 171.741-59.266Q171.600-59.266 171.565-59.379L169.542-64.356L169.542-60.043Q169.542-59.563 170.350-59.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M179.598-60.219L179.598-61.961Q179.598-62.176 179.535-62.272Q179.473-62.368 179.354-62.389Q179.235-62.411 178.988-62.411L178.988-62.707L180.235-62.793L180.235-60.243L180.235-60.219Q180.235-59.907 180.289-59.745Q180.344-59.582 180.494-59.512Q180.645-59.442 180.965-59.442Q181.395-59.442 181.668-59.780Q181.942-60.118 181.942-60.563L181.942-61.961Q181.942-62.176 181.879-62.272Q181.817-62.368 181.697-62.389Q181.578-62.411 181.332-62.411L181.332-62.707L182.578-62.793L182.578-60.008Q182.578-59.797 182.641-59.702Q182.703-59.606 182.822-59.584Q182.942-59.563 183.188-59.563L183.188-59.266L181.965-59.188L181.965-59.809Q181.797-59.520 181.516-59.354Q181.235-59.188 180.914-59.188Q179.598-59.188 179.598-60.219M185.563-59.266L183.707-59.266L183.707-59.563Q183.981-59.563 184.149-59.610Q184.317-59.657 184.317-59.825L184.317-61.961Q184.317-62.176 184.254-62.272Q184.192-62.368 184.072-62.389Q183.953-62.411 183.707-62.411L183.707-62.707L184.899-62.793L184.899-62.059Q185.012-62.274 185.205-62.442Q185.399-62.610 185.637-62.702Q185.875-62.793 186.129-62.793Q187.297-62.793 187.297-61.715L187.297-59.825Q187.297-59.657 187.467-59.610Q187.637-59.563 187.906-59.563L187.906-59.266L186.051-59.266L186.051-59.563Q186.324-59.563 186.492-59.610Q186.660-59.657 186.660-59.825L186.660-61.700Q186.660-62.082 186.539-62.311Q186.418-62.539 186.067-62.539Q185.754-62.539 185.500-62.377Q185.246-62.215 185.100-61.946Q184.953-61.676 184.953-61.379L184.953-59.825Q184.953-59.657 185.123-59.610Q185.293-59.563 185.563-59.563L185.563-59.266M190.168-59.188Q189.688-59.188 189.280-59.432Q188.871-59.676 188.633-60.090Q188.395-60.504 188.395-60.993Q188.395-61.485 188.653-61.901Q188.910-62.317 189.342-62.555Q189.774-62.793 190.266-62.793Q190.887-62.793 191.336-62.356L191.336-63.985Q191.336-64.200 191.274-64.295Q191.211-64.391 191.094-64.412Q190.977-64.434 190.731-64.434L190.731-64.731L191.953-64.817L191.953-60.008Q191.953-59.797 192.016-59.702Q192.078-59.606 192.196-59.584Q192.313-59.563 192.563-59.563L192.563-59.266L191.313-59.188L191.313-59.672Q190.848-59.188 190.168-59.188M190.235-59.442Q190.574-59.442 190.867-59.633Q191.160-59.825 191.313-60.121L191.313-61.953Q191.164-62.227 190.903-62.383Q190.641-62.539 190.328-62.539Q189.703-62.539 189.420-62.092Q189.137-61.645 189.137-60.985Q189.137-60.340 189.389-59.891Q189.641-59.442 190.235-59.442M193.071-61.020Q193.071-61.500 193.303-61.916Q193.535-62.332 193.946-62.582Q194.356-62.832 194.832-62.832Q195.563-62.832 195.961-62.391Q196.360-61.950 196.360-61.219Q196.360-61.114 196.266-61.090L193.817-61.090L193.817-61.020Q193.817-60.610 193.938-60.254Q194.059-59.899 194.330-59.682Q194.602-59.465 195.031-59.465Q195.395-59.465 195.692-59.694Q195.988-59.922 196.090-60.274Q196.098-60.321 196.184-60.336L196.266-60.336Q196.360-60.309 196.360-60.227Q196.360-60.219 196.352-60.188Q196.289-59.961 196.151-59.778Q196.012-59.594 195.821-59.461Q195.629-59.328 195.410-59.258Q195.192-59.188 194.953-59.188Q194.582-59.188 194.244-59.325Q193.906-59.461 193.639-59.713Q193.371-59.965 193.221-60.305Q193.071-60.645 193.071-61.020M193.824-61.328L195.785-61.328Q195.785-61.633 195.684-61.924Q195.582-62.215 195.365-62.397Q195.149-62.578 194.832-62.578Q194.531-62.578 194.301-62.391Q194.071-62.203 193.947-61.912Q193.824-61.621 193.824-61.328M198.914-59.266L196.930-59.266L196.930-59.563Q197.203-59.563 197.371-59.610Q197.539-59.657 197.539-59.825L197.539-62.418L196.899-62.418L196.899-62.715L197.539-62.715L197.539-63.649Q197.539-63.914 197.656-64.151Q197.774-64.387 197.967-64.551Q198.160-64.715 198.408-64.807Q198.656-64.899 198.922-64.899Q199.207-64.899 199.432-64.741Q199.656-64.582 199.656-64.305Q199.656-64.149 199.551-64.039Q199.446-63.930 199.281-63.930Q199.125-63.930 199.016-64.039Q198.906-64.149 198.906-64.305Q198.906-64.512 199.067-64.618Q198.969-64.641 198.875-64.641Q198.645-64.641 198.473-64.485Q198.301-64.328 198.215-64.092Q198.129-63.856 198.129-63.633L198.129-62.715L199.098-62.715L199.098-62.418L198.153-62.418L198.153-59.825Q198.153-59.657 198.379-59.610Q198.606-59.563 198.914-59.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M201.948-59.266L200.170-59.266L200.170-59.563Q200.444-59.563 200.612-59.610Q200.780-59.657 200.780-59.825L200.780-61.961Q200.780-62.176 200.723-62.272Q200.666-62.368 200.553-62.389Q200.440-62.411 200.194-62.411L200.194-62.707L201.393-62.793L201.393-59.825Q201.393-59.657 201.539-59.610Q201.686-59.563 201.948-59.563L201.948-59.266M200.506-64.188Q200.506-64.379 200.641-64.510Q200.776-64.641 200.971-64.641Q201.092-64.641 201.196-64.578Q201.299-64.516 201.362-64.412Q201.424-64.309 201.424-64.188Q201.424-63.993 201.293-63.858Q201.162-63.723 200.971-63.723Q200.772-63.723 200.639-63.856Q200.506-63.989 200.506-64.188M204.377-59.266L202.522-59.266L202.522-59.563Q202.795-59.563 202.963-59.610Q203.131-59.657 203.131-59.825L203.131-61.961Q203.131-62.176 203.069-62.272Q203.006-62.368 202.887-62.389Q202.768-62.411 202.522-62.411L202.522-62.707L203.713-62.793L203.713-62.059Q203.827-62.274 204.020-62.442Q204.213-62.610 204.452-62.702Q204.690-62.793 204.944-62.793Q206.112-62.793 206.112-61.715L206.112-59.825Q206.112-59.657 206.282-59.610Q206.452-59.563 206.721-59.563L206.721-59.266L204.866-59.266L204.866-59.563Q205.139-59.563 205.307-59.610Q205.475-59.657 205.475-59.825L205.475-61.700Q205.475-62.082 205.354-62.311Q205.233-62.539 204.881-62.539Q204.569-62.539 204.315-62.377Q204.061-62.215 203.914-61.946Q203.768-61.676 203.768-61.379L203.768-59.825Q203.768-59.657 203.938-59.610Q204.108-59.563 204.377-59.563L204.377-59.266M207.166-61.020Q207.166-61.500 207.399-61.916Q207.631-62.332 208.041-62.582Q208.452-62.832 208.928-62.832Q209.659-62.832 210.057-62.391Q210.455-61.950 210.455-61.219Q210.455-61.114 210.362-61.090L207.912-61.090L207.912-61.020Q207.912-60.610 208.034-60.254Q208.155-59.899 208.426-59.682Q208.698-59.465 209.127-59.465Q209.491-59.465 209.787-59.694Q210.084-59.922 210.186-60.274Q210.194-60.321 210.280-60.336L210.362-60.336Q210.455-60.309 210.455-60.227Q210.455-60.219 210.448-60.188Q210.385-59.961 210.246-59.778Q210.108-59.594 209.916-59.461Q209.725-59.328 209.506-59.258Q209.287-59.188 209.049-59.188Q208.678-59.188 208.340-59.325Q208.002-59.461 207.735-59.713Q207.467-59.965 207.317-60.305Q207.166-60.645 207.166-61.020M207.920-61.328L209.881-61.328Q209.881-61.633 209.780-61.924Q209.678-62.215 209.461-62.397Q209.245-62.578 208.928-62.578Q208.627-62.578 208.397-62.391Q208.166-62.203 208.043-61.912Q207.920-61.621 207.920-61.328M212.760-59.188Q212.280-59.188 211.871-59.432Q211.463-59.676 211.225-60.090Q210.987-60.504 210.987-60.993Q210.987-61.485 211.245-61.901Q211.502-62.317 211.934-62.555Q212.366-62.793 212.858-62.793Q213.479-62.793 213.928-62.356L213.928-63.985Q213.928-64.200 213.866-64.295Q213.803-64.391 213.686-64.412Q213.569-64.434 213.323-64.434L213.323-64.731L214.545-64.817L214.545-60.008Q214.545-59.797 214.608-59.702Q214.670-59.606 214.787-59.584Q214.905-59.563 215.155-59.563L215.155-59.266L213.905-59.188L213.905-59.672Q213.440-59.188 212.760-59.188M212.827-59.442Q213.166-59.442 213.459-59.633Q213.752-59.825 213.905-60.121L213.905-61.953Q213.756-62.227 213.495-62.383Q213.233-62.539 212.920-62.539Q212.295-62.539 212.012-62.092Q211.729-61.645 211.729-60.985Q211.729-60.340 211.981-59.891Q212.233-59.442 212.827-59.442\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 25.238h404.029\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-44.497 99.17)\">\u003Cpath d=\"M10.967-59.225L9.415-63.556Q9.353-63.699 9.191-63.733Q9.029-63.767 8.776-63.767L8.776-64.048L10.703-64.048L10.703-63.767Q10.122-63.767 10.122-63.593Q10.122-63.573 10.129-63.556L11.353-60.120L12.460-63.207L12.334-63.556Q12.276-63.699 12.110-63.733Q11.944-63.767 11.695-63.767L11.695-64.048L13.622-64.048L13.622-63.767Q13.041-63.767 13.041-63.593L13.041-63.556L14.272-60.120L15.427-63.368Q15.441-63.409 15.441-63.433Q15.441-63.607 15.248-63.687Q15.054-63.767 14.846-63.767L14.846-64.048L16.422-64.048L16.422-63.767Q16.172-63.767 15.981-63.673Q15.789-63.579 15.714-63.368L14.231-59.225Q14.197-59.126 14.097-59.126L14.019-59.126Q13.920-59.126 13.879-59.225L12.600-62.814L11.319-59.225Q11.302-59.181 11.264-59.153Q11.226-59.126 11.178-59.126L11.100-59.126Q11.008-59.126 10.967-59.225\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.497 99.17)\">\u003Cpath d=\"M18.048-59.266L16.312-59.266L16.312-59.546Q16.541-59.546 16.690-59.580Q16.838-59.615 16.838-59.755L16.838-61.604Q16.838-61.874 16.731-61.935Q16.623-61.997 16.312-61.997L16.312-62.277L17.341-62.352L17.341-61.645Q17.471-61.953 17.713-62.152Q17.956-62.352 18.274-62.352Q18.493-62.352 18.664-62.228Q18.835-62.103 18.835-61.891Q18.835-61.754 18.735-61.655Q18.636-61.556 18.503-61.556Q18.366-61.556 18.267-61.655Q18.168-61.754 18.168-61.891Q18.168-62.031 18.267-62.130Q17.977-62.130 17.777-61.934Q17.577-61.737 17.484-61.443Q17.392-61.149 17.392-60.869L17.392-59.755Q17.392-59.546 18.048-59.546L18.048-59.266M21.036-59.266L19.484-59.266L19.484-59.546Q19.710-59.546 19.858-59.580Q20.007-59.615 20.007-59.755L20.007-61.604Q20.007-61.792 19.959-61.876Q19.911-61.959 19.814-61.978Q19.716-61.997 19.505-61.997L19.505-62.277L20.561-62.352L20.561-59.755Q20.561-59.615 20.692-59.580Q20.824-59.546 21.036-59.546L21.036-59.266M19.764-63.573Q19.764-63.744 19.887-63.863Q20.010-63.983 20.181-63.983Q20.349-63.983 20.472-63.863Q20.595-63.744 20.595-63.573Q20.595-63.398 20.472-63.275Q20.349-63.152 20.181-63.152Q20.010-63.152 19.887-63.275Q19.764-63.398 19.764-63.573M22.208-60.107L22.208-62.004L21.569-62.004L21.569-62.226Q21.887-62.226 22.104-62.436Q22.321-62.646 22.422-62.956Q22.523-63.265 22.523-63.573L22.789-63.573L22.789-62.284L23.866-62.284L23.866-62.004L22.789-62.004L22.789-60.120Q22.789-59.844 22.893-59.645Q22.998-59.447 23.257-59.447Q23.415-59.447 23.521-59.551Q23.627-59.656 23.676-59.809Q23.726-59.963 23.726-60.120L23.726-60.534L23.992-60.534L23.992-60.107Q23.992-59.881 23.893-59.671Q23.794-59.461 23.609-59.329Q23.425-59.198 23.196-59.198Q22.758-59.198 22.483-59.435Q22.208-59.673 22.208-60.107M24.761-60.801Q24.761-61.122 24.886-61.411Q25.011-61.700 25.236-61.923Q25.462-62.147 25.758-62.267Q26.053-62.387 26.371-62.387Q26.699-62.387 26.961-62.287Q27.222-62.188 27.398-62.006Q27.574-61.823 27.668-61.565Q27.762-61.307 27.762-60.975Q27.762-60.883 27.680-60.862L25.424-60.862L25.424-60.801Q25.424-60.213 25.708-59.830Q25.992-59.447 26.559-59.447Q26.880-59.447 27.149-59.640Q27.417-59.833 27.506-60.148Q27.513-60.189 27.588-60.203L27.680-60.203Q27.762-60.179 27.762-60.107Q27.762-60.100 27.755-60.073Q27.643-59.676 27.272-59.437Q26.901-59.198 26.477-59.198Q26.040-59.198 25.640-59.406Q25.240-59.615 25.001-59.982Q24.761-60.349 24.761-60.801M25.431-61.071L27.246-61.071Q27.246-61.348 27.149-61.600Q27.051-61.853 26.853-62.009Q26.655-62.164 26.371-62.164Q26.094-62.164 25.881-62.006Q25.667-61.847 25.549-61.592Q25.431-61.337 25.431-61.071M30.234-60.520L28.176-60.520L28.176-61.023L30.234-61.023L30.234-60.520M31.843-59.266L31.577-59.266L31.577-63.374Q31.577-63.644 31.469-63.706Q31.361-63.767 31.050-63.767L31.050-64.048L32.130-64.123L32.130-61.953Q32.339-62.144 32.624-62.248Q32.910-62.352 33.207-62.352Q33.525-62.352 33.822-62.231Q34.120-62.110 34.342-61.894Q34.564-61.679 34.691-61.394Q34.817-61.108 34.817-60.777Q34.817-60.332 34.578-59.968Q34.338-59.604 33.945-59.401Q33.552-59.198 33.108-59.198Q32.913-59.198 32.724-59.254Q32.534-59.310 32.373-59.415Q32.213-59.519 32.072-59.680L31.843-59.266M32.158-61.611L32.158-59.994Q32.295-59.734 32.536-59.577Q32.776-59.420 33.053-59.420Q33.347-59.420 33.559-59.527Q33.771-59.635 33.904-59.827Q34.038-60.018 34.096-60.257Q34.154-60.496 34.154-60.777Q34.154-61.136 34.060-61.440Q33.966-61.744 33.739-61.937Q33.511-62.130 33.146-62.130Q32.845-62.130 32.578-61.994Q32.312-61.857 32.158-61.611M35.511-59.994Q35.511-60.326 35.735-60.553Q35.959-60.780 36.302-60.908Q36.646-61.037 37.018-61.089Q37.391-61.142 37.695-61.142L37.695-61.395Q37.695-61.600 37.587-61.780Q37.480-61.959 37.298-62.062Q37.117-62.164 36.909-62.164Q36.502-62.164 36.266-62.072Q36.355-62.035 36.401-61.951Q36.447-61.867 36.447-61.765Q36.447-61.669 36.401-61.590Q36.355-61.512 36.275-61.467Q36.194-61.423 36.106-61.423Q35.955-61.423 35.854-61.520Q35.754-61.618 35.754-61.765Q35.754-62.387 36.909-62.387Q37.121-62.387 37.370-62.323Q37.620-62.260 37.821-62.141Q38.023-62.021 38.150-61.836Q38.276-61.652 38.276-61.409L38.276-59.833Q38.276-59.717 38.338-59.621Q38.399-59.526 38.512-59.526Q38.621-59.526 38.686-59.620Q38.751-59.714 38.751-59.833L38.751-60.281L39.018-60.281L39.018-59.833Q39.018-59.563 38.790-59.398Q38.563-59.232 38.283-59.232Q38.074-59.232 37.938-59.386Q37.801-59.539 37.777-59.755Q37.630-59.488 37.348-59.343Q37.066-59.198 36.741-59.198Q36.464-59.198 36.181-59.273Q35.897-59.348 35.704-59.527Q35.511-59.707 35.511-59.994M36.126-59.994Q36.126-59.820 36.227-59.690Q36.328-59.560 36.483-59.490Q36.639-59.420 36.803-59.420Q37.022-59.420 37.230-59.517Q37.439-59.615 37.567-59.796Q37.695-59.977 37.695-60.203L37.695-60.931Q37.370-60.931 37.005-60.840Q36.639-60.749 36.382-60.537Q36.126-60.326 36.126-59.994M39.435-60.777Q39.435-61.105 39.570-61.406Q39.705-61.706 39.941-61.927Q40.176-62.147 40.481-62.267Q40.785-62.387 41.109-62.387Q41.615-62.387 41.964-62.284Q42.313-62.182 42.313-61.806Q42.313-61.659 42.215-61.558Q42.118-61.457 41.971-61.457Q41.817-61.457 41.718-61.556Q41.619-61.655 41.619-61.806Q41.619-61.994 41.759-62.086Q41.557-62.137 41.116-62.137Q40.761-62.137 40.532-61.941Q40.303-61.744 40.202-61.435Q40.101-61.125 40.101-60.777Q40.101-60.428 40.228-60.122Q40.354-59.816 40.609-59.632Q40.863-59.447 41.219-59.447Q41.441-59.447 41.626-59.531Q41.810-59.615 41.945-59.770Q42.080-59.926 42.138-60.134Q42.152-60.189 42.207-60.189L42.319-60.189Q42.350-60.189 42.372-60.165Q42.395-60.141 42.395-60.107L42.395-60.086Q42.309-59.799 42.121-59.601Q41.933-59.403 41.668-59.300Q41.403-59.198 41.109-59.198Q40.679-59.198 40.291-59.404Q39.903-59.611 39.669-59.974Q39.435-60.336 39.435-60.777\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.497 99.17)\">\u003Cpath d=\"M44.402-59.266L42.819-59.266L42.819-59.546Q43.048-59.546 43.197-59.580Q43.345-59.615 43.345-59.755L43.345-63.374Q43.345-63.644 43.238-63.706Q43.130-63.767 42.819-63.767L42.819-64.048L43.899-64.123L43.899-60.835L44.884-61.604Q45.089-61.741 45.089-61.891Q45.089-61.935 45.048-61.970Q45.007-62.004 44.962-62.004L44.962-62.284L46.326-62.284L46.326-62.004Q45.837-62.004 45.318-61.604L44.761-61.170L45.738-59.946Q45.940-59.700 46.073-59.623Q46.206-59.546 46.493-59.546L46.493-59.266L45.061-59.266L45.061-59.546Q45.249-59.546 45.249-59.659Q45.249-59.755 45.095-59.946L44.361-60.855L43.879-60.476L43.879-59.755Q43.879-59.618 44.027-59.582Q44.176-59.546 44.402-59.546\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M13.758-59.266L8.910-59.266L8.910-59.563Q9.230-59.563 9.474-59.610Q9.719-59.657 9.719-59.825L9.719-64.168Q9.719-64.340 9.474-64.387Q9.230-64.434 8.910-64.434L8.910-64.731L13.644-64.731L13.879-62.883L13.597-62.883Q13.515-63.578 13.340-63.899Q13.164-64.219 12.816-64.327Q12.469-64.434 11.750-64.434L10.886-64.434Q10.668-64.434 10.576-64.391Q10.484-64.348 10.484-64.168L10.484-62.250L11.117-62.250Q11.543-62.250 11.750-62.313Q11.957-62.375 12.045-62.571Q12.133-62.766 12.133-63.188L12.414-63.188L12.414-61.020L12.133-61.020Q12.133-61.442 12.045-61.635Q11.957-61.828 11.750-61.891Q11.543-61.953 11.117-61.953L10.484-61.953L10.484-59.825Q10.484-59.653 10.576-59.608Q10.668-59.563 10.886-59.563L11.812-59.563Q12.394-59.563 12.748-59.645Q13.101-59.727 13.306-59.924Q13.511-60.121 13.625-60.459Q13.738-60.797 13.832-61.379L14.109-61.379\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M19.309-57.715L17.454-57.715L17.454-58.008Q17.723-58.008 17.891-58.053Q18.059-58.098 18.059-58.274L18.059-62.098Q18.059-62.305 17.903-62.358Q17.747-62.411 17.454-62.411L17.454-62.707L18.676-62.793L18.676-62.328Q18.907-62.551 19.221-62.672Q19.536-62.793 19.875-62.793Q20.348-62.793 20.752-62.547Q21.157-62.301 21.389-61.885Q21.622-61.469 21.622-60.993Q21.622-60.618 21.473-60.289Q21.325-59.961 21.055-59.709Q20.786-59.457 20.442-59.323Q20.098-59.188 19.739-59.188Q19.450-59.188 19.178-59.309Q18.907-59.430 18.700-59.641L18.700-58.274Q18.700-58.098 18.868-58.053Q19.036-58.008 19.309-58.008L19.309-57.715M18.700-61.930L18.700-60.090Q18.852-59.801 19.114-59.621Q19.375-59.442 19.684-59.442Q19.969-59.442 20.192-59.580Q20.415-59.719 20.567-59.950Q20.719-60.180 20.797-60.452Q20.875-60.723 20.875-60.993Q20.875-61.325 20.750-61.682Q20.625-62.039 20.377-62.276Q20.129-62.512 19.782-62.512Q19.458-62.512 19.163-62.356Q18.868-62.200 18.700-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M22.384-60.961Q22.384-61.465 22.640-61.897Q22.896-62.328 23.332-62.580Q23.767-62.832 24.267-62.832Q24.654-62.832 24.996-62.688Q25.337-62.543 25.599-62.282Q25.861-62.020 26.003-61.684Q26.146-61.348 26.146-60.961Q26.146-60.469 25.882-60.059Q25.619-59.649 25.189-59.418Q24.759-59.188 24.267-59.188Q23.775-59.188 23.341-59.420Q22.908-59.653 22.646-60.061Q22.384-60.469 22.384-60.961M24.267-59.465Q24.724-59.465 24.976-59.688Q25.228-59.911 25.316-60.262Q25.404-60.614 25.404-61.059Q25.404-61.489 25.310-61.827Q25.216-62.164 24.962-62.371Q24.709-62.578 24.267-62.578Q23.619-62.578 23.375-62.162Q23.130-61.746 23.130-61.059Q23.130-60.614 23.218-60.262Q23.306-59.911 23.558-59.688Q23.810-59.465 24.267-59.465M28.638-59.266L26.658-59.266L26.658-59.563Q26.927-59.563 27.095-59.608Q27.263-59.653 27.263-59.825L27.263-61.961Q27.263-62.176 27.201-62.272Q27.138-62.368 27.021-62.389Q26.904-62.411 26.658-62.411L26.658-62.707L27.826-62.793L27.826-62.008Q27.904-62.219 28.056-62.405Q28.209-62.590 28.408-62.692Q28.607-62.793 28.834-62.793Q29.080-62.793 29.271-62.649Q29.462-62.504 29.462-62.274Q29.462-62.118 29.357-62.008Q29.251-61.899 29.095-61.899Q28.939-61.899 28.830-62.008Q28.720-62.118 28.720-62.274Q28.720-62.434 28.826-62.539Q28.501-62.539 28.287-62.311Q28.072-62.082 27.976-61.743Q27.880-61.403 27.880-61.098L27.880-59.825Q27.880-59.657 28.107-59.610Q28.334-59.563 28.638-59.563L28.638-59.266M30.568-60.227L30.568-62.418L29.865-62.418L29.865-62.672Q30.220-62.672 30.462-62.905Q30.705-63.137 30.816-63.485Q30.927-63.832 30.927-64.188L31.209-64.188L31.209-62.715L32.384-62.715L32.384-62.418L31.209-62.418L31.209-60.243Q31.209-59.922 31.328-59.694Q31.447-59.465 31.728-59.465Q31.908-59.465 32.025-59.588Q32.142-59.711 32.195-59.891Q32.248-60.071 32.248-60.243L32.248-60.715L32.529-60.715L32.529-60.227Q32.529-59.973 32.423-59.733Q32.318-59.493 32.121-59.340Q31.923-59.188 31.666-59.188Q31.349-59.188 31.097-59.311Q30.845-59.434 30.707-59.668Q30.568-59.903 30.568-60.227M33.728-59.731Q33.728-59.914 33.865-60.051Q34.001-60.188 34.193-60.188Q34.384-60.188 34.517-60.055Q34.650-59.922 34.650-59.731Q34.650-59.532 34.517-59.399Q34.384-59.266 34.193-59.266Q34.001-59.266 33.865-59.403Q33.728-59.539 33.728-59.731M33.728-62.258Q33.728-62.442 33.865-62.578Q34.001-62.715 34.193-62.715Q34.384-62.715 34.517-62.582Q34.650-62.450 34.650-62.258Q34.650-62.059 34.517-61.926Q34.384-61.793 34.193-61.793Q34.001-61.793 33.865-61.930Q33.728-62.067 33.728-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M41.779-59.266L39.642-59.266Q39.607-59.266 39.576-59.307Q39.545-59.348 39.545-59.395L39.568-59.496Q39.580-59.547 39.666-59.563Q40.107-59.563 40.265-59.602Q40.424-59.641 40.467-59.868L41.545-64.188Q41.568-64.258 41.568-64.321Q41.568-64.383 41.506-64.403Q41.361-64.434 40.939-64.434Q40.834-64.461 40.834-64.563L40.865-64.664Q40.873-64.711 40.955-64.731L43.467-64.731Q43.873-64.731 44.316-64.608Q44.759-64.485 45.064-64.209Q45.369-63.934 45.369-63.512Q45.369-63.125 45.099-62.809Q44.830-62.493 44.431-62.284Q44.033-62.075 43.658-61.985Q43.967-61.860 44.164-61.621Q44.361-61.383 44.361-61.067Q44.361-61.024 44.359-60.996Q44.357-60.969 44.353-60.938L44.275-60.243Q44.244-59.953 44.244-59.832Q44.244-59.618 44.312-59.487Q44.381-59.356 44.588-59.356Q44.842-59.356 45.037-59.580Q45.232-59.805 45.299-60.082Q45.306-60.129 45.392-60.145L45.474-60.145Q45.568-60.118 45.568-60.036Q45.568-60.028 45.560-59.993Q45.509-59.778 45.365-59.567Q45.220-59.356 45.013-59.227Q44.806-59.098 44.580-59.098Q44.275-59.098 44.006-59.184Q43.736-59.270 43.564-59.469Q43.392-59.668 43.392-59.977Q43.392-60.086 43.435-60.266L43.611-60.961Q43.634-61.082 43.634-61.176Q43.634-61.512 43.373-61.694Q43.111-61.875 42.748-61.875L41.697-61.875L41.177-59.809Q41.162-59.715 41.162-59.672Q41.162-59.633 41.175-59.620Q41.189-59.606 41.224-59.594Q41.369-59.563 41.795-59.563Q41.888-59.536 41.888-59.442L41.865-59.336Q41.857-59.286 41.779-59.266M42.259-64.129L41.763-62.129L42.705-62.129Q43.049-62.129 43.365-62.198Q43.681-62.266 43.955-62.434Q44.142-62.559 44.279-62.760Q44.416-62.961 44.484-63.194Q44.552-63.426 44.552-63.649Q44.552-64.106 44.185-64.270Q43.818-64.434 43.283-64.434L42.666-64.434Q42.494-64.434 42.431-64.420Q42.369-64.407 42.336-64.348Q42.302-64.289 42.259-64.129\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M47.773-57.266L46.597-57.266L46.597-65.266L47.773-65.266L47.773-64.899L46.964-64.899L46.964-57.633L47.773-57.633\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M49.150-59Q49.150-59.063 49.181-59.106L52.927-64.364Q52.470-64.129 51.904-64.129Q51.251-64.129 50.646-64.450Q50.790-64.102 50.790-63.657Q50.790-63.297 50.669-62.926Q50.548-62.555 50.298-62.299Q50.048-62.043 49.685-62.043Q49.298-62.043 49.015-62.287Q48.732-62.532 48.585-62.905Q48.439-63.278 48.439-63.657Q48.439-64.036 48.585-64.407Q48.732-64.778 49.015-65.022Q49.298-65.266 49.685-65.266Q50.001-65.266 50.271-65.028Q50.607-64.723 51.036-64.551Q51.466-64.379 51.904-64.379Q52.396-64.379 52.814-64.592Q53.232-64.805 53.532-65.203Q53.575-65.266 53.669-65.266Q53.743-65.266 53.798-65.211Q53.853-65.157 53.853-65.082Q53.853-65.020 53.821-64.977L49.478-58.883Q49.431-58.817 49.333-58.817Q49.251-58.817 49.200-58.868Q49.150-58.918 49.150-59M49.685-62.297Q49.958-62.297 50.146-62.522Q50.333-62.746 50.421-63.069Q50.509-63.391 50.509-63.657Q50.509-63.914 50.421-64.237Q50.333-64.559 50.146-64.784Q49.958-65.008 49.685-65.008Q49.298-65.008 49.155-64.580Q49.013-64.153 49.013-63.657Q49.013-63.149 49.154-62.723Q49.294-62.297 49.685-62.297M53.462-58.817Q53.075-58.817 52.792-59.063Q52.509-59.309 52.361-59.682Q52.212-60.055 52.212-60.434Q52.212-60.707 52.298-60.995Q52.384-61.282 52.538-61.516Q52.693-61.750 52.929-61.897Q53.165-62.043 53.462-62.043Q53.743-62.043 53.950-61.891Q54.157-61.739 54.296-61.496Q54.435-61.254 54.501-60.973Q54.568-60.692 54.568-60.434Q54.568-60.075 54.446-59.702Q54.325-59.328 54.075-59.073Q53.825-58.817 53.462-58.817M53.462-59.075Q53.736-59.075 53.923-59.299Q54.111-59.524 54.198-59.846Q54.286-60.168 54.286-60.434Q54.286-60.692 54.198-61.014Q54.111-61.336 53.923-61.561Q53.736-61.786 53.462-61.786Q53.071-61.786 52.931-61.356Q52.790-60.926 52.790-60.434Q52.790-59.926 52.927-59.500Q53.064-59.075 53.462-59.075\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M55.273-59.504L55.273-59.594Q55.331-59.801 55.523-59.825L56.234-59.825L56.234-62.153L55.523-62.153Q55.327-62.176 55.273-62.395L55.273-62.481Q55.331-62.692 55.523-62.715L56.624-62.715Q56.823-62.696 56.874-62.481L56.874-62.153Q57.136-62.438 57.491-62.596Q57.847-62.754 58.234-62.754Q58.527-62.754 58.761-62.620Q58.995-62.485 58.995-62.219Q58.995-62.051 58.886-61.934Q58.777-61.817 58.609-61.817Q58.456-61.817 58.341-61.928Q58.226-62.039 58.226-62.196Q57.851-62.196 57.536-61.995Q57.222-61.793 57.048-61.459Q56.874-61.125 56.874-60.746L56.874-59.825L57.820-59.825Q58.027-59.801 58.066-59.594L58.066-59.504Q58.027-59.289 57.820-59.266L55.523-59.266Q55.331-59.289 55.273-59.504M59.702-60.379Q59.702-60.825 60.116-61.082Q60.530-61.340 61.071-61.440Q61.612-61.539 62.120-61.547Q62.120-61.762 61.986-61.914Q61.851-62.067 61.644-62.143Q61.437-62.219 61.226-62.219Q60.882-62.219 60.722-62.196L60.722-62.137Q60.722-61.969 60.603-61.854Q60.484-61.739 60.320-61.739Q60.144-61.739 60.029-61.862Q59.913-61.985 59.913-62.153Q59.913-62.559 60.294-62.668Q60.675-62.778 61.234-62.778Q61.503-62.778 61.771-62.700Q62.038-62.621 62.263-62.471Q62.487-62.321 62.624-62.100Q62.761-61.879 62.761-61.602L62.761-59.883Q62.761-59.825 63.288-59.825Q63.484-59.805 63.534-59.594L63.534-59.504Q63.484-59.289 63.288-59.266L63.144-59.266Q62.800-59.266 62.571-59.313Q62.343-59.360 62.198-59.547Q61.737-59.227 61.030-59.227Q60.695-59.227 60.390-59.368Q60.085-59.508 59.894-59.770Q59.702-60.032 59.702-60.379M60.343-60.371Q60.343-60.098 60.585-59.942Q60.827-59.786 61.112-59.786Q61.331-59.786 61.564-59.844Q61.796-59.903 61.958-60.041Q62.120-60.180 62.120-60.403L62.120-60.993Q61.839-60.993 61.423-60.936Q61.007-60.879 60.675-60.741Q60.343-60.602 60.343-60.371M63.800-59.504L63.800-59.594Q63.839-59.801 64.046-59.825L64.452-59.825L65.382-61.043L64.511-62.153L64.093-62.153Q63.898-62.172 63.847-62.395L63.847-62.481Q63.898-62.692 64.093-62.715L65.253-62.715Q65.452-62.692 65.503-62.481L65.503-62.395Q65.452-62.176 65.253-62.153L65.144-62.153L65.640-61.496L66.116-62.153L65.999-62.153Q65.800-62.176 65.749-62.395L65.749-62.481Q65.800-62.692 65.999-62.715L67.159-62.715Q67.355-62.696 67.405-62.481L67.405-62.395Q67.355-62.176 67.159-62.153L66.749-62.153L65.902-61.043L66.862-59.825L67.269-59.825Q67.468-59.801 67.519-59.594L67.519-59.504Q67.480-59.289 67.269-59.266L66.116-59.266Q65.909-59.289 65.870-59.504L65.870-59.594Q65.909-59.801 66.116-59.825L66.245-59.825L65.640-60.680L65.054-59.825L65.198-59.825Q65.405-59.801 65.445-59.594L65.445-59.504Q65.405-59.289 65.198-59.266L64.046-59.266Q63.851-59.286 63.800-59.504\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M69.159-57.266L67.984-57.266L67.984-57.633L68.792-57.633L68.792-64.899L67.984-64.899L67.984-65.266L69.159-65.266\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M78.483-60.243L73.170-60.243Q73.092-60.250 73.043-60.299Q72.995-60.348 72.995-60.426Q72.995-60.496 73.042-60.547Q73.088-60.598 73.170-60.610L78.483-60.610Q78.557-60.598 78.604-60.547Q78.651-60.496 78.651-60.426Q78.651-60.348 78.602-60.299Q78.553-60.250 78.483-60.243M78.483-61.930L73.170-61.930Q73.092-61.938 73.043-61.987Q72.995-62.036 72.995-62.114Q72.995-62.184 73.042-62.235Q73.088-62.286 73.170-62.297L78.483-62.297Q78.557-62.286 78.604-62.235Q78.651-62.184 78.651-62.114Q78.651-62.036 78.602-61.987Q78.553-61.938 78.483-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M83.615-59.188Q83.181-59.188 82.849-59.426Q82.517-59.664 82.297-60.053Q82.076-60.442 81.969-60.879Q81.861-61.317 81.861-61.715Q81.861-62.106 81.971-62.549Q82.080-62.993 82.297-63.373Q82.514-63.754 82.848-63.995Q83.181-64.235 83.615-64.235Q84.170-64.235 84.570-63.836Q84.971-63.438 85.168-62.852Q85.365-62.266 85.365-61.715Q85.365-61.161 85.168-60.573Q84.971-59.985 84.570-59.586Q84.170-59.188 83.615-59.188M83.615-59.746Q83.916-59.746 84.133-59.963Q84.349-60.180 84.476-60.508Q84.603-60.836 84.664-61.182Q84.724-61.528 84.724-61.809Q84.724-62.059 84.662-62.385Q84.599-62.711 84.469-63.002Q84.338-63.293 84.125-63.483Q83.912-63.672 83.615-63.672Q83.240-63.672 82.988-63.360Q82.736-63.047 82.619-62.614Q82.502-62.180 82.502-61.809Q82.502-61.411 82.615-60.930Q82.728-60.450 82.976-60.098Q83.224-59.746 83.615-59.746M85.998-59.504L85.998-59.594Q86.037-59.801 86.244-59.825L86.650-59.825L87.580-61.043L86.709-62.153L86.291-62.153Q86.096-62.172 86.045-62.395L86.045-62.481Q86.096-62.692 86.291-62.715L87.451-62.715Q87.650-62.692 87.701-62.481L87.701-62.395Q87.650-62.176 87.451-62.153L87.342-62.153L87.838-61.496L88.314-62.153L88.197-62.153Q87.998-62.176 87.947-62.395L87.947-62.481Q87.998-62.692 88.197-62.715L89.357-62.715Q89.553-62.696 89.603-62.481L89.603-62.395Q89.553-62.176 89.357-62.153L88.947-62.153L88.099-61.043L89.060-59.825L89.467-59.825Q89.666-59.801 89.717-59.594L89.717-59.504Q89.678-59.289 89.467-59.266L88.314-59.266Q88.107-59.289 88.068-59.504L88.068-59.594Q88.107-59.801 88.314-59.825L88.443-59.825L87.838-60.680L87.252-59.825L87.396-59.825Q87.603-59.801 87.642-59.594L87.642-59.504Q87.603-59.289 87.396-59.266L86.244-59.266Q86.049-59.286 85.998-59.504M90.338-60.313Q90.338-60.489 90.455-60.610Q90.572-60.731 90.748-60.731Q90.830-60.731 90.906-60.700Q90.982-60.668 91.033-60.618Q91.084-60.567 91.115-60.487Q91.146-60.407 91.146-60.328Q91.146-60.196 91.064-60.082Q91.334-59.746 92.123-59.746Q92.549-59.746 92.890-60.012Q93.232-60.278 93.232-60.692Q93.232-60.965 93.066-61.184Q92.900-61.403 92.640-61.514Q92.381-61.625 92.107-61.625L91.642-61.625Q91.431-61.649 91.400-61.868L91.400-61.953Q91.431-62.157 91.642-62.188L92.170-62.227Q92.385-62.227 92.576-62.350Q92.767-62.473 92.881-62.676Q92.994-62.879 92.994-63.090Q92.994-63.364 92.711-63.518Q92.428-63.672 92.123-63.672Q91.560-63.672 91.322-63.481Q91.385-63.368 91.385-63.258Q91.385-63.086 91.271-62.973Q91.158-62.860 90.986-62.860Q90.810-62.860 90.695-62.983Q90.580-63.106 90.580-63.274Q90.580-63.801 91.053-64.018Q91.525-64.235 92.123-64.235Q92.463-64.235 92.818-64.104Q93.174-63.973 93.404-63.715Q93.635-63.457 93.635-63.090Q93.635-62.746 93.467-62.442Q93.299-62.137 93.002-61.938Q93.373-61.758 93.623-61.422Q93.873-61.086 93.873-60.692Q93.873-60.246 93.619-59.905Q93.365-59.563 92.963-59.375Q92.560-59.188 92.123-59.188Q91.838-59.188 91.533-59.243Q91.228-59.297 90.953-59.424Q90.678-59.551 90.508-59.774Q90.338-59.996 90.338-60.313\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M95.069-57.860Q95.069-57.899 95.093-57.922Q95.366-58.207 95.509-58.571Q95.651-58.934 95.651-59.321Q95.554-59.266 95.429-59.266Q95.237-59.266 95.100-59.399Q94.964-59.532 94.964-59.731Q94.964-59.922 95.100-60.055Q95.237-60.188 95.429-60.188Q95.909-60.188 95.909-59.313Q95.909-59.024 95.837-58.743Q95.765-58.461 95.622-58.207Q95.479-57.953 95.284-57.746Q95.253-57.715 95.214-57.715Q95.167-57.715 95.118-57.760Q95.069-57.805 95.069-57.860M94.964-62.258Q94.964-62.442 95.100-62.578Q95.237-62.715 95.429-62.715Q95.620-62.715 95.753-62.582Q95.886-62.450 95.886-62.258Q95.886-62.059 95.753-61.926Q95.620-61.793 95.429-61.793Q95.237-61.793 95.100-61.930Q94.964-62.067 94.964-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M101.736-59.266L99.814-59.266L99.814-59.563Q100.623-59.563 100.623-60.043L100.623-64.168Q100.623-64.340 100.380-64.387Q100.138-64.434 99.814-64.434L99.814-64.731L101.310-64.731Q101.419-64.731 101.478-64.618L103.326-60.075L105.166-64.618Q105.228-64.731 105.334-64.731L106.837-64.731L106.837-64.434Q106.517-64.434 106.275-64.387Q106.033-64.340 106.033-64.168L106.033-59.825Q106.033-59.657 106.275-59.610Q106.517-59.563 106.837-59.563L106.837-59.266L104.537-59.266L104.537-59.563Q105.341-59.563 105.341-59.825L105.341-64.418L103.294-59.379Q103.259-59.266 103.126-59.266Q102.986-59.266 102.951-59.379L100.927-64.356L100.927-60.043Q100.927-59.563 101.736-59.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M112.177-57.715L110.322-57.715L110.322-58.008Q110.591-58.008 110.759-58.053Q110.927-58.098 110.927-58.274L110.927-62.098Q110.927-62.305 110.771-62.358Q110.615-62.411 110.322-62.411L110.322-62.707L111.544-62.793L111.544-62.328Q111.775-62.551 112.089-62.672Q112.404-62.793 112.743-62.793Q113.216-62.793 113.620-62.547Q114.025-62.301 114.257-61.885Q114.490-61.469 114.490-60.993Q114.490-60.618 114.341-60.289Q114.193-59.961 113.923-59.709Q113.654-59.457 113.310-59.323Q112.966-59.188 112.607-59.188Q112.318-59.188 112.046-59.309Q111.775-59.430 111.568-59.641L111.568-58.274Q111.568-58.098 111.736-58.053Q111.904-58.008 112.177-58.008L112.177-57.715M111.568-61.930L111.568-60.090Q111.720-59.801 111.982-59.621Q112.243-59.442 112.552-59.442Q112.837-59.442 113.060-59.580Q113.283-59.719 113.435-59.950Q113.587-60.180 113.665-60.452Q113.743-60.723 113.743-60.993Q113.743-61.325 113.618-61.682Q113.493-62.039 113.245-62.276Q112.997-62.512 112.650-62.512Q112.326-62.512 112.031-62.356Q111.736-62.200 111.568-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M115.252-60.961Q115.252-61.465 115.508-61.897Q115.764-62.328 116.200-62.580Q116.635-62.832 117.135-62.832Q117.522-62.832 117.864-62.688Q118.205-62.543 118.467-62.282Q118.729-62.020 118.871-61.684Q119.014-61.348 119.014-60.961Q119.014-60.469 118.750-60.059Q118.487-59.649 118.057-59.418Q117.627-59.188 117.135-59.188Q116.643-59.188 116.209-59.420Q115.776-59.653 115.514-60.061Q115.252-60.469 115.252-60.961M117.135-59.465Q117.592-59.465 117.844-59.688Q118.096-59.911 118.184-60.262Q118.272-60.614 118.272-61.059Q118.272-61.489 118.178-61.827Q118.084-62.164 117.830-62.371Q117.576-62.578 117.135-62.578Q116.487-62.578 116.243-62.162Q115.998-61.746 115.998-61.059Q115.998-60.614 116.086-60.262Q116.174-59.911 116.426-59.688Q116.678-59.465 117.135-59.465M121.506-59.266L119.526-59.266L119.526-59.563Q119.795-59.563 119.963-59.608Q120.131-59.653 120.131-59.825L120.131-61.961Q120.131-62.176 120.069-62.272Q120.006-62.368 119.889-62.389Q119.772-62.411 119.526-62.411L119.526-62.707L120.694-62.793L120.694-62.008Q120.772-62.219 120.924-62.405Q121.076-62.590 121.276-62.692Q121.475-62.793 121.701-62.793Q121.948-62.793 122.139-62.649Q122.330-62.504 122.330-62.274Q122.330-62.118 122.225-62.008Q122.119-61.899 121.963-61.899Q121.807-61.899 121.698-62.008Q121.588-62.118 121.588-62.274Q121.588-62.434 121.694-62.539Q121.369-62.539 121.155-62.311Q120.940-62.082 120.844-61.743Q120.748-61.403 120.748-61.098L120.748-59.825Q120.748-59.657 120.975-59.610Q121.201-59.563 121.506-59.563L121.506-59.266M123.436-60.227L123.436-62.418L122.733-62.418L122.733-62.672Q123.088-62.672 123.330-62.905Q123.573-63.137 123.684-63.485Q123.795-63.832 123.795-64.188L124.076-64.188L124.076-62.715L125.252-62.715L125.252-62.418L124.076-62.418L124.076-60.243Q124.076-59.922 124.196-59.694Q124.315-59.465 124.596-59.465Q124.776-59.465 124.893-59.588Q125.010-59.711 125.063-59.891Q125.116-60.071 125.116-60.243L125.116-60.715L125.397-60.715L125.397-60.227Q125.397-59.973 125.291-59.733Q125.186-59.493 124.989-59.340Q124.791-59.188 124.534-59.188Q124.217-59.188 123.965-59.311Q123.713-59.434 123.575-59.668Q123.436-59.903 123.436-60.227\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M130.814-59.266L129.036-59.266L129.036-59.563Q129.310-59.563 129.478-59.610Q129.646-59.657 129.646-59.825L129.646-61.961Q129.646-62.176 129.589-62.272Q129.532-62.368 129.419-62.389Q129.306-62.411 129.060-62.411L129.060-62.707L130.259-62.793L130.259-59.825Q130.259-59.657 130.405-59.610Q130.552-59.563 130.814-59.563L130.814-59.266M129.372-64.188Q129.372-64.379 129.507-64.510Q129.642-64.641 129.837-64.641Q129.958-64.641 130.062-64.578Q130.165-64.516 130.228-64.412Q130.290-64.309 130.290-64.188Q130.290-63.993 130.159-63.858Q130.029-63.723 129.837-63.723Q129.638-63.723 129.505-63.856Q129.372-63.989 129.372-64.188M133.130-59.188Q132.650-59.188 132.241-59.432Q131.833-59.676 131.595-60.090Q131.357-60.504 131.357-60.993Q131.357-61.485 131.614-61.901Q131.872-62.317 132.304-62.555Q132.736-62.793 133.228-62.793Q133.849-62.793 134.298-62.356L134.298-63.985Q134.298-64.200 134.236-64.295Q134.173-64.391 134.056-64.412Q133.939-64.434 133.693-64.434L133.693-64.731L134.915-64.817L134.915-60.008Q134.915-59.797 134.978-59.702Q135.040-59.606 135.157-59.584Q135.275-59.563 135.525-59.563L135.525-59.266L134.275-59.188L134.275-59.672Q133.810-59.188 133.130-59.188M133.196-59.442Q133.536-59.442 133.829-59.633Q134.122-59.825 134.275-60.121L134.275-61.953Q134.126-62.227 133.864-62.383Q133.603-62.539 133.290-62.539Q132.665-62.539 132.382-62.092Q132.099-61.645 132.099-60.985Q132.099-60.340 132.351-59.891Q132.603-59.442 133.196-59.442M137.946-59.266L136.114-59.266L136.114-59.563Q136.388-59.563 136.556-59.610Q136.724-59.657 136.724-59.825L136.724-63.985Q136.724-64.200 136.661-64.295Q136.599-64.391 136.480-64.412Q136.361-64.434 136.114-64.434L136.114-64.731L137.337-64.817L137.337-59.825Q137.337-59.657 137.505-59.610Q137.673-59.563 137.946-59.563L137.946-59.266M138.392-61.020Q138.392-61.500 138.624-61.916Q138.857-62.332 139.267-62.582Q139.677-62.832 140.154-62.832Q140.884-62.832 141.282-62.391Q141.681-61.950 141.681-61.219Q141.681-61.114 141.587-61.090L139.138-61.090L139.138-61.020Q139.138-60.610 139.259-60.254Q139.380-59.899 139.652-59.682Q139.923-59.465 140.353-59.465Q140.716-59.465 141.013-59.694Q141.310-59.922 141.411-60.274Q141.419-60.321 141.505-60.336L141.587-60.336Q141.681-60.309 141.681-60.227Q141.681-60.219 141.673-60.188Q141.611-59.961 141.472-59.778Q141.333-59.594 141.142-59.461Q140.950-59.328 140.732-59.258Q140.513-59.188 140.275-59.188Q139.904-59.188 139.566-59.325Q139.228-59.461 138.960-59.713Q138.693-59.965 138.542-60.305Q138.392-60.645 138.392-61.020M139.146-61.328L141.107-61.328Q141.107-61.633 141.005-61.924Q140.904-62.215 140.687-62.397Q140.470-62.578 140.154-62.578Q139.853-62.578 139.622-62.391Q139.392-62.203 139.269-61.912Q139.146-61.621 139.146-61.328\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 49.423h404.029\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-44.288 122.674)\">\u003Cpath d=\"M11.100-59.266L8.967-59.266L8.967-59.546Q9.688-59.546 9.688-59.755L9.688-63.556Q9.688-63.767 8.967-63.767L8.967-64.048L11.633-64.048Q12.043-64.048 12.464-63.894Q12.884-63.740 13.168-63.436Q13.451-63.132 13.451-62.718Q13.451-62.400 13.284-62.154Q13.116-61.908 12.840-61.742Q12.563-61.577 12.241-61.493Q11.920-61.409 11.633-61.409L10.379-61.409L10.379-59.755Q10.379-59.546 11.100-59.546L11.100-59.266M10.351-63.556L10.351-61.659L11.438-61.659Q12.047-61.659 12.361-61.896Q12.676-62.134 12.676-62.718Q12.676-63.111 12.530-63.345Q12.385-63.579 12.113-63.673Q11.842-63.767 11.438-63.767L10.717-63.767Q10.529-63.767 10.440-63.733Q10.351-63.699 10.351-63.556M14.432-61.659Q14.432-62.185 14.649-62.653Q14.866-63.121 15.249-63.467Q15.632-63.812 16.116-64Q16.599-64.188 17.129-64.188Q17.532-64.188 17.897-64.031Q18.261-63.873 18.544-63.579L18.968-64.161Q19.002-64.188 19.026-64.188L19.074-64.188Q19.105-64.188 19.129-64.164Q19.153-64.140 19.153-64.109L19.153-62.246Q19.153-62.223 19.127-62.197Q19.101-62.171 19.074-62.171L18.948-62.171Q18.886-62.171 18.872-62.246Q18.842-62.561 18.707-62.865Q18.572-63.169 18.356-63.403Q18.141-63.638 17.852-63.773Q17.563-63.908 17.235-63.908Q16.593-63.908 16.135-63.614Q15.677-63.320 15.444-62.807Q15.212-62.294 15.212-61.659Q15.212-61.187 15.342-60.778Q15.471-60.370 15.731-60.057Q15.991-59.745 16.370-59.575Q16.750-59.406 17.242-59.406Q17.570-59.406 17.864-59.522Q18.158-59.639 18.392-59.854Q18.626-60.069 18.756-60.358Q18.886-60.647 18.886-60.975Q18.886-61.002 18.913-61.026Q18.941-61.050 18.961-61.050L19.074-61.050Q19.112-61.050 19.132-61.025Q19.153-60.999 19.153-60.961Q19.153-60.565 18.987-60.228Q18.821-59.891 18.534-59.644Q18.247-59.396 17.878-59.261Q17.509-59.126 17.129-59.126Q16.610-59.126 16.117-59.316Q15.625-59.505 15.246-59.849Q14.866-60.192 14.649-60.661Q14.432-61.129 14.432-61.659\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.288 122.674)\">\u003Cpath d=\"M23.241-60.100L23.241-61.604Q23.241-61.874 23.133-61.935Q23.025-61.997 22.714-61.997L22.714-62.277L23.822-62.352L23.822-60.120L23.822-60.100Q23.822-59.820 23.873-59.676Q23.924-59.533 24.066-59.476Q24.208-59.420 24.495-59.420Q24.748-59.420 24.953-59.560Q25.158-59.700 25.274-59.926Q25.391-60.151 25.391-60.401L25.391-61.604Q25.391-61.874 25.283-61.935Q25.175-61.997 24.864-61.997L24.864-62.277L25.972-62.352L25.972-59.939Q25.972-59.748 26.025-59.666Q26.078-59.584 26.178-59.565Q26.279-59.546 26.495-59.546L26.495-59.266L25.418-59.198L25.418-59.762Q25.309-59.580 25.163-59.457Q25.018-59.334 24.832-59.266Q24.645-59.198 24.444-59.198Q23.241-59.198 23.241-60.100M28.727-57.909L27.096-57.909L27.096-58.189Q27.325-58.189 27.474-58.224Q27.623-58.258 27.623-58.398L27.623-61.744Q27.623-61.915 27.486-61.956Q27.349-61.997 27.096-61.997L27.096-62.277L28.176-62.352L28.176-61.946Q28.398-62.147 28.685-62.250Q28.973-62.352 29.280-62.352Q29.707-62.352 30.071-62.139Q30.435-61.925 30.649-61.561Q30.863-61.197 30.863-60.777Q30.863-60.332 30.623-59.968Q30.384-59.604 29.991-59.401Q29.598-59.198 29.154-59.198Q28.887-59.198 28.639-59.298Q28.392-59.399 28.204-59.580L28.204-58.398Q28.204-58.261 28.352-58.225Q28.501-58.189 28.727-58.189L28.727-57.909M28.204-61.597L28.204-59.987Q28.337-59.734 28.580-59.577Q28.822-59.420 29.099-59.420Q29.427-59.420 29.680-59.621Q29.933-59.823 30.066-60.141Q30.200-60.459 30.200-60.777Q30.200-61.006 30.135-61.235Q30.070-61.464 29.942-61.662Q29.813-61.860 29.619-61.980Q29.424-62.099 29.191-62.099Q28.897-62.099 28.629-61.970Q28.361-61.840 28.204-61.597\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.288 122.674)\">\u003Cpath d=\"M31.714-60.777Q31.714-61.115 31.855-61.406Q31.995-61.696 32.239-61.910Q32.483-62.123 32.788-62.238Q33.092-62.352 33.417-62.352Q33.687-62.352 33.950-62.253Q34.213-62.154 34.404-61.976L34.404-63.374Q34.404-63.644 34.297-63.706Q34.189-63.767 33.878-63.767L33.878-64.048L34.955-64.123L34.955-59.939Q34.955-59.751 35.009-59.668Q35.064-59.584 35.165-59.565Q35.266-59.546 35.481-59.546L35.481-59.266L34.374-59.198L34.374-59.615Q33.957-59.198 33.331-59.198Q32.900-59.198 32.528-59.410Q32.155-59.621 31.935-59.982Q31.714-60.343 31.714-60.777M33.389-59.420Q33.598-59.420 33.784-59.492Q33.970-59.563 34.124-59.700Q34.278-59.837 34.374-60.015L34.374-61.624Q34.288-61.771 34.143-61.891Q33.998-62.011 33.828-62.070Q33.659-62.130 33.478-62.130Q32.918-62.130 32.649-61.741Q32.381-61.351 32.381-60.770Q32.381-60.199 32.615-59.809Q32.849-59.420 33.389-59.420M36.189-59.994Q36.189-60.326 36.412-60.553Q36.636-60.780 36.980-60.908Q37.323-61.037 37.696-61.089Q38.068-61.142 38.373-61.142L38.373-61.395Q38.373-61.600 38.265-61.780Q38.157-61.959 37.976-62.062Q37.795-62.164 37.587-62.164Q37.180-62.164 36.944-62.072Q37.033-62.035 37.079-61.951Q37.125-61.867 37.125-61.765Q37.125-61.669 37.079-61.590Q37.033-61.512 36.952-61.467Q36.872-61.423 36.783-61.423Q36.633-61.423 36.532-61.520Q36.431-61.618 36.431-61.765Q36.431-62.387 37.587-62.387Q37.798-62.387 38.048-62.323Q38.297-62.260 38.499-62.141Q38.701-62.021 38.827-61.836Q38.954-61.652 38.954-61.409L38.954-59.833Q38.954-59.717 39.015-59.621Q39.077-59.526 39.190-59.526Q39.299-59.526 39.364-59.620Q39.429-59.714 39.429-59.833L39.429-60.281L39.695-60.281L39.695-59.833Q39.695-59.563 39.468-59.398Q39.241-59.232 38.961-59.232Q38.752-59.232 38.615-59.386Q38.479-59.539 38.455-59.755Q38.308-59.488 38.026-59.343Q37.744-59.198 37.419-59.198Q37.142-59.198 36.858-59.273Q36.575-59.348 36.382-59.527Q36.189-59.707 36.189-59.994M36.804-59.994Q36.804-59.820 36.905-59.690Q37.005-59.560 37.161-59.490Q37.317-59.420 37.481-59.420Q37.699-59.420 37.908-59.517Q38.116-59.615 38.244-59.796Q38.373-59.977 38.373-60.203L38.373-60.931Q38.048-60.931 37.682-60.840Q37.317-60.749 37.060-60.537Q36.804-60.326 36.804-59.994M40.639-60.107L40.639-62.004L40-62.004L40-62.226Q40.317-62.226 40.535-62.436Q40.752-62.646 40.852-62.956Q40.953-63.265 40.953-63.573L41.220-63.573L41.220-62.284L42.296-62.284L42.296-62.004L41.220-62.004L41.220-60.120Q41.220-59.844 41.324-59.645Q41.428-59.447 41.688-59.447Q41.845-59.447 41.951-59.551Q42.057-59.656 42.107-59.809Q42.156-59.963 42.156-60.120L42.156-60.534L42.423-60.534L42.423-60.107Q42.423-59.881 42.324-59.671Q42.225-59.461 42.040-59.329Q41.856-59.198 41.627-59.198Q41.189-59.198 40.914-59.435Q40.639-59.673 40.639-60.107M43.192-60.801Q43.192-61.122 43.317-61.411Q43.442-61.700 43.667-61.923Q43.893-62.147 44.188-62.267Q44.484-62.387 44.802-62.387Q45.130-62.387 45.391-62.287Q45.653-62.188 45.829-62.006Q46.005-61.823 46.099-61.565Q46.193-61.307 46.193-60.975Q46.193-60.883 46.111-60.862L43.855-60.862L43.855-60.801Q43.855-60.213 44.139-59.830Q44.422-59.447 44.990-59.447Q45.311-59.447 45.579-59.640Q45.848-59.833 45.937-60.148Q45.943-60.189 46.019-60.203L46.111-60.203Q46.193-60.179 46.193-60.107Q46.193-60.100 46.186-60.073Q46.073-59.676 45.702-59.437Q45.332-59.198 44.908-59.198Q44.470-59.198 44.070-59.406Q43.671-59.615 43.431-59.982Q43.192-60.349 43.192-60.801M43.862-61.071L45.677-61.071Q45.677-61.348 45.579-61.600Q45.482-61.853 45.284-62.009Q45.086-62.164 44.802-62.164Q44.525-62.164 44.311-62.006Q44.098-61.847 43.980-61.592Q43.862-61.337 43.862-61.071\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(9.223 122.924)\">\u003Cpath d=\"M10.742-59.266L8.886-59.266L8.886-59.563Q9.160-59.563 9.328-59.610Q9.496-59.657 9.496-59.825L9.496-61.961Q9.496-62.176 9.433-62.272Q9.371-62.368 9.252-62.389Q9.133-62.411 8.886-62.411L8.886-62.707L10.078-62.793L10.078-62.059Q10.191-62.274 10.385-62.442Q10.578-62.610 10.816-62.702Q11.054-62.793 11.308-62.793Q12.476-62.793 12.476-61.715L12.476-59.825Q12.476-59.657 12.646-59.610Q12.816-59.563 13.086-59.563L13.086-59.266L11.230-59.266L11.230-59.563Q11.504-59.563 11.672-59.610Q11.840-59.657 11.840-59.825L11.840-61.700Q11.840-62.082 11.719-62.311Q11.597-62.539 11.246-62.539Q10.933-62.539 10.679-62.377Q10.426-62.215 10.279-61.946Q10.133-61.676 10.133-61.379L10.133-59.825Q10.133-59.657 10.303-59.610Q10.472-59.563 10.742-59.563L10.742-59.266M13.531-60.961Q13.531-61.465 13.787-61.897Q14.043-62.328 14.478-62.580Q14.914-62.832 15.414-62.832Q15.801-62.832 16.142-62.688Q16.484-62.543 16.746-62.282Q17.008-62.020 17.150-61.684Q17.293-61.348 17.293-60.961Q17.293-60.469 17.029-60.059Q16.765-59.649 16.336-59.418Q15.906-59.188 15.414-59.188Q14.922-59.188 14.488-59.420Q14.054-59.653 13.793-60.061Q13.531-60.469 13.531-60.961M15.414-59.465Q15.871-59.465 16.123-59.688Q16.375-59.911 16.463-60.262Q16.551-60.614 16.551-61.059Q16.551-61.489 16.457-61.827Q16.363-62.164 16.109-62.371Q15.855-62.578 15.414-62.578Q14.765-62.578 14.521-62.162Q14.277-61.746 14.277-61.059Q14.277-60.614 14.365-60.262Q14.453-59.911 14.705-59.688Q14.957-59.465 15.414-59.465M18.402-60.227L18.402-62.418L17.699-62.418L17.699-62.672Q18.054-62.672 18.297-62.905Q18.539-63.137 18.650-63.485Q18.761-63.832 18.761-64.188L19.043-64.188L19.043-62.715L20.219-62.715L20.219-62.418L19.043-62.418L19.043-60.243Q19.043-59.922 19.162-59.694Q19.281-59.465 19.562-59.465Q19.742-59.465 19.859-59.588Q19.976-59.711 20.029-59.891Q20.082-60.071 20.082-60.243L20.082-60.715L20.363-60.715L20.363-60.227Q20.363-59.973 20.258-59.733Q20.152-59.493 19.955-59.340Q19.758-59.188 19.500-59.188Q19.183-59.188 18.931-59.311Q18.679-59.434 18.541-59.668Q18.402-59.903 18.402-60.227\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 122.924)\">\u003Cpath d=\"M23.966-60.993Q23.966-61.489 24.216-61.914Q24.466-62.340 24.886-62.586Q25.306-62.832 25.806-62.832Q26.345-62.832 26.736-62.707Q27.126-62.582 27.126-62.168Q27.126-62.063 27.076-61.971Q27.025-61.879 26.933-61.828Q26.841-61.778 26.732-61.778Q26.626-61.778 26.535-61.828Q26.443-61.879 26.392-61.971Q26.341-62.063 26.341-62.168Q26.341-62.391 26.509-62.496Q26.287-62.555 25.814-62.555Q25.517-62.555 25.302-62.416Q25.087-62.278 24.956-62.047Q24.826-61.817 24.767-61.547Q24.708-61.278 24.708-60.993Q24.708-60.598 24.841-60.248Q24.974-59.899 25.246-59.682Q25.517-59.465 25.915-59.465Q26.290-59.465 26.566-59.682Q26.841-59.899 26.943-60.258Q26.958-60.321 27.021-60.321L27.126-60.321Q27.162-60.321 27.187-60.293Q27.212-60.266 27.212-60.227L27.212-60.203Q27.080-59.723 26.695-59.455Q26.310-59.188 25.806-59.188Q25.443-59.188 25.109-59.325Q24.775-59.461 24.515-59.711Q24.255-59.961 24.111-60.297Q23.966-60.633 23.966-60.993M27.798-60.098Q27.798-60.582 28.201-60.877Q28.603-61.172 29.154-61.291Q29.705-61.411 30.197-61.411L30.197-61.700Q30.197-61.926 30.081-62.133Q29.966-62.340 29.769-62.459Q29.572-62.578 29.341-62.578Q28.915-62.578 28.630-62.473Q28.701-62.446 28.747-62.391Q28.794-62.336 28.820-62.266Q28.845-62.196 28.845-62.121Q28.845-62.016 28.794-61.924Q28.744-61.832 28.652-61.782Q28.560-61.731 28.455-61.731Q28.349-61.731 28.257-61.782Q28.165-61.832 28.115-61.924Q28.064-62.016 28.064-62.121Q28.064-62.539 28.453-62.686Q28.841-62.832 29.341-62.832Q29.673-62.832 30.027-62.702Q30.380-62.571 30.609-62.317Q30.837-62.063 30.837-61.715L30.837-59.914Q30.837-59.782 30.910-59.672Q30.982-59.563 31.111-59.563Q31.236-59.563 31.304-59.668Q31.372-59.774 31.372-59.914L31.372-60.426L31.654-60.426L31.654-59.914Q31.654-59.711 31.537-59.553Q31.419-59.395 31.238-59.311Q31.056-59.227 30.853-59.227Q30.622-59.227 30.470-59.399Q30.318-59.571 30.287-59.801Q30.126-59.520 29.818-59.354Q29.509-59.188 29.158-59.188Q28.646-59.188 28.222-59.411Q27.798-59.633 27.798-60.098M28.486-60.098Q28.486-59.813 28.712-59.627Q28.939-59.442 29.232-59.442Q29.478-59.442 29.703-59.559Q29.927-59.676 30.062-59.879Q30.197-60.082 30.197-60.336L30.197-61.168Q29.931-61.168 29.646-61.114Q29.361-61.059 29.089-60.930Q28.818-60.801 28.652-60.594Q28.486-60.387 28.486-60.098M33.861-59.266L32.029-59.266L32.029-59.563Q32.302-59.563 32.470-59.610Q32.638-59.657 32.638-59.825L32.638-63.985Q32.638-64.200 32.576-64.295Q32.513-64.391 32.394-64.412Q32.275-64.434 32.029-64.434L32.029-64.731L33.251-64.817L33.251-59.825Q33.251-59.657 33.419-59.610Q33.587-59.563 33.861-59.563L33.861-59.266M36.220-59.266L34.388-59.266L34.388-59.563Q34.662-59.563 34.830-59.610Q34.998-59.657 34.998-59.825L34.998-63.985Q34.998-64.200 34.935-64.295Q34.873-64.391 34.753-64.412Q34.634-64.434 34.388-64.434L34.388-64.731L35.611-64.817L35.611-59.825Q35.611-59.657 35.779-59.610Q35.947-59.563 36.220-59.563L36.220-59.266M36.900-57.450Q36.900-57.469 36.915-57.524L39.841-65.161Q39.908-65.266 40.013-65.266Q40.091-65.266 40.144-65.213Q40.197-65.161 40.197-65.082Q40.197-65.063 40.181-65.008L37.251-57.371Q37.189-57.266 37.083-57.266Q37.009-57.266 36.955-57.321Q36.900-57.375 36.900-57.450M40.353-58.289Q40.353-58.395 40.404-58.487Q40.455-58.578 40.546-58.629Q40.638-58.680 40.744-58.680Q40.853-58.680 40.945-58.629Q41.037-58.578 41.087-58.487Q41.138-58.395 41.138-58.289Q41.138-58.075 40.947-57.953Q41.103-57.891 41.330-57.891Q41.630-57.891 41.759-58.200Q41.888-58.508 41.888-58.875L41.888-61.961Q41.888-62.266 41.742-62.338Q41.595-62.411 41.216-62.411L41.216-62.707L42.505-62.793L42.505-58.852Q42.505-58.532 42.345-58.248Q42.185-57.965 41.908-57.799Q41.630-57.633 41.314-57.633Q40.955-57.633 40.654-57.797Q40.353-57.961 40.353-58.289M41.583-64.188Q41.583-64.371 41.722-64.506Q41.861-64.641 42.048-64.641Q42.236-64.641 42.371-64.510Q42.505-64.379 42.505-64.188Q42.505-63.989 42.373-63.856Q42.240-63.723 42.048-63.723Q41.857-63.723 41.720-63.860Q41.583-63.996 41.583-64.188M45.427-59.266L43.490-59.266L43.490-59.563Q44.310-59.563 44.658-60.043L46.076-61.985L44.505-64.168Q44.361-64.344 44.154-64.389Q43.947-64.434 43.611-64.434L43.611-64.731L45.841-64.731L45.841-64.434Q45.701-64.434 45.537-64.377Q45.373-64.321 45.373-64.219Q45.373-64.188 45.388-64.168L46.525-62.594L47.513-63.953Q47.564-64.008 47.564-64.098Q47.564-64.254 47.421-64.344Q47.279-64.434 47.115-64.434L47.115-64.731L49.044-64.731L49.044-64.434Q48.677-64.434 48.373-64.323Q48.068-64.211 47.876-63.953L46.701-62.336L48.505-59.825Q48.650-59.653 48.859-59.608Q49.068-59.563 49.404-59.563L49.404-59.266L47.169-59.266L47.169-59.563Q47.298-59.563 47.470-59.618Q47.642-59.672 47.642-59.778Q47.642-59.793 47.626-59.825L46.259-61.731L45.029-60.043Q44.978-59.981 44.978-59.899Q44.978-59.750 45.121-59.657Q45.263-59.563 45.427-59.563L45.427-59.266M51.787-59.266L49.849-59.266L49.849-59.563Q50.669-59.563 51.017-60.043L52.435-61.985L50.865-64.168Q50.720-64.344 50.513-64.389Q50.306-64.434 49.970-64.434L49.970-64.731L52.201-64.731L52.201-64.434Q52.060-64.434 51.896-64.377Q51.732-64.321 51.732-64.219Q51.732-64.188 51.748-64.168L52.884-62.594L53.873-63.953Q53.923-64.008 53.923-64.098Q53.923-64.254 53.781-64.344Q53.638-64.434 53.474-64.434L53.474-64.731L55.404-64.731L55.404-64.434Q55.037-64.434 54.732-64.323Q54.427-64.211 54.236-63.953L53.060-62.336L54.865-59.825Q55.009-59.653 55.218-59.608Q55.427-59.563 55.763-59.563L55.763-59.266L53.529-59.266L53.529-59.563Q53.658-59.563 53.830-59.618Q54.001-59.672 54.001-59.778Q54.001-59.793 53.986-59.825L52.619-61.731L51.388-60.043Q51.337-59.981 51.337-59.899Q51.337-59.750 51.480-59.657Q51.623-59.563 51.787-59.563L51.787-59.266M56.458-57.450Q56.458-57.469 56.474-57.524L59.400-65.161Q59.466-65.266 59.572-65.266Q59.650-65.266 59.703-65.213Q59.755-65.161 59.755-65.082Q59.755-65.063 59.740-65.008L56.810-57.371Q56.748-57.266 56.642-57.266Q56.568-57.266 56.513-57.321Q56.458-57.375 56.458-57.450M62.478-59.266L60.498-59.266L60.498-59.563Q60.767-59.563 60.935-59.608Q61.103-59.653 61.103-59.825L61.103-61.961Q61.103-62.176 61.040-62.272Q60.978-62.368 60.861-62.389Q60.744-62.411 60.498-62.411L60.498-62.707L61.665-62.793L61.665-62.008Q61.744-62.219 61.896-62.405Q62.048-62.590 62.248-62.692Q62.447-62.793 62.673-62.793Q62.919-62.793 63.111-62.649Q63.302-62.504 63.302-62.274Q63.302-62.118 63.197-62.008Q63.091-61.899 62.935-61.899Q62.779-61.899 62.669-62.008Q62.560-62.118 62.560-62.274Q62.560-62.434 62.665-62.539Q62.341-62.539 62.126-62.311Q61.912-62.082 61.816-61.743Q61.720-61.403 61.720-61.098L61.720-59.825Q61.720-59.657 61.947-59.610Q62.173-59.563 62.478-59.563L62.478-59.266M63.783-61.020Q63.783-61.500 64.015-61.916Q64.248-62.332 64.658-62.582Q65.068-62.832 65.544-62.832Q66.275-62.832 66.673-62.391Q67.072-61.950 67.072-61.219Q67.072-61.114 66.978-61.090L64.529-61.090L64.529-61.020Q64.529-60.610 64.650-60.254Q64.771-59.899 65.042-59.682Q65.314-59.465 65.744-59.465Q66.107-59.465 66.404-59.694Q66.701-59.922 66.802-60.274Q66.810-60.321 66.896-60.336L66.978-60.336Q67.072-60.309 67.072-60.227Q67.072-60.219 67.064-60.188Q67.001-59.961 66.863-59.778Q66.724-59.594 66.533-59.461Q66.341-59.328 66.123-59.258Q65.904-59.188 65.665-59.188Q65.294-59.188 64.956-59.325Q64.619-59.461 64.351-59.713Q64.083-59.965 63.933-60.305Q63.783-60.645 63.783-61.020M64.537-61.328L66.498-61.328Q66.498-61.633 66.396-61.924Q66.294-62.215 66.078-62.397Q65.861-62.578 65.544-62.578Q65.244-62.578 65.013-62.391Q64.783-62.203 64.660-61.912Q64.537-61.621 64.537-61.328M68.185-60.227L68.185-62.418L67.482-62.418L67.482-62.672Q67.837-62.672 68.080-62.905Q68.322-63.137 68.433-63.485Q68.544-63.832 68.544-64.188L68.826-64.188L68.826-62.715L70.001-62.715L70.001-62.418L68.826-62.418L68.826-60.243Q68.826-59.922 68.945-59.694Q69.064-59.465 69.345-59.465Q69.525-59.465 69.642-59.588Q69.759-59.711 69.812-59.891Q69.865-60.071 69.865-60.243L69.865-60.715L70.146-60.715L70.146-60.227Q70.146-59.973 70.040-59.733Q69.935-59.493 69.738-59.340Q69.540-59.188 69.283-59.188Q68.966-59.188 68.714-59.311Q68.462-59.434 68.324-59.668Q68.185-59.903 68.185-60.227M71.345-59.731Q71.345-59.914 71.482-60.051Q71.619-60.188 71.810-60.188Q72.001-60.188 72.134-60.055Q72.267-59.922 72.267-59.731Q72.267-59.532 72.134-59.399Q72.001-59.266 71.810-59.266Q71.619-59.266 71.482-59.403Q71.345-59.539 71.345-59.731M71.345-62.258Q71.345-62.442 71.482-62.578Q71.619-62.715 71.810-62.715Q72.001-62.715 72.134-62.582Q72.267-62.450 72.267-62.258Q72.267-62.059 72.134-61.926Q72.001-61.793 71.810-61.793Q71.619-61.793 71.482-61.930Q71.345-62.067 71.345-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 122.924)\">\u003Cpath d=\"M78.969-59.266L77.114-59.266L77.114-59.563Q77.387-59.563 77.555-59.610Q77.723-59.657 77.723-59.825L77.723-61.961Q77.723-62.176 77.660-62.272Q77.598-62.368 77.479-62.389Q77.360-62.411 77.114-62.411L77.114-62.707L78.305-62.793L78.305-62.059Q78.418-62.274 78.612-62.442Q78.805-62.610 79.043-62.702Q79.281-62.793 79.535-62.793Q80.703-62.793 80.703-61.715L80.703-59.825Q80.703-59.657 80.873-59.610Q81.043-59.563 81.313-59.563L81.313-59.266L79.457-59.266L79.457-59.563Q79.731-59.563 79.899-59.610Q80.067-59.657 80.067-59.825L80.067-61.700Q80.067-62.082 79.946-62.311Q79.824-62.539 79.473-62.539Q79.160-62.539 78.906-62.377Q78.653-62.215 78.506-61.946Q78.360-61.676 78.360-61.379L78.360-59.825Q78.360-59.657 78.530-59.610Q78.699-59.563 78.969-59.563L78.969-59.266M81.758-61.020Q81.758-61.500 81.990-61.916Q82.223-62.332 82.633-62.582Q83.043-62.832 83.520-62.832Q84.250-62.832 84.649-62.391Q85.047-61.950 85.047-61.219Q85.047-61.114 84.953-61.090L82.504-61.090L82.504-61.020Q82.504-60.610 82.625-60.254Q82.746-59.899 83.018-59.682Q83.289-59.465 83.719-59.465Q84.082-59.465 84.379-59.694Q84.676-59.922 84.778-60.274Q84.785-60.321 84.871-60.336L84.953-60.336Q85.047-60.309 85.047-60.227Q85.047-60.219 85.039-60.188Q84.977-59.961 84.838-59.778Q84.699-59.594 84.508-59.461Q84.317-59.328 84.098-59.258Q83.879-59.188 83.641-59.188Q83.270-59.188 82.932-59.325Q82.594-59.461 82.326-59.713Q82.059-59.965 81.908-60.305Q81.758-60.645 81.758-61.020M82.512-61.328L84.473-61.328Q84.473-61.633 84.371-61.924Q84.270-62.215 84.053-62.397Q83.836-62.578 83.520-62.578Q83.219-62.578 82.989-62.391Q82.758-62.203 82.635-61.912Q82.512-61.621 82.512-61.328M87.121-59.297L86.051-62.153Q85.985-62.332 85.854-62.375Q85.723-62.418 85.465-62.418L85.465-62.715L87.145-62.715L87.145-62.418Q86.696-62.418 86.696-62.219Q86.699-62.203 86.701-62.186Q86.703-62.168 86.703-62.153L87.496-60.059L88.207-61.969Q88.172-62.063 88.172-62.108Q88.172-62.153 88.137-62.153Q88.071-62.332 87.940-62.375Q87.809-62.418 87.555-62.418L87.555-62.715L89.145-62.715L89.145-62.418Q88.696-62.418 88.696-62.219Q88.699-62.200 88.701-62.182Q88.703-62.164 88.703-62.153L89.535-59.938L90.289-61.938Q90.313-61.996 90.313-62.067Q90.313-62.227 90.176-62.323Q90.039-62.418 89.871-62.418L89.871-62.715L91.258-62.715L91.258-62.418Q91.024-62.418 90.846-62.291Q90.668-62.164 90.586-61.938L89.602-59.297Q89.547-59.188 89.434-59.188L89.375-59.188Q89.262-59.188 89.219-59.297L88.360-61.571L87.504-59.297Q87.465-59.188 87.344-59.188L87.289-59.188Q87.176-59.188 87.121-59.297M94.168-59.266L91.785-59.266L91.785-59.563Q92.110-59.563 92.352-59.610Q92.594-59.657 92.594-59.825L92.594-64.168Q92.594-64.340 92.352-64.387Q92.110-64.434 91.785-64.434L91.785-64.731L94.731-64.731Q95.074-64.731 95.430-64.631Q95.785-64.532 96.080-64.340Q96.375-64.149 96.557-63.864Q96.739-63.578 96.739-63.219Q96.739-62.746 96.428-62.411Q96.117-62.075 95.653-61.903Q95.188-61.731 94.731-61.731L93.364-61.731L93.364-59.825Q93.364-59.657 93.606-59.610Q93.848-59.563 94.168-59.563L94.168-59.266M93.336-64.168L93.336-62L94.512-62Q95.199-62 95.537-62.276Q95.875-62.551 95.875-63.219Q95.875-63.883 95.537-64.159Q95.199-64.434 94.512-64.434L93.739-64.434Q93.520-64.434 93.428-64.391Q93.336-64.348 93.336-64.168M97.684-62Q97.684-62.594 97.916-63.125Q98.149-63.657 98.565-64.057Q98.981-64.457 99.514-64.678Q100.047-64.899 100.653-64.899Q101.090-64.899 101.489-64.717Q101.887-64.536 102.196-64.203L102.668-64.868Q102.699-64.899 102.731-64.899L102.778-64.899Q102.805-64.899 102.836-64.868Q102.867-64.836 102.867-64.809L102.867-62.672Q102.867-62.649 102.836-62.618Q102.805-62.586 102.778-62.586L102.660-62.586Q102.633-62.586 102.602-62.618Q102.571-62.649 102.571-62.672Q102.571-62.938 102.428-63.291Q102.285-63.645 102.106-63.883Q101.852-64.215 101.502-64.409Q101.153-64.602 100.746-64.602Q100.242-64.602 99.789-64.383Q99.336-64.164 99.043-63.770Q98.547-63.102 98.547-62Q98.547-61.469 98.684-61.002Q98.821-60.536 99.096-60.170Q99.371-59.805 99.791-59.600Q100.211-59.395 100.754-59.395Q101.242-59.395 101.666-59.639Q102.090-59.883 102.338-60.303Q102.586-60.723 102.586-61.219Q102.586-61.254 102.615-61.280Q102.645-61.305 102.676-61.305L102.778-61.305Q102.821-61.305 102.844-61.276Q102.867-61.246 102.867-61.203Q102.867-60.766 102.692-60.377Q102.516-59.989 102.205-59.705Q101.895-59.422 101.485-59.260Q101.074-59.098 100.653-59.098Q100.063-59.098 99.522-59.319Q98.981-59.539 98.565-59.944Q98.149-60.348 97.916-60.877Q97.684-61.407 97.684-62M109.309-60.243L103.996-60.243Q103.918-60.250 103.869-60.299Q103.821-60.348 103.821-60.426Q103.821-60.496 103.867-60.547Q103.914-60.598 103.996-60.610L109.309-60.610Q109.383-60.598 109.430-60.547Q109.477-60.496 109.477-60.426Q109.477-60.348 109.428-60.299Q109.379-60.250 109.309-60.243M109.309-61.930L103.996-61.930Q103.918-61.938 103.869-61.987Q103.821-62.036 103.821-62.114Q103.821-62.184 103.867-62.235Q103.914-62.286 103.996-62.297L109.309-62.297Q109.383-62.286 109.430-62.235Q109.477-62.184 109.477-62.114Q109.477-62.036 109.428-61.987Q109.379-61.938 109.309-61.930M111.996-59.297L110.774-62.153Q110.692-62.328 110.547-62.373Q110.403-62.418 110.133-62.418L110.133-62.715L111.844-62.715L111.844-62.418Q111.422-62.418 111.422-62.235Q111.422-62.200 111.438-62.153L112.383-59.961L113.223-61.938Q113.262-62.016 113.262-62.106Q113.262-62.246 113.156-62.332Q113.051-62.418 112.910-62.418L112.910-62.715L114.262-62.715L114.262-62.418Q113.739-62.418 113.524-61.938L112.399-59.297Q112.336-59.188 112.231-59.188L112.164-59.188Q112.051-59.188 111.996-59.297\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 122.924)\">\u003Cpath d=\"M114.321-60.098Q114.321-60.582 114.723-60.877Q115.126-61.172 115.676-61.291Q116.227-61.411 116.719-61.411L116.719-61.700Q116.719-61.926 116.604-62.133Q116.489-62.340 116.292-62.459Q116.094-62.578 115.864-62.578Q115.438-62.578 115.153-62.473Q115.223-62.446 115.270-62.391Q115.317-62.336 115.342-62.266Q115.368-62.196 115.368-62.121Q115.368-62.016 115.317-61.924Q115.266-61.832 115.174-61.782Q115.083-61.731 114.977-61.731Q114.872-61.731 114.780-61.782Q114.688-61.832 114.637-61.924Q114.587-62.016 114.587-62.121Q114.587-62.539 114.975-62.686Q115.364-62.832 115.864-62.832Q116.196-62.832 116.549-62.702Q116.903-62.571 117.131-62.317Q117.360-62.063 117.360-61.715L117.360-59.914Q117.360-59.782 117.432-59.672Q117.505-59.563 117.633-59.563Q117.758-59.563 117.827-59.668Q117.895-59.774 117.895-59.914L117.895-60.426L118.176-60.426L118.176-59.914Q118.176-59.711 118.059-59.553Q117.942-59.395 117.760-59.311Q117.579-59.227 117.376-59.227Q117.145-59.227 116.993-59.399Q116.840-59.571 116.809-59.801Q116.649-59.520 116.340-59.354Q116.032-59.188 115.680-59.188Q115.169-59.188 114.745-59.411Q114.321-59.633 114.321-60.098M115.008-60.098Q115.008-59.813 115.235-59.627Q115.462-59.442 115.755-59.442Q116.001-59.442 116.225-59.559Q116.450-59.676 116.585-59.879Q116.719-60.082 116.719-60.336L116.719-61.168Q116.454-61.168 116.169-61.114Q115.883-61.059 115.612-60.930Q115.340-60.801 115.174-60.594Q115.008-60.387 115.008-60.098M120.383-59.266L118.551-59.266L118.551-59.563Q118.825-59.563 118.993-59.610Q119.161-59.657 119.161-59.825L119.161-63.985Q119.161-64.200 119.098-64.295Q119.036-64.391 118.917-64.412Q118.797-64.434 118.551-64.434L118.551-64.731L119.774-64.817L119.774-59.825Q119.774-59.657 119.942-59.610Q120.110-59.563 120.383-59.563L120.383-59.266M123.325-59.266L120.942-59.266L120.942-59.563Q121.266-59.563 121.508-59.610Q121.751-59.657 121.751-59.825L121.751-64.168Q121.751-64.340 121.508-64.387Q121.266-64.434 120.942-64.434L120.942-64.731L123.887-64.731Q124.231-64.731 124.587-64.631Q124.942-64.532 125.237-64.340Q125.532-64.149 125.714-63.864Q125.895-63.578 125.895-63.219Q125.895-62.746 125.585-62.411Q125.274-62.075 124.809-61.903Q124.344-61.731 123.887-61.731L122.520-61.731L122.520-59.825Q122.520-59.657 122.762-59.610Q123.005-59.563 123.325-59.563L123.325-59.266M122.493-64.168L122.493-62L123.669-62Q124.356-62 124.694-62.276Q125.032-62.551 125.032-63.219Q125.032-63.883 124.694-64.159Q124.356-64.434 123.669-64.434L122.895-64.434Q122.676-64.434 122.585-64.391Q122.493-64.348 122.493-64.168M132.329-60.243L127.016-60.243Q126.938-60.250 126.889-60.299Q126.840-60.348 126.840-60.426Q126.840-60.496 126.887-60.547Q126.934-60.598 127.016-60.610L132.329-60.610Q132.403-60.598 132.450-60.547Q132.497-60.496 132.497-60.426Q132.497-60.348 132.448-60.299Q132.399-60.250 132.329-60.243M132.329-61.930L127.016-61.930Q126.938-61.938 126.889-61.987Q126.840-62.036 126.840-62.114Q126.840-62.184 126.887-62.235Q126.934-62.286 127.016-62.297L132.329-62.297Q132.403-62.286 132.450-62.235Q132.497-62.184 132.497-62.114Q132.497-62.036 132.448-61.987Q132.399-61.938 132.329-61.930M135.098-59.098Q134.395-59.098 133.995-59.498Q133.594-59.899 133.450-60.508Q133.305-61.118 133.305-61.817Q133.305-62.340 133.376-62.803Q133.446-63.266 133.639-63.678Q133.833-64.090 134.190-64.338Q134.548-64.586 135.098-64.586Q135.649-64.586 136.006-64.338Q136.364-64.090 136.555-63.680Q136.747-63.270 136.817-62.801Q136.887-62.332 136.887-61.817Q136.887-61.118 136.745-60.510Q136.602-59.903 136.202-59.500Q135.801-59.098 135.098-59.098M135.098-59.356Q135.571-59.356 135.803-59.791Q136.036-60.227 136.090-60.766Q136.145-61.305 136.145-61.946Q136.145-62.942 135.962-63.635Q135.778-64.328 135.098-64.328Q134.731-64.328 134.510-64.090Q134.290-63.852 134.194-63.495Q134.098-63.137 134.073-62.766Q134.048-62.395 134.048-61.946Q134.048-61.305 134.102-60.766Q134.157-60.227 134.389-59.791Q134.622-59.356 135.098-59.356M138.848-59.266L137.352-59.266L137.352-59.563Q137.985-59.563 138.407-60.043L139.176-60.953L138.184-62.153Q138.028-62.332 137.866-62.375Q137.704-62.418 137.399-62.418L137.399-62.715L139.087-62.715L139.087-62.418Q138.993-62.418 138.917-62.375Q138.840-62.332 138.840-62.243Q138.840-62.200 138.872-62.153L139.528-61.364L140.008-61.938Q140.126-62.075 140.126-62.211Q140.126-62.301 140.075-62.360Q140.024-62.418 139.942-62.418L139.942-62.715L141.430-62.715L141.430-62.418Q140.794-62.418 140.383-61.938L139.704-61.137L140.790-59.825Q140.950-59.649 141.110-59.606Q141.270-59.563 141.575-59.563L141.575-59.266L139.887-59.266L139.887-59.563Q139.977-59.563 140.055-59.606Q140.133-59.649 140.133-59.739Q140.133-59.762 140.102-59.825L139.360-60.731L138.774-60.043Q138.657-59.907 138.657-59.770Q138.657-59.684 138.708-59.623Q138.758-59.563 138.848-59.563L138.848-59.266M145.290-59.266L142.130-59.266L142.130-59.473Q142.130-59.500 142.153-59.532L143.505-60.930Q143.883-61.317 144.131-61.606Q144.380-61.895 144.553-62.252Q144.727-62.610 144.727-63Q144.727-63.348 144.594-63.641Q144.462-63.934 144.208-64.112Q143.954-64.289 143.598-64.289Q143.239-64.289 142.948-64.094Q142.657-63.899 142.512-63.571L142.567-63.571Q142.751-63.571 142.876-63.450Q143.001-63.328 143.001-63.137Q143.001-62.957 142.876-62.828Q142.751-62.700 142.567-62.700Q142.387-62.700 142.258-62.828Q142.130-62.957 142.130-63.137Q142.130-63.539 142.350-63.875Q142.571-64.211 142.936-64.399Q143.301-64.586 143.704-64.586Q144.184-64.586 144.600-64.399Q145.016-64.211 145.268-63.850Q145.520-63.489 145.520-63Q145.520-62.641 145.366-62.338Q145.212-62.036 144.960-61.776Q144.708-61.516 144.358-61.231Q144.008-60.946 143.840-60.793L142.911-59.953L143.626-59.953Q145.001-59.953 145.040-59.993Q145.110-60.071 145.153-60.256Q145.196-60.442 145.239-60.731L145.520-60.731L145.290-59.266M148.071-59.098Q147.368-59.098 146.967-59.498Q146.567-59.899 146.423-60.508Q146.278-61.118 146.278-61.817Q146.278-62.340 146.348-62.803Q146.419-63.266 146.612-63.678Q146.805-64.090 147.163-64.338Q147.520-64.586 148.071-64.586Q148.622-64.586 148.979-64.338Q149.337-64.090 149.528-63.680Q149.719-63.270 149.790-62.801Q149.860-62.332 149.860-61.817Q149.860-61.118 149.717-60.510Q149.575-59.903 149.174-59.500Q148.774-59.098 148.071-59.098M148.071-59.356Q148.544-59.356 148.776-59.791Q149.008-60.227 149.063-60.766Q149.118-61.305 149.118-61.946Q149.118-62.942 148.934-63.635Q148.751-64.328 148.071-64.328Q147.704-64.328 147.483-64.090Q147.262-63.852 147.167-63.495Q147.071-63.137 147.046-62.766Q147.020-62.395 147.020-61.946Q147.020-61.305 147.075-60.766Q147.130-60.227 147.362-59.791Q147.594-59.356 148.071-59.356\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 73.608h404.029\"\u002F>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">Every signal of cycle 4, the first addq %rdi,%rax. Fetch splits the two bytes 60 70 into icode 6, ifun 0, rA 7, rB 0; the control logic selects srcA=rA, srcB=rB, dstE=rB; the ALU adds 0x0 and 0x3; nothing touches memory; the E port commits 0x3 to %rax and the PC advances to 0x20.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:301.299px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 225.974 276.701\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-54.51 198.231H8.086v-25.607H-54.51Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-20.599 2.733)\">\u003Cpath d=\"M-20.478 185.427L-22.860 185.427L-22.860 185.130Q-22.536 185.130-22.294 185.083Q-22.052 185.036-22.052 184.868L-22.052 180.525Q-22.052 180.353-22.294 180.306Q-22.536 180.259-22.860 180.259L-22.860 179.962L-19.915 179.962Q-19.571 179.962-19.216 180.062Q-18.860 180.161-18.566 180.353Q-18.271 180.544-18.089 180.829Q-17.907 181.114-17.907 181.474Q-17.907 181.947-18.218 182.282Q-18.528 182.618-18.993 182.790Q-19.458 182.962-19.915 182.962L-21.282 182.962L-21.282 184.868Q-21.282 185.036-21.040 185.083Q-20.798 185.130-20.478 185.130L-20.478 185.427M-21.310 180.525L-21.310 182.693L-20.134 182.693Q-19.446 182.693-19.108 182.417Q-18.771 182.142-18.771 181.474Q-18.771 180.810-19.108 180.534Q-19.446 180.259-20.134 180.259L-20.907 180.259Q-21.126 180.259-21.218 180.302Q-21.310 180.345-21.310 180.525M-16.962 182.693Q-16.962 182.099-16.730 181.568Q-16.497 181.036-16.081 180.636Q-15.665 180.236-15.132 180.015Q-14.599 179.794-13.993 179.794Q-13.556 179.794-13.157 179.976Q-12.759 180.157-12.450 180.489L-11.978 179.825Q-11.946 179.794-11.915 179.794L-11.868 179.794Q-11.841 179.794-11.810 179.825Q-11.778 179.857-11.778 179.884L-11.778 182.021Q-11.778 182.044-11.810 182.075Q-11.841 182.107-11.868 182.107L-11.985 182.107Q-12.013 182.107-12.044 182.075Q-12.075 182.044-12.075 182.021Q-12.075 181.755-12.218 181.402Q-12.360 181.048-12.540 180.810Q-12.794 180.478-13.144 180.284Q-13.493 180.091-13.899 180.091Q-14.403 180.091-14.857 180.310Q-15.310 180.529-15.603 180.923Q-16.099 181.591-16.099 182.693Q-16.099 183.224-15.962 183.691Q-15.825 184.157-15.550 184.523Q-15.274 184.888-14.855 185.093Q-14.435 185.298-13.892 185.298Q-13.403 185.298-12.980 185.054Q-12.556 184.810-12.308 184.390Q-12.060 183.970-12.060 183.474Q-12.060 183.439-12.030 183.413Q-12.001 183.388-11.970 183.388L-11.868 183.388Q-11.825 183.388-11.802 183.417Q-11.778 183.447-11.778 183.489Q-11.778 183.927-11.954 184.316Q-12.130 184.704-12.441 184.988Q-12.751 185.271-13.161 185.433Q-13.571 185.595-13.993 185.595Q-14.583 185.595-15.124 185.374Q-15.665 185.154-16.081 184.749Q-16.497 184.345-16.730 183.816Q-16.962 183.286-16.962 182.693\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-20.599 2.733)\">\u003Cpath d=\"M-2.498 184.450L-7.811 184.450Q-7.889 184.443-7.938 184.394Q-7.986 184.345-7.986 184.267Q-7.986 184.197-7.939 184.146Q-7.893 184.095-7.811 184.083L-2.498 184.083Q-2.424 184.095-2.377 184.146Q-2.330 184.197-2.330 184.267Q-2.330 184.345-2.379 184.394Q-2.428 184.443-2.498 184.450M-2.498 182.763L-7.811 182.763Q-7.889 182.755-7.938 182.706Q-7.986 182.657-7.986 182.579Q-7.986 182.509-7.939 182.458Q-7.893 182.407-7.811 182.396L-2.498 182.396Q-2.424 182.407-2.377 182.458Q-2.330 182.509-2.330 182.579Q-2.330 182.657-2.379 182.706Q-2.428 182.755-2.498 182.763\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-20.599 2.733)\">\u003Cpath d=\"M3.106 185.505Q2.672 185.505 2.340 185.267Q2.008 185.029 1.788 184.640Q1.567 184.251 1.460 183.814Q1.352 183.376 1.352 182.978Q1.352 182.587 1.462 182.144Q1.571 181.700 1.788 181.320Q2.005 180.939 2.339 180.698Q2.672 180.458 3.106 180.458Q3.661 180.458 4.061 180.857Q4.462 181.255 4.659 181.841Q4.856 182.427 4.856 182.978Q4.856 183.532 4.659 184.120Q4.462 184.708 4.061 185.107Q3.661 185.505 3.106 185.505M3.106 184.947Q3.407 184.947 3.624 184.730Q3.840 184.513 3.967 184.185Q4.094 183.857 4.155 183.511Q4.215 183.165 4.215 182.884Q4.215 182.634 4.153 182.308Q4.090 181.982 3.960 181.691Q3.829 181.400 3.616 181.210Q3.403 181.021 3.106 181.021Q2.731 181.021 2.479 181.333Q2.227 181.646 2.110 182.079Q1.993 182.513 1.993 182.884Q1.993 183.282 2.106 183.763Q2.219 184.243 2.467 184.595Q2.715 184.947 3.106 184.947M5.489 185.189L5.489 185.099Q5.528 184.892 5.735 184.868L6.141 184.868L7.071 183.650L6.200 182.540L5.782 182.540Q5.587 182.521 5.536 182.298L5.536 182.212Q5.587 182.001 5.782 181.978L6.942 181.978Q7.141 182.001 7.192 182.212L7.192 182.298Q7.141 182.517 6.942 182.540L6.833 182.540L7.329 183.197L7.805 182.540L7.688 182.540Q7.489 182.517 7.438 182.298L7.438 182.212Q7.489 182.001 7.688 181.978L8.848 181.978Q9.044 181.997 9.094 182.212L9.094 182.298Q9.044 182.517 8.848 182.540L8.438 182.540L7.590 183.650L8.551 184.868L8.958 184.868Q9.157 184.892 9.208 185.099L9.208 185.189Q9.169 185.404 8.958 185.427L7.805 185.427Q7.598 185.404 7.559 185.189L7.559 185.099Q7.598 184.892 7.805 184.868L7.934 184.868L7.329 184.013L6.743 184.868L6.887 184.868Q7.094 184.892 7.133 185.099L7.133 185.189Q7.094 185.404 6.887 185.427L5.735 185.427Q5.540 185.407 5.489 185.189M10.333 185.189L10.333 185.099Q10.383 184.892 10.583 184.868L11.399 184.868L11.399 181.685Q11.020 181.993 10.567 181.993Q10.337 181.993 10.286 181.763L10.286 181.673Q10.337 181.458 10.532 181.435Q10.860 181.435 11.114 181.197Q11.368 180.958 11.508 180.611Q11.579 180.482 11.735 180.458L11.790 180.458Q11.985 180.478 12.036 180.693L12.036 184.868L12.852 184.868Q13.051 184.892 13.102 185.099L13.102 185.189Q13.051 185.404 12.852 185.427L10.583 185.427Q10.383 185.404 10.333 185.189M17.235 183.939L14.794 183.939Q14.848 184.216 15.046 184.439Q15.243 184.661 15.520 184.784Q15.797 184.907 16.083 184.907Q16.555 184.907 16.778 184.618Q16.786 184.607 16.842 184.501Q16.899 184.396 16.948 184.353Q16.997 184.310 17.090 184.298L17.235 184.298Q17.426 184.318 17.485 184.532L17.485 184.587Q17.419 184.888 17.188 185.085Q16.958 185.282 16.645 185.374Q16.333 185.466 16.028 185.466Q15.544 185.466 15.104 185.238Q14.665 185.009 14.397 184.609Q14.130 184.208 14.130 183.716L14.130 183.657Q14.130 183.189 14.376 182.786Q14.622 182.384 15.030 182.150Q15.438 181.915 15.907 181.915Q16.411 181.915 16.764 182.138Q17.118 182.361 17.301 182.749Q17.485 183.138 17.485 183.642L17.485 183.700Q17.426 183.915 17.235 183.939M14.801 183.388L16.829 183.388Q16.782 182.978 16.544 182.726Q16.305 182.474 15.907 182.474Q15.512 182.474 15.206 182.736Q14.899 182.997 14.801 183.388\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-68.737 152.707h91.05v-25.608h-91.05Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-36.86 -43.569)\">\u003Cpath d=\"M-20.450 185.427L-22.915 185.427L-22.915 185.130Q-22.583 185.130-22.325 185.083Q-22.067 185.036-22.067 184.868L-22.067 180.525Q-22.067 180.259-22.915 180.259L-22.915 179.962L-20.450 179.962L-20.450 180.259Q-21.302 180.259-21.302 180.525L-21.302 184.868Q-21.302 185.130-20.450 185.130L-20.450 185.427M-17.989 185.427L-19.845 185.427L-19.845 185.130Q-19.571 185.130-19.403 185.083Q-19.235 185.036-19.235 184.868L-19.235 182.732Q-19.235 182.517-19.298 182.421Q-19.360 182.325-19.480 182.304Q-19.599 182.282-19.845 182.282L-19.845 181.986L-18.653 181.900L-18.653 182.634Q-18.540 182.419-18.347 182.251Q-18.153 182.083-17.915 181.991Q-17.677 181.900-17.423 181.900Q-16.255 181.900-16.255 182.978L-16.255 184.868Q-16.255 185.036-16.085 185.083Q-15.915 185.130-15.646 185.130L-15.646 185.427L-17.501 185.427L-17.501 185.130Q-17.228 185.130-17.060 185.083Q-16.892 185.036-16.892 184.868L-16.892 182.993Q-16.892 182.611-17.013 182.382Q-17.134 182.154-17.485 182.154Q-17.798 182.154-18.052 182.316Q-18.306 182.478-18.452 182.747Q-18.599 183.017-18.599 183.314L-18.599 184.868Q-18.599 185.036-18.429 185.083Q-18.259 185.130-17.989 185.130L-17.989 185.427M-15.157 185.419L-15.157 184.197Q-15.157 184.169-15.126 184.138Q-15.095 184.107-15.071 184.107L-14.966 184.107Q-14.896 184.107-14.880 184.169Q-14.817 184.489-14.679 184.730Q-14.540 184.970-14.308 185.111Q-14.075 185.251-13.767 185.251Q-13.528 185.251-13.319 185.191Q-13.110 185.130-12.974 184.982Q-12.837 184.833-12.837 184.587Q-12.837 184.333-13.048 184.167Q-13.259 184.001-13.528 183.947L-14.149 183.833Q-14.556 183.755-14.857 183.499Q-15.157 183.243-15.157 182.868Q-15.157 182.501-14.956 182.279Q-14.755 182.056-14.431 181.958Q-14.107 181.861-13.767 181.861Q-13.302 181.861-13.005 182.068L-12.782 181.884Q-12.759 181.861-12.728 181.861L-12.677 181.861Q-12.646 181.861-12.618 181.888Q-12.591 181.915-12.591 181.947L-12.591 182.931Q-12.591 182.962-12.616 182.991Q-12.642 183.021-12.677 183.021L-12.782 183.021Q-12.817 183.021-12.845 182.993Q-12.872 182.966-12.872 182.931Q-12.872 182.532-13.124 182.312Q-13.376 182.091-13.774 182.091Q-14.130 182.091-14.413 182.214Q-14.696 182.337-14.696 182.642Q-14.696 182.861-14.495 182.993Q-14.294 183.126-14.048 183.169L-13.423 183.282Q-12.993 183.372-12.685 183.669Q-12.376 183.966-12.376 184.380Q-12.376 184.950-12.774 185.228Q-13.173 185.505-13.767 185.505Q-14.317 185.505-14.669 185.169L-14.966 185.482Q-14.989 185.505-15.024 185.505L-15.071 185.505Q-15.095 185.505-15.126 185.474Q-15.157 185.443-15.157 185.419M-11.224 184.466L-11.224 182.275L-11.927 182.275L-11.927 182.021Q-11.571 182.021-11.329 181.788Q-11.087 181.556-10.976 181.208Q-10.864 180.861-10.864 180.505L-10.583 180.505L-10.583 181.978L-9.407 181.978L-9.407 182.275L-10.583 182.275L-10.583 184.450Q-10.583 184.771-10.464 184.999Q-10.345 185.228-10.064 185.228Q-9.884 185.228-9.767 185.105Q-9.649 184.982-9.597 184.802Q-9.544 184.622-9.544 184.450L-9.544 183.978L-9.263 183.978L-9.263 184.466Q-9.263 184.720-9.368 184.960Q-9.474 185.200-9.671 185.353Q-9.868 185.505-10.126 185.505Q-10.442 185.505-10.694 185.382Q-10.946 185.259-11.085 185.025Q-11.224 184.790-11.224 184.466M-6.536 185.427L-8.517 185.427L-8.517 185.130Q-8.247 185.130-8.079 185.085Q-7.911 185.040-7.911 184.868L-7.911 182.732Q-7.911 182.517-7.974 182.421Q-8.036 182.325-8.153 182.304Q-8.271 182.282-8.517 182.282L-8.517 181.986L-7.349 181.900L-7.349 182.685Q-7.271 182.474-7.118 182.288Q-6.966 182.103-6.767 182.001Q-6.567 181.900-6.341 181.900Q-6.095 181.900-5.903 182.044Q-5.712 182.189-5.712 182.419Q-5.712 182.575-5.817 182.685Q-5.923 182.794-6.079 182.794Q-6.235 182.794-6.345 182.685Q-6.454 182.575-6.454 182.419Q-6.454 182.259-6.349 182.154Q-6.673 182.154-6.888 182.382Q-7.103 182.611-7.198 182.950Q-7.294 183.290-7.294 183.595L-7.294 184.868Q-7.294 185.036-7.067 185.083Q-6.841 185.130-6.536 185.130L-6.536 185.427M-4.548 184.474L-4.548 182.732Q-4.548 182.517-4.610 182.421Q-4.673 182.325-4.792 182.304Q-4.911 182.282-5.157 182.282L-5.157 181.986L-3.911 181.900L-3.911 184.450L-3.911 184.474Q-3.911 184.786-3.857 184.948Q-3.802 185.111-3.651 185.181Q-3.501 185.251-3.181 185.251Q-2.751 185.251-2.478 184.913Q-2.204 184.575-2.204 184.130L-2.204 182.732Q-2.204 182.517-2.267 182.421Q-2.329 182.325-2.448 182.304Q-2.567 182.282-2.814 182.282L-2.814 181.986L-1.567 181.900L-1.567 184.685Q-1.567 184.896-1.505 184.991Q-1.442 185.087-1.323 185.109Q-1.204 185.130-0.958 185.130L-0.958 185.427L-2.181 185.505L-2.181 184.884Q-2.349 185.173-2.630 185.339Q-2.911 185.505-3.232 185.505Q-4.548 185.505-4.548 184.474M-0.470 183.700Q-0.470 183.204-0.220 182.779Q0.030 182.353 0.450 182.107Q0.870 181.861 1.370 181.861Q1.909 181.861 2.300 181.986Q2.690 182.111 2.690 182.525Q2.690 182.630 2.640 182.722Q2.589 182.814 2.497 182.864Q2.405 182.915 2.296 182.915Q2.190 182.915 2.099 182.864Q2.007 182.814 1.956 182.722Q1.905 182.630 1.905 182.525Q1.905 182.302 2.073 182.197Q1.851 182.138 1.378 182.138Q1.081 182.138 0.866 182.277Q0.651 182.415 0.520 182.646Q0.390 182.876 0.331 183.146Q0.272 183.415 0.272 183.700Q0.272 184.095 0.405 184.445Q0.538 184.794 0.809 185.011Q1.081 185.228 1.479 185.228Q1.854 185.228 2.130 185.011Q2.405 184.794 2.507 184.435Q2.522 184.372 2.585 184.372L2.690 184.372Q2.726 184.372 2.751 184.400Q2.776 184.427 2.776 184.466L2.776 184.489Q2.643 184.970 2.259 185.238Q1.874 185.505 1.370 185.505Q1.007 185.505 0.673 185.368Q0.339 185.232 0.079 184.982Q-0.181 184.732-0.325 184.396Q-0.470 184.060-0.470 183.700M3.890 184.466L3.890 182.275L3.186 182.275L3.186 182.021Q3.542 182.021 3.784 181.788Q4.026 181.556 4.138 181.208Q4.249 180.861 4.249 180.505L4.530 180.505L4.530 181.978L5.706 181.978L5.706 182.275L4.530 182.275L4.530 184.450Q4.530 184.771 4.649 184.999Q4.768 185.228 5.050 185.228Q5.229 185.228 5.347 185.105Q5.464 184.982 5.517 184.802Q5.569 184.622 5.569 184.450L5.569 183.978L5.851 183.978L5.851 184.466Q5.851 184.720 5.745 184.960Q5.640 185.200 5.442 185.353Q5.245 185.505 4.987 185.505Q4.671 185.505 4.419 185.382Q4.167 185.259 4.028 185.025Q3.890 184.790 3.890 184.466M8.429 185.427L6.651 185.427L6.651 185.130Q6.925 185.130 7.093 185.083Q7.261 185.036 7.261 184.868L7.261 182.732Q7.261 182.517 7.204 182.421Q7.147 182.325 7.034 182.304Q6.921 182.282 6.675 182.282L6.675 181.986L7.874 181.900L7.874 184.868Q7.874 185.036 8.020 185.083Q8.167 185.130 8.429 185.130L8.429 185.427M6.987 180.505Q6.987 180.314 7.122 180.183Q7.257 180.052 7.452 180.052Q7.573 180.052 7.677 180.114Q7.780 180.177 7.843 180.281Q7.905 180.384 7.905 180.505Q7.905 180.700 7.774 180.835Q7.643 180.970 7.452 180.970Q7.253 180.970 7.120 180.837Q6.987 180.704 6.987 180.505M8.929 183.732Q8.929 183.228 9.184 182.796Q9.440 182.364 9.876 182.113Q10.311 181.861 10.811 181.861Q11.198 181.861 11.540 182.005Q11.882 182.150 12.143 182.411Q12.405 182.673 12.548 183.009Q12.690 183.345 12.690 183.732Q12.690 184.224 12.427 184.634Q12.163 185.044 11.733 185.275Q11.304 185.505 10.811 185.505Q10.319 185.505 9.886 185.273Q9.452 185.040 9.190 184.632Q8.929 184.224 8.929 183.732M10.811 185.228Q11.268 185.228 11.520 185.005Q11.772 184.782 11.860 184.431Q11.948 184.079 11.948 183.634Q11.948 183.204 11.854 182.866Q11.761 182.529 11.507 182.322Q11.253 182.114 10.811 182.114Q10.163 182.114 9.919 182.531Q9.675 182.947 9.675 183.634Q9.675 184.079 9.763 184.431Q9.851 184.782 10.102 185.005Q10.354 185.228 10.811 185.228M15.104 185.427L13.249 185.427L13.249 185.130Q13.522 185.130 13.690 185.083Q13.858 185.036 13.858 184.868L13.858 182.732Q13.858 182.517 13.796 182.421Q13.733 182.325 13.614 182.304Q13.495 182.282 13.249 182.282L13.249 181.986L14.440 181.900L14.440 182.634Q14.554 182.419 14.747 182.251Q14.940 182.083 15.179 181.991Q15.417 181.900 15.671 181.900Q16.839 181.900 16.839 182.978L16.839 184.868Q16.839 185.036 17.009 185.083Q17.179 185.130 17.448 185.130L17.448 185.427L15.593 185.427L15.593 185.130Q15.866 185.130 16.034 185.083Q16.202 185.036 16.202 184.868L16.202 182.993Q16.202 182.611 16.081 182.382Q15.960 182.154 15.608 182.154Q15.296 182.154 15.042 182.316Q14.788 182.478 14.642 182.747Q14.495 183.017 14.495 183.314L14.495 184.868Q14.495 185.036 14.665 185.083Q14.835 185.130 15.104 185.130\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-36.86 -43.569)\">\u003Cpath d=\"M22.683 185.427L20.828 185.427L20.828 185.130Q21.101 185.130 21.269 185.083Q21.437 185.036 21.437 184.868L21.437 182.732Q21.437 182.517 21.374 182.421Q21.312 182.325 21.193 182.304Q21.074 182.282 20.828 182.282L20.828 181.986L22.019 181.900L22.019 182.634Q22.132 182.419 22.326 182.251Q22.519 182.083 22.757 181.991Q22.995 181.900 23.249 181.900Q24.210 181.900 24.386 182.611Q24.570 182.282 24.898 182.091Q25.226 181.900 25.605 181.900Q26.781 181.900 26.781 182.978L26.781 184.868Q26.781 185.036 26.949 185.083Q27.117 185.130 27.386 185.130L27.386 185.427L25.531 185.427L25.531 185.130Q25.804 185.130 25.972 185.085Q26.140 185.040 26.140 184.868L26.140 182.993Q26.140 182.607 26.015 182.380Q25.890 182.154 25.538 182.154Q25.234 182.154 24.978 182.316Q24.722 182.478 24.574 182.747Q24.425 183.017 24.425 183.314L24.425 184.868Q24.425 185.036 24.595 185.083Q24.765 185.130 25.035 185.130L25.035 185.427L23.179 185.427L23.179 185.130Q23.453 185.130 23.620 185.083Q23.788 185.036 23.788 184.868L23.788 182.993Q23.788 182.607 23.663 182.380Q23.538 182.154 23.187 182.154Q22.882 182.154 22.626 182.316Q22.370 182.478 22.222 182.747Q22.074 183.017 22.074 183.314L22.074 184.868Q22.074 185.036 22.244 185.083Q22.413 185.130 22.683 185.130L22.683 185.427M27.831 183.673Q27.831 183.193 28.064 182.777Q28.296 182.361 28.706 182.111Q29.117 181.861 29.593 181.861Q30.324 181.861 30.722 182.302Q31.120 182.743 31.120 183.474Q31.120 183.579 31.027 183.603L28.578 183.603L28.578 183.673Q28.578 184.083 28.699 184.439Q28.820 184.794 29.091 185.011Q29.363 185.228 29.792 185.228Q30.156 185.228 30.453 184.999Q30.749 184.771 30.851 184.419Q30.859 184.372 30.945 184.357L31.027 184.357Q31.120 184.384 31.120 184.466Q31.120 184.474 31.113 184.505Q31.050 184.732 30.911 184.915Q30.773 185.099 30.581 185.232Q30.390 185.364 30.171 185.435Q29.953 185.505 29.714 185.505Q29.343 185.505 29.005 185.368Q28.667 185.232 28.400 184.980Q28.132 184.728 27.982 184.388Q27.831 184.048 27.831 183.673M28.585 183.364L30.546 183.364Q30.546 183.060 30.445 182.769Q30.343 182.478 30.126 182.296Q29.910 182.114 29.593 182.114Q29.292 182.114 29.062 182.302Q28.831 182.489 28.708 182.781Q28.585 183.072 28.585 183.364M33.538 185.427L31.683 185.427L31.683 185.130Q31.956 185.130 32.124 185.083Q32.292 185.036 32.292 184.868L32.292 182.732Q32.292 182.517 32.230 182.421Q32.167 182.325 32.048 182.304Q31.929 182.282 31.683 182.282L31.683 181.986L32.874 181.900L32.874 182.634Q32.988 182.419 33.181 182.251Q33.374 182.083 33.613 181.991Q33.851 181.900 34.105 181.900Q35.066 181.900 35.242 182.611Q35.425 182.282 35.753 182.091Q36.081 181.900 36.460 181.900Q37.636 181.900 37.636 182.978L37.636 184.868Q37.636 185.036 37.804 185.083Q37.972 185.130 38.242 185.130L38.242 185.427L36.386 185.427L36.386 185.130Q36.660 185.130 36.828 185.085Q36.995 185.040 36.995 184.868L36.995 182.993Q36.995 182.607 36.870 182.380Q36.745 182.154 36.394 182.154Q36.089 182.154 35.833 182.316Q35.578 182.478 35.429 182.747Q35.281 183.017 35.281 183.314L35.281 184.868Q35.281 185.036 35.451 185.083Q35.620 185.130 35.890 185.130L35.890 185.427L34.035 185.427L34.035 185.130Q34.308 185.130 34.476 185.083Q34.644 185.036 34.644 184.868L34.644 182.993Q34.644 182.607 34.519 182.380Q34.394 182.154 34.042 182.154Q33.738 182.154 33.482 182.316Q33.226 182.478 33.078 182.747Q32.929 183.017 32.929 183.314L32.929 184.868Q32.929 185.036 33.099 185.083Q33.269 185.130 33.538 185.130L33.538 185.427M38.687 183.732Q38.687 183.228 38.943 182.796Q39.199 182.364 39.634 182.113Q40.070 181.861 40.570 181.861Q40.956 181.861 41.298 182.005Q41.640 182.150 41.902 182.411Q42.163 182.673 42.306 183.009Q42.449 183.345 42.449 183.732Q42.449 184.224 42.185 184.634Q41.921 185.044 41.492 185.275Q41.062 185.505 40.570 185.505Q40.078 185.505 39.644 185.273Q39.210 185.040 38.949 184.632Q38.687 184.224 38.687 183.732M40.570 185.228Q41.027 185.228 41.279 185.005Q41.531 184.782 41.619 184.431Q41.706 184.079 41.706 183.634Q41.706 183.204 41.613 182.866Q41.519 182.529 41.265 182.322Q41.011 182.114 40.570 182.114Q39.921 182.114 39.677 182.531Q39.433 182.947 39.433 183.634Q39.433 184.079 39.521 184.431Q39.609 184.782 39.861 185.005Q40.113 185.228 40.570 185.228M44.941 185.427L42.960 185.427L42.960 185.130Q43.230 185.130 43.398 185.085Q43.566 185.040 43.566 184.868L43.566 182.732Q43.566 182.517 43.503 182.421Q43.441 182.325 43.324 182.304Q43.206 182.282 42.960 182.282L42.960 181.986L44.128 181.900L44.128 182.685Q44.206 182.474 44.359 182.288Q44.511 182.103 44.710 182.001Q44.910 181.900 45.136 181.900Q45.382 181.900 45.574 182.044Q45.765 182.189 45.765 182.419Q45.765 182.575 45.660 182.685Q45.554 182.794 45.398 182.794Q45.242 182.794 45.132 182.685Q45.023 182.575 45.023 182.419Q45.023 182.259 45.128 182.154Q44.804 182.154 44.589 182.382Q44.374 182.611 44.279 182.950Q44.183 183.290 44.183 183.595L44.183 184.868Q44.183 185.036 44.410 185.083Q44.636 185.130 44.941 185.130L44.941 185.427M46.663 186.724Q46.777 186.802 46.953 186.802Q47.242 186.802 47.462 186.589Q47.683 186.376 47.808 186.075L48.097 185.427L46.824 182.540Q46.742 182.364 46.597 182.320Q46.453 182.275 46.183 182.275L46.183 181.978L47.902 181.978L47.902 182.275Q47.480 182.275 47.480 182.458Q47.480 182.470 47.495 182.540L48.433 184.665L49.265 182.755Q49.304 182.665 49.304 182.587Q49.304 182.447 49.203 182.361Q49.101 182.275 48.960 182.275L48.960 181.978L50.312 181.978L50.312 182.275Q50.058 182.275 49.865 182.400Q49.671 182.525 49.566 182.755L48.120 186.075Q48.007 186.329 47.841 186.552Q47.675 186.775 47.447 186.917Q47.218 187.060 46.953 187.060Q46.656 187.060 46.415 186.868Q46.175 186.677 46.175 186.388Q46.175 186.232 46.281 186.130Q46.386 186.029 46.535 186.029Q46.640 186.029 46.720 186.075Q46.800 186.122 46.847 186.200Q46.894 186.279 46.894 186.388Q46.894 186.509 46.833 186.597Q46.773 186.685 46.663 186.724\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-68.737 101.492h91.05V75.885h-91.05Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-22.477 -94.74)\">\u003Cpath d=\"M-20.501 185.427L-22.860 185.427L-22.860 185.130Q-22.536 185.130-22.294 185.083Q-22.052 185.036-22.052 184.868L-22.052 180.525Q-22.052 180.353-22.294 180.306Q-22.536 180.259-22.860 180.259L-22.860 179.962L-20.267 179.962Q-19.935 179.962-19.548 180.048Q-19.161 180.134-18.814 180.308Q-18.466 180.482-18.247 180.763Q-18.028 181.044-18.028 181.411Q-18.028 181.736-18.230 182.001Q-18.431 182.267-18.737 182.443Q-19.044 182.618-19.372 182.708Q-19.005 182.829-18.745 183.099Q-18.485 183.368-18.435 183.732L-18.341 184.427Q-18.271 184.876-18.173 185.107Q-18.075 185.337-17.778 185.337Q-17.532 185.337-17.399 185.120Q-17.267 184.904-17.267 184.642Q-17.247 184.568-17.165 184.548L-17.083 184.548Q-16.989 184.572-16.989 184.665Q-16.989 184.896-17.087 185.111Q-17.185 185.325-17.362 185.460Q-17.540 185.595-17.771 185.595Q-18.368 185.595-18.786 185.308Q-19.204 185.021-19.204 184.450L-19.204 183.755Q-19.204 183.474-19.357 183.259Q-19.509 183.044-19.759 182.931Q-20.009 182.818-20.282 182.818L-21.310 182.818L-21.310 184.868Q-21.310 185.032-21.066 185.081Q-20.821 185.130-20.501 185.130L-20.501 185.427M-21.310 180.525L-21.310 182.564L-20.380 182.564Q-20.060 182.564-19.792 182.511Q-19.524 182.458-19.325 182.331Q-19.126 182.204-19.009 181.972Q-18.892 181.739-18.892 181.411Q-18.892 180.759-19.288 180.509Q-19.685 180.259-20.380 180.259L-20.907 180.259Q-21.126 180.259-21.218 180.302Q-21.310 180.345-21.310 180.525M-16.728 183.673Q-16.728 183.193-16.495 182.777Q-16.263 182.361-15.853 182.111Q-15.442 181.861-14.966 181.861Q-14.235 181.861-13.837 182.302Q-13.439 182.743-13.439 183.474Q-13.439 183.579-13.532 183.603L-15.982 183.603L-15.982 183.673Q-15.982 184.083-15.860 184.439Q-15.739 184.794-15.468 185.011Q-15.196 185.228-14.767 185.228Q-14.403 185.228-14.107 184.999Q-13.810 184.771-13.708 184.419Q-13.700 184.372-13.614 184.357L-13.532 184.357Q-13.439 184.384-13.439 184.466Q-13.439 184.474-13.446 184.505Q-13.509 184.732-13.648 184.915Q-13.786 185.099-13.978 185.232Q-14.169 185.364-14.388 185.435Q-14.607 185.505-14.845 185.505Q-15.216 185.505-15.554 185.368Q-15.892 185.232-16.159 184.980Q-16.427 184.728-16.577 184.388Q-16.728 184.048-16.728 183.673M-15.974 183.364L-14.013 183.364Q-14.013 183.060-14.114 182.769Q-14.216 182.478-14.433 182.296Q-14.649 182.114-14.966 182.114Q-15.267 182.114-15.497 182.302Q-15.728 182.489-15.851 182.781Q-15.974 183.072-15.974 183.364M-12.950 186.036Q-12.950 185.755-12.739 185.544Q-12.528 185.333-12.243 185.243Q-12.399 185.118-12.478 184.929Q-12.556 184.739-12.556 184.540Q-12.556 184.185-12.325 183.892Q-12.692 183.552-12.692 183.083Q-12.692 182.732-12.489 182.462Q-12.286 182.193-11.966 182.046Q-11.646 181.900-11.302 181.900Q-10.782 181.900-10.411 182.181Q-10.048 181.810-9.501 181.810Q-9.321 181.810-9.194 181.937Q-9.067 182.064-9.067 182.243Q-9.067 182.349-9.146 182.427Q-9.224 182.505-9.333 182.505Q-9.442 182.505-9.519 182.429Q-9.595 182.353-9.595 182.243Q-9.595 182.142-9.556 182.091Q-9.548 182.083-9.544 182.077Q-9.540 182.072-9.540 182.068Q-9.915 182.068-10.235 182.322Q-9.915 182.661-9.915 183.083Q-9.915 183.353-10.032 183.570Q-10.149 183.786-10.355 183.945Q-10.560 184.103-10.802 184.185Q-11.044 184.267-11.302 184.267Q-11.521 184.267-11.733 184.208Q-11.946 184.150-12.142 184.029Q-12.235 184.169-12.235 184.349Q-12.235 184.556-12.099 184.708Q-11.962 184.861-11.755 184.861L-11.060 184.861Q-10.571 184.861-10.159 184.945Q-9.747 185.029-9.468 185.286Q-9.189 185.544-9.189 186.036Q-9.189 186.400-9.509 186.632Q-9.829 186.864-10.271 186.966Q-10.712 187.068-11.067 187.068Q-11.423 187.068-11.866 186.966Q-12.310 186.864-12.630 186.632Q-12.950 186.400-12.950 186.036M-12.446 186.036Q-12.446 186.232-12.302 186.380Q-12.157 186.529-11.944 186.618Q-11.732 186.708-11.491 186.755Q-11.251 186.802-11.067 186.802Q-10.825 186.802-10.495 186.724Q-10.165 186.646-9.929 186.472Q-9.692 186.298-9.692 186.036Q-9.692 185.630-10.103 185.521Q-10.513 185.411-11.075 185.411L-11.755 185.411Q-12.024 185.411-12.235 185.589Q-12.446 185.767-12.446 186.036M-11.302 184.001Q-10.579 184.001-10.579 183.083Q-10.579 182.161-11.302 182.161Q-12.028 182.161-12.028 183.083Q-12.028 184.001-11.302 184.001M-6.845 185.427L-8.622 185.427L-8.622 185.130Q-8.349 185.130-8.181 185.083Q-8.013 185.036-8.013 184.868L-8.013 182.732Q-8.013 182.517-8.069 182.421Q-8.126 182.325-8.239 182.304Q-8.353 182.282-8.599 182.282L-8.599 181.986L-7.399 181.900L-7.399 184.868Q-7.399 185.036-7.253 185.083Q-7.107 185.130-6.845 185.130L-6.845 185.427M-8.286 180.505Q-8.286 180.314-8.151 180.183Q-8.017 180.052-7.821 180.052Q-7.700 180.052-7.597 180.114Q-7.493 180.177-7.431 180.281Q-7.368 180.384-7.368 180.505Q-7.368 180.700-7.499 180.835Q-7.630 180.970-7.821 180.970Q-8.021 180.970-8.153 180.837Q-8.286 180.704-8.286 180.505M-6.302 185.419L-6.302 184.197Q-6.302 184.169-6.271 184.138Q-6.239 184.107-6.216 184.107L-6.110 184.107Q-6.040 184.107-6.024 184.169Q-5.962 184.489-5.823 184.730Q-5.685 184.970-5.452 185.111Q-5.220 185.251-4.911 185.251Q-4.673 185.251-4.464 185.191Q-4.255 185.130-4.118 184.982Q-3.982 184.833-3.982 184.587Q-3.982 184.333-4.192 184.167Q-4.403 184.001-4.673 183.947L-5.294 183.833Q-5.700 183.755-6.001 183.499Q-6.302 183.243-6.302 182.868Q-6.302 182.501-6.101 182.279Q-5.899 182.056-5.575 181.958Q-5.251 181.861-4.911 181.861Q-4.446 181.861-4.149 182.068L-3.927 181.884Q-3.903 181.861-3.872 181.861L-3.821 181.861Q-3.790 181.861-3.763 181.888Q-3.735 181.915-3.735 181.947L-3.735 182.931Q-3.735 182.962-3.761 182.991Q-3.786 183.021-3.821 183.021L-3.927 183.021Q-3.962 183.021-3.989 182.993Q-4.017 182.966-4.017 182.931Q-4.017 182.532-4.269 182.312Q-4.521 182.091-4.919 182.091Q-5.274 182.091-5.558 182.214Q-5.841 182.337-5.841 182.642Q-5.841 182.861-5.640 182.993Q-5.439 183.126-5.192 183.169L-4.567 183.282Q-4.138 183.372-3.829 183.669Q-3.521 183.966-3.521 184.380Q-3.521 184.950-3.919 185.228Q-4.317 185.505-4.911 185.505Q-5.462 185.505-5.814 185.169L-6.110 185.482Q-6.134 185.505-6.169 185.505L-6.216 185.505Q-6.239 185.505-6.271 185.474Q-6.302 185.443-6.302 185.419M-2.368 184.466L-2.368 182.275L-3.071 182.275L-3.071 182.021Q-2.716 182.021-2.474 181.788Q-2.232 181.556-2.120 181.208Q-2.009 180.861-2.009 180.505L-1.728 180.505L-1.728 181.978L-0.552 181.978L-0.552 182.275L-1.728 182.275L-1.728 184.450Q-1.728 184.771-1.608 184.999Q-1.489 185.228-1.208 185.228Q-1.028 185.228-0.911 185.105Q-0.794 184.982-0.741 184.802Q-0.689 184.622-0.689 184.450L-0.689 183.978L-0.407 183.978L-0.407 184.466Q-0.407 184.720-0.513 184.960Q-0.618 185.200-0.816 185.353Q-1.013 185.505-1.271 185.505Q-1.587 185.505-1.839 185.382Q-2.091 185.259-2.230 185.025Q-2.368 184.790-2.368 184.466M0.311 183.673Q0.311 183.193 0.544 182.777Q0.776 182.361 1.186 182.111Q1.597 181.861 2.073 181.861Q2.804 181.861 3.202 182.302Q3.601 182.743 3.601 183.474Q3.601 183.579 3.507 183.603L1.058 183.603L1.058 183.673Q1.058 184.083 1.179 184.439Q1.300 184.794 1.571 185.011Q1.843 185.228 2.272 185.228Q2.636 185.228 2.933 184.999Q3.229 184.771 3.331 184.419Q3.339 184.372 3.425 184.357L3.507 184.357Q3.601 184.384 3.601 184.466Q3.601 184.474 3.593 184.505Q3.530 184.732 3.392 184.915Q3.253 185.099 3.061 185.232Q2.870 185.364 2.651 185.435Q2.433 185.505 2.194 185.505Q1.823 185.505 1.485 185.368Q1.147 185.232 0.880 184.980Q0.612 184.728 0.462 184.388Q0.311 184.048 0.311 183.673M1.065 183.364L3.026 183.364Q3.026 183.060 2.925 182.769Q2.823 182.478 2.606 182.296Q2.390 182.114 2.073 182.114Q1.772 182.114 1.542 182.302Q1.311 182.489 1.188 182.781Q1.065 183.072 1.065 183.364M6.097 185.427L4.116 185.427L4.116 185.130Q4.386 185.130 4.554 185.085Q4.722 185.040 4.722 184.868L4.722 182.732Q4.722 182.517 4.659 182.421Q4.597 182.325 4.479 182.304Q4.362 182.282 4.116 182.282L4.116 181.986L5.284 181.900L5.284 182.685Q5.362 182.474 5.515 182.288Q5.667 182.103 5.866 182.001Q6.065 181.900 6.292 181.900Q6.538 181.900 6.729 182.044Q6.921 182.189 6.921 182.419Q6.921 182.575 6.815 182.685Q6.710 182.794 6.554 182.794Q6.397 182.794 6.288 182.685Q6.179 182.575 6.179 182.419Q6.179 182.259 6.284 182.154Q5.960 182.154 5.745 182.382Q5.530 182.611 5.434 182.950Q5.339 183.290 5.339 183.595L5.339 184.868Q5.339 185.036 5.565 185.083Q5.792 185.130 6.097 185.130\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-22.477 -94.74)\">\u003Cpath d=\"M12.317 185.427L10.332 185.427L10.332 185.130Q10.606 185.130 10.774 185.083Q10.942 185.036 10.942 184.868L10.942 182.275L10.301 182.275L10.301 181.978L10.942 181.978L10.942 181.044Q10.942 180.779 11.059 180.542Q11.176 180.306 11.369 180.142Q11.563 179.978 11.811 179.886Q12.059 179.794 12.325 179.794Q12.610 179.794 12.834 179.952Q13.059 180.111 13.059 180.388Q13.059 180.544 12.953 180.654Q12.848 180.763 12.684 180.763Q12.528 180.763 12.418 180.654Q12.309 180.544 12.309 180.388Q12.309 180.181 12.469 180.075Q12.371 180.052 12.278 180.052Q12.047 180.052 11.875 180.208Q11.703 180.364 11.617 180.601Q11.532 180.837 11.532 181.060L11.532 181.978L12.500 181.978L12.500 182.275L11.555 182.275L11.555 184.868Q11.555 185.036 11.782 185.083Q12.008 185.130 12.317 185.130\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-22.477 -94.74)\">\u003Cpath d=\"M15.339 185.427L13.561 185.427L13.561 185.130Q13.835 185.130 14.003 185.083Q14.171 185.036 14.171 184.868L14.171 182.732Q14.171 182.517 14.114 182.421Q14.057 182.325 13.944 182.304Q13.831 182.282 13.585 182.282L13.585 181.986L14.784 181.900L14.784 184.868Q14.784 185.036 14.930 185.083Q15.077 185.130 15.339 185.130L15.339 185.427M13.897 180.505Q13.897 180.314 14.032 180.183Q14.167 180.052 14.362 180.052Q14.483 180.052 14.587 180.114Q14.690 180.177 14.753 180.281Q14.815 180.384 14.815 180.505Q14.815 180.700 14.684 180.835Q14.553 180.970 14.362 180.970Q14.163 180.970 14.030 180.837Q13.897 180.704 13.897 180.505M17.753 185.427L15.921 185.427L15.921 185.130Q16.194 185.130 16.362 185.083Q16.530 185.036 16.530 184.868L16.530 180.708Q16.530 180.493 16.468 180.398Q16.405 180.302 16.286 180.281Q16.167 180.259 15.921 180.259L15.921 179.962L17.143 179.876L17.143 184.868Q17.143 185.036 17.311 185.083Q17.479 185.130 17.753 185.130L17.753 185.427M18.198 183.673Q18.198 183.193 18.430 182.777Q18.663 182.361 19.073 182.111Q19.483 181.861 19.960 181.861Q20.690 181.861 21.089 182.302Q21.487 182.743 21.487 183.474Q21.487 183.579 21.393 183.603L18.944 183.603L18.944 183.673Q18.944 184.083 19.065 184.439Q19.186 184.794 19.458 185.011Q19.729 185.228 20.159 185.228Q20.522 185.228 20.819 184.999Q21.116 184.771 21.218 184.419Q21.225 184.372 21.311 184.357L21.393 184.357Q21.487 184.384 21.487 184.466Q21.487 184.474 21.479 184.505Q21.417 184.732 21.278 184.915Q21.139 185.099 20.948 185.232Q20.757 185.364 20.538 185.435Q20.319 185.505 20.081 185.505Q19.710 185.505 19.372 185.368Q19.034 185.232 18.766 184.980Q18.499 184.728 18.348 184.388Q18.198 184.048 18.198 183.673M18.952 183.364L20.913 183.364Q20.913 183.060 20.811 182.769Q20.710 182.478 20.493 182.296Q20.276 182.114 19.960 182.114Q19.659 182.114 19.428 182.302Q19.198 182.489 19.075 182.781Q18.952 183.072 18.952 183.364\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-54.51 50.277H8.086V24.67H-54.51Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-17.049 -145.954)\">\u003Cpath d=\"M-21.173 185.427L-22.923 185.427L-22.923 185.130Q-22.224 185.130-22.036 184.650L-20.235 179.825Q-20.181 179.716-20.067 179.716L-19.997 179.716Q-19.884 179.716-19.829 179.825L-17.939 184.868Q-17.860 185.036-17.657 185.083Q-17.454 185.130-17.142 185.130L-17.142 185.427L-19.364 185.427L-19.364 185.130Q-18.724 185.130-18.724 184.915Q-18.724 184.896-18.726 184.886Q-18.728 184.876-18.732 184.868L-19.196 183.634L-21.341 183.634L-21.724 184.650Q-21.728 184.665-21.733 184.695Q-21.739 184.724-21.739 184.747Q-21.739 184.888-21.649 184.972Q-21.560 185.056-21.427 185.093Q-21.294 185.130-21.173 185.130L-21.173 185.427M-20.267 180.771L-21.235 183.337L-19.310 183.337L-20.267 180.771M-12.134 185.427L-16.517 185.427L-16.517 185.130Q-16.196 185.130-15.952 185.083Q-15.708 185.036-15.708 184.868L-15.708 180.525Q-15.708 180.353-15.952 180.306Q-16.196 180.259-16.517 180.259L-16.517 179.962L-13.931 179.962L-13.931 180.259Q-14.942 180.259-14.942 180.525L-14.942 184.868Q-14.942 185.040-14.851 185.085Q-14.759 185.130-14.540 185.130L-13.853 185.130Q-13.380 185.130-13.071 185.005Q-12.763 184.880-12.585 184.650Q-12.407 184.419-12.316 184.093Q-12.224 183.767-12.181 183.314L-11.899 183.314L-12.134 185.427M-10.403 183.618L-10.403 180.525Q-10.403 180.353-10.648 180.306Q-10.892 180.259-11.212 180.259L-11.212 179.962L-8.829 179.962L-8.829 180.259Q-9.149 180.259-9.394 180.308Q-9.638 180.357-9.638 180.525L-9.638 183.595Q-9.638 184.318-9.294 184.808Q-8.950 185.298-8.251 185.298Q-7.786 185.298-7.415 185.068Q-7.044 184.837-6.835 184.445Q-6.626 184.052-6.626 183.595L-6.626 180.739Q-6.626 180.259-7.435 180.259L-7.435 179.962L-5.524 179.962L-5.524 180.259Q-6.333 180.259-6.333 180.739L-6.333 183.618Q-6.333 184.138-6.587 184.595Q-6.841 185.052-7.282 185.323Q-7.724 185.595-8.251 185.595Q-8.661 185.595-9.042 185.452Q-9.423 185.310-9.735 185.040Q-10.048 184.771-10.226 184.404Q-10.403 184.036-10.403 183.618\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-17.049 -145.954)\">\u003Cpath d=\"M0.280 187.419Q-0.333 186.962-0.735 186.327Q-1.138 185.693-1.333 184.947Q-1.528 184.200-1.528 183.427Q-1.528 182.654-1.333 181.907Q-1.138 181.161-0.735 180.527Q-0.333 179.892 0.280 179.435Q0.292 179.431 0.300 179.429Q0.308 179.427 0.319 179.427L0.397 179.427Q0.436 179.427 0.462 179.454Q0.487 179.482 0.487 179.525Q0.487 179.575 0.456 179.595Q-0.052 180.048-0.374 180.671Q-0.696 181.294-0.837 181.989Q-0.978 182.685-0.978 183.427Q-0.978 184.161-0.839 184.861Q-0.700 185.560-0.376 186.185Q-0.052 186.810 0.456 187.259Q0.487 187.279 0.487 187.329Q0.487 187.372 0.462 187.400Q0.436 187.427 0.397 187.427L0.319 187.427Q0.311 187.423 0.302 187.421Q0.292 187.419 0.280 187.419M4.089 183.611L1.616 183.611Q1.538 183.599 1.489 183.550Q1.440 183.501 1.440 183.427Q1.440 183.353 1.489 183.304Q1.538 183.255 1.616 183.243L4.089 183.243L4.089 180.763Q4.116 180.595 4.272 180.595Q4.347 180.595 4.395 180.644Q4.444 180.693 4.456 180.763L4.456 183.243L6.929 183.243Q7.097 183.275 7.097 183.427Q7.097 183.579 6.929 183.611L4.456 183.611L4.456 186.091Q4.444 186.161 4.395 186.210Q4.347 186.259 4.272 186.259Q4.116 186.259 4.089 186.091L4.089 183.611M8.218 187.427L8.136 187.427Q8.101 187.427 8.075 187.398Q8.050 187.368 8.050 187.329Q8.050 187.279 8.081 187.259Q8.468 186.923 8.751 186.474Q9.034 186.025 9.200 185.525Q9.366 185.025 9.440 184.507Q9.515 183.989 9.515 183.427Q9.515 182.857 9.440 182.341Q9.366 181.825 9.200 181.329Q9.034 180.833 8.755 180.386Q8.476 179.939 8.081 179.595Q8.050 179.575 8.050 179.525Q8.050 179.486 8.075 179.456Q8.101 179.427 8.136 179.427L8.218 179.427Q8.229 179.427 8.239 179.429Q8.249 179.431 8.257 179.435Q8.870 179.892 9.272 180.527Q9.675 181.161 9.870 181.907Q10.065 182.654 10.065 183.427Q10.065 184.200 9.870 184.947Q9.675 185.693 9.272 186.327Q8.870 186.962 8.257 187.419Q8.245 187.419 8.237 187.421Q8.229 187.423 8.218 187.427\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M70.682 50.277h62.596V24.67H70.682Z\"\u002F>\u003Cg transform=\"translate(119.053 -145.22)\">\u003Cpath d=\"M-22.739 182.693Q-22.739 182.099-22.507 181.568Q-22.274 181.036-21.858 180.636Q-21.442 180.236-20.909 180.015Q-20.376 179.794-19.771 179.794Q-19.333 179.794-18.935 179.976Q-18.536 180.157-18.228 180.489L-17.755 179.825Q-17.724 179.794-17.692 179.794L-17.646 179.794Q-17.618 179.794-17.587 179.825Q-17.556 179.857-17.556 179.884L-17.556 182.021Q-17.556 182.044-17.587 182.075Q-17.618 182.107-17.646 182.107L-17.763 182.107Q-17.790 182.107-17.821 182.075Q-17.853 182.044-17.853 182.021Q-17.853 181.755-17.995 181.402Q-18.138 181.048-18.317 180.810Q-18.571 180.478-18.921 180.284Q-19.271 180.091-19.677 180.091Q-20.181 180.091-20.634 180.310Q-21.087 180.529-21.380 180.923Q-21.876 181.591-21.876 182.693Q-21.876 183.224-21.739 183.691Q-21.603 184.157-21.327 184.523Q-21.052 184.888-20.632 185.093Q-20.212 185.298-19.669 185.298Q-19.181 185.298-18.757 185.054Q-18.333 184.810-18.085 184.390Q-17.837 183.970-17.837 183.474Q-17.837 183.439-17.808 183.413Q-17.778 183.388-17.747 183.388L-17.646 183.388Q-17.603 183.388-17.579 183.417Q-17.556 183.447-17.556 183.489Q-17.556 183.927-17.732 184.316Q-17.907 184.704-18.218 184.988Q-18.528 185.271-18.939 185.433Q-19.349 185.595-19.771 185.595Q-20.360 185.595-20.901 185.374Q-21.442 185.154-21.858 184.749Q-22.274 184.345-22.507 183.816Q-22.739 183.286-22.739 182.693M-16.603 182.693Q-16.603 182.099-16.370 181.568Q-16.138 181.036-15.722 180.636Q-15.306 180.236-14.773 180.015Q-14.239 179.794-13.634 179.794Q-13.196 179.794-12.798 179.976Q-12.399 180.157-12.091 180.489L-11.618 179.825Q-11.587 179.794-11.556 179.794L-11.509 179.794Q-11.482 179.794-11.450 179.825Q-11.419 179.857-11.419 179.884L-11.419 182.021Q-11.419 182.044-11.450 182.075Q-11.482 182.107-11.509 182.107L-11.626 182.107Q-11.653 182.107-11.685 182.075Q-11.716 182.044-11.716 182.021Q-11.716 181.755-11.858 181.402Q-12.001 181.048-12.181 180.810Q-12.435 180.478-12.784 180.284Q-13.134 180.091-13.540 180.091Q-14.044 180.091-14.497 180.310Q-14.950 180.529-15.243 180.923Q-15.739 181.591-15.739 182.693Q-15.739 183.224-15.603 183.691Q-15.466 184.157-15.191 184.523Q-14.915 184.888-14.495 185.093Q-14.075 185.298-13.532 185.298Q-13.044 185.298-12.620 185.054Q-12.196 184.810-11.948 184.390Q-11.700 183.970-11.700 183.474Q-11.700 183.439-11.671 183.413Q-11.642 183.388-11.610 183.388L-11.509 183.388Q-11.466 183.388-11.442 183.417Q-11.419 183.447-11.419 183.489Q-11.419 183.927-11.595 184.316Q-11.771 184.704-12.081 184.988Q-12.392 185.271-12.802 185.433Q-13.212 185.595-13.634 185.595Q-14.224 185.595-14.765 185.374Q-15.306 185.154-15.722 184.749Q-16.138 184.345-16.370 183.816Q-16.603 183.286-16.603 182.693\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-54.51-.938H8.086v-25.607H-54.51Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-20.305 -196.391)\">\u003Cpath d=\"M-20.638 185.482L-22.341 180.525Q-22.407 180.349-22.583 180.304Q-22.759 180.259-23.052 180.259L-23.052 179.962L-20.907 179.962L-20.907 180.259Q-21.564 180.259-21.564 180.474Q-21.560 180.486-21.558 180.495Q-21.556 180.505-21.556 180.525L-20.204 184.458L-19.005 180.954L-19.149 180.525Q-19.220 180.349-19.394 180.304Q-19.567 180.259-19.860 180.259L-19.860 179.962L-17.724 179.962L-17.724 180.259Q-18.372 180.259-18.372 180.474Q-18.372 180.517-18.364 180.525L-17.013 184.458L-15.739 180.739Q-15.724 180.693-15.724 180.657Q-15.724 180.517-15.833 180.425Q-15.942 180.333-16.099 180.296Q-16.255 180.259-16.388 180.259L-16.388 179.962L-14.653 179.962L-14.653 180.259Q-15.271 180.259-15.442 180.739L-17.067 185.482Q-17.087 185.532-17.130 185.564Q-17.173 185.595-17.228 185.595L-17.282 185.595Q-17.403 185.595-17.442 185.482L-18.853 181.388L-20.259 185.482Q-20.278 185.532-20.321 185.564Q-20.364 185.595-20.419 185.595L-20.478 185.595Q-20.591 185.595-20.638 185.482\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-20.305 -196.391)\">\u003Cpath d=\"M-12.947 185.427L-14.927 185.427L-14.927 185.130Q-14.658 185.130-14.490 185.085Q-14.322 185.040-14.322 184.868L-14.322 182.732Q-14.322 182.517-14.384 182.421Q-14.447 182.325-14.564 182.304Q-14.681 182.282-14.927 182.282L-14.927 181.986L-13.759 181.900L-13.759 182.685Q-13.681 182.474-13.529 182.288Q-13.377 182.103-13.177 182.001Q-12.978 181.900-12.752 181.900Q-12.505 181.900-12.314 182.044Q-12.123 182.189-12.123 182.419Q-12.123 182.575-12.228 182.685Q-12.334 182.794-12.490 182.794Q-12.646 182.794-12.755 182.685Q-12.865 182.575-12.865 182.419Q-12.865 182.259-12.759 182.154Q-13.084 182.154-13.298 182.382Q-13.513 182.611-13.609 182.950Q-13.705 183.290-13.705 183.595L-13.705 184.868Q-13.705 185.036-13.478 185.083Q-13.252 185.130-12.947 185.130L-12.947 185.427M-9.783 185.427L-11.560 185.427L-11.560 185.130Q-11.287 185.130-11.119 185.083Q-10.951 185.036-10.951 184.868L-10.951 182.732Q-10.951 182.517-11.007 182.421Q-11.064 182.325-11.177 182.304Q-11.291 182.282-11.537 182.282L-11.537 181.986L-10.338 181.900L-10.338 184.868Q-10.338 185.036-10.191 185.083Q-10.045 185.130-9.783 185.130L-9.783 185.427M-11.224 180.505Q-11.224 180.314-11.089 180.183Q-10.955 180.052-10.759 180.052Q-10.638 180.052-10.535 180.114Q-10.431 180.177-10.369 180.281Q-10.306 180.384-10.306 180.505Q-10.306 180.700-10.437 180.835Q-10.568 180.970-10.759 180.970Q-10.959 180.970-11.091 180.837Q-11.224 180.704-11.224 180.505M-8.658 184.466L-8.658 182.275L-9.361 182.275L-9.361 182.021Q-9.005 182.021-8.763 181.788Q-8.521 181.556-8.410 181.208Q-8.298 180.861-8.298 180.505L-8.017 180.505L-8.017 181.978L-6.841 181.978L-6.841 182.275L-8.017 182.275L-8.017 184.450Q-8.017 184.771-7.898 184.999Q-7.779 185.228-7.498 185.228Q-7.318 185.228-7.201 185.105Q-7.084 184.982-7.031 184.802Q-6.978 184.622-6.978 184.450L-6.978 183.978L-6.697 183.978L-6.697 184.466Q-6.697 184.720-6.802 184.960Q-6.908 185.200-7.105 185.353Q-7.302 185.505-7.560 185.505Q-7.877 185.505-8.129 185.382Q-8.380 185.259-8.519 185.025Q-8.658 184.790-8.658 184.466M-5.978 183.673Q-5.978 183.193-5.746 182.777Q-5.513 182.361-5.103 182.111Q-4.693 181.861-4.216 181.861Q-3.486 181.861-3.088 182.302Q-2.689 182.743-2.689 183.474Q-2.689 183.579-2.783 183.603L-5.232 183.603L-5.232 183.673Q-5.232 184.083-5.111 184.439Q-4.990 184.794-4.718 185.011Q-4.447 185.228-4.017 185.228Q-3.654 185.228-3.357 184.999Q-3.060 184.771-2.959 184.419Q-2.951 184.372-2.865 184.357L-2.783 184.357Q-2.689 184.384-2.689 184.466Q-2.689 184.474-2.697 184.505Q-2.759 184.732-2.898 184.915Q-3.037 185.099-3.228 185.232Q-3.420 185.364-3.638 185.435Q-3.857 185.505-4.095 185.505Q-4.466 185.505-4.804 185.368Q-5.142 185.232-5.410 184.980Q-5.677 184.728-5.828 184.388Q-5.978 184.048-5.978 183.673M-5.224 183.364L-3.263 183.364Q-3.263 183.060-3.365 182.769Q-3.466 182.478-3.683 182.296Q-3.900 182.114-4.216 182.114Q-4.517 182.114-4.748 182.302Q-4.978 182.489-5.101 182.781Q-5.224 183.072-5.224 183.364M-0.088 183.978L-2.341 183.978L-2.341 183.427L-0.088 183.427L-0.088 183.978M1.545 185.427L1.264 185.427L1.264 180.708Q1.264 180.493 1.202 180.398Q1.139 180.302 1.022 180.281Q0.905 180.259 0.659 180.259L0.659 179.962L1.881 179.876L1.881 182.364Q2.358 181.900 3.057 181.900Q3.537 181.900 3.946 182.144Q4.354 182.388 4.590 182.802Q4.827 183.216 4.827 183.700Q4.827 184.075 4.678 184.404Q4.530 184.732 4.260 184.984Q3.991 185.236 3.647 185.370Q3.303 185.505 2.944 185.505Q2.623 185.505 2.325 185.357Q2.026 185.208 1.819 184.947L1.545 185.427M1.905 182.755L1.905 184.595Q2.057 184.892 2.317 185.072Q2.577 185.251 2.889 185.251Q3.315 185.251 3.582 185.032Q3.850 184.814 3.965 184.468Q4.080 184.122 4.080 183.700Q4.080 183.052 3.832 182.603Q3.584 182.154 2.987 182.154Q2.651 182.154 2.362 182.312Q2.073 182.470 1.905 182.755M5.448 184.595Q5.448 184.111 5.850 183.816Q6.252 183.521 6.803 183.402Q7.354 183.282 7.846 183.282L7.846 182.993Q7.846 182.767 7.731 182.560Q7.616 182.353 7.418 182.234Q7.221 182.114 6.991 182.114Q6.565 182.114 6.280 182.220Q6.350 182.247 6.397 182.302Q6.444 182.357 6.469 182.427Q6.495 182.497 6.495 182.572Q6.495 182.677 6.444 182.769Q6.393 182.861 6.301 182.911Q6.209 182.962 6.104 182.962Q5.998 182.962 5.907 182.911Q5.815 182.861 5.764 182.769Q5.713 182.677 5.713 182.572Q5.713 182.154 6.102 182.007Q6.491 181.861 6.991 181.861Q7.323 181.861 7.676 181.991Q8.030 182.122 8.258 182.376Q8.487 182.630 8.487 182.978L8.487 184.779Q8.487 184.911 8.559 185.021Q8.631 185.130 8.760 185.130Q8.885 185.130 8.953 185.025Q9.022 184.919 9.022 184.779L9.022 184.267L9.303 184.267L9.303 184.779Q9.303 184.982 9.186 185.140Q9.069 185.298 8.887 185.382Q8.705 185.466 8.502 185.466Q8.272 185.466 8.120 185.294Q7.967 185.122 7.936 184.892Q7.776 185.173 7.467 185.339Q7.159 185.505 6.807 185.505Q6.295 185.505 5.871 185.282Q5.448 185.060 5.448 184.595M6.135 184.595Q6.135 184.880 6.362 185.066Q6.588 185.251 6.881 185.251Q7.127 185.251 7.352 185.134Q7.577 185.017 7.711 184.814Q7.846 184.611 7.846 184.357L7.846 183.525Q7.580 183.525 7.295 183.579Q7.010 183.634 6.739 183.763Q6.467 183.892 6.301 184.099Q6.135 184.306 6.135 184.595M9.639 183.700Q9.639 183.204 9.889 182.779Q10.139 182.353 10.559 182.107Q10.979 181.861 11.479 181.861Q12.018 181.861 12.409 181.986Q12.799 182.111 12.799 182.525Q12.799 182.630 12.748 182.722Q12.698 182.814 12.606 182.864Q12.514 182.915 12.405 182.915Q12.299 182.915 12.207 182.864Q12.116 182.814 12.065 182.722Q12.014 182.630 12.014 182.525Q12.014 182.302 12.182 182.197Q11.959 182.138 11.487 182.138Q11.190 182.138 10.975 182.277Q10.760 182.415 10.629 182.646Q10.498 182.876 10.440 183.146Q10.381 183.415 10.381 183.700Q10.381 184.095 10.514 184.445Q10.647 184.794 10.918 185.011Q11.190 185.228 11.588 185.228Q11.963 185.228 12.239 185.011Q12.514 184.794 12.616 184.435Q12.631 184.372 12.694 184.372L12.799 184.372Q12.834 184.372 12.860 184.400Q12.885 184.427 12.885 184.466L12.885 184.489Q12.752 184.970 12.368 185.238Q11.983 185.505 11.479 185.505Q11.116 185.505 10.782 185.368Q10.448 185.232 10.188 184.982Q9.928 184.732 9.784 184.396Q9.639 184.060 9.639 183.700\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-20.305 -196.391)\">\u003Cpath d=\"M14.975 185.427L13.178 185.427L13.178 185.130Q13.447 185.130 13.615 185.085Q13.783 185.040 13.783 184.868L13.783 180.708Q13.783 180.493 13.721 180.398Q13.658 180.302 13.541 180.281Q13.424 180.259 13.178 180.259L13.178 179.962L14.400 179.876L14.400 183.642L15.498 182.755Q15.705 182.575 15.705 182.427Q15.705 182.361 15.652 182.318Q15.600 182.275 15.529 182.275L15.529 181.978L17.064 181.978L17.064 182.275Q16.533 182.275 15.935 182.755L15.326 183.251L16.400 184.650Q16.537 184.825 16.644 184.933Q16.752 185.040 16.887 185.085Q17.021 185.130 17.248 185.130L17.248 185.427L15.623 185.427L15.623 185.130Q15.865 185.130 15.865 184.978Q15.865 184.900 15.822 184.829Q15.779 184.759 15.697 184.650L14.896 183.603L14.369 184.029L14.369 184.868Q14.369 185.036 14.537 185.083Q14.705 185.130 14.975 185.130\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-54.51-46.463H8.086V-72.07H-54.51Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-15.518 -241.96)\">\u003Cpath d=\"M-20.954 185.427L-22.876 185.427L-22.876 185.130Q-22.067 185.130-22.067 184.650L-22.067 180.306Q-22.325 180.259-22.876 180.259L-22.876 179.962L-21.380 179.962Q-21.321 179.982-21.310 179.993L-18.302 184.181L-18.302 180.739Q-18.302 180.259-19.107 180.259L-19.107 179.962L-17.189 179.962L-17.189 180.259Q-17.997 180.259-17.997 180.739L-17.997 185.322Q-18.017 185.407-18.091 185.427L-18.196 185.427Q-18.251 185.415-18.267 185.388L-21.763 180.532L-21.763 184.650Q-21.763 185.130-20.954 185.130L-20.954 185.427M-16.614 183.673Q-16.614 183.193-16.382 182.777Q-16.149 182.361-15.739 182.111Q-15.329 181.861-14.853 181.861Q-14.122 181.861-13.724 182.302Q-13.325 182.743-13.325 183.474Q-13.325 183.579-13.419 183.603L-15.868 183.603L-15.868 183.673Q-15.868 184.083-15.747 184.439Q-15.626 184.794-15.355 185.011Q-15.083 185.228-14.653 185.228Q-14.290 185.228-13.993 184.999Q-13.696 184.771-13.595 184.419Q-13.587 184.372-13.501 184.357L-13.419 184.357Q-13.325 184.384-13.325 184.466Q-13.325 184.474-13.333 184.505Q-13.396 184.732-13.534 184.915Q-13.673 185.099-13.864 185.232Q-14.056 185.364-14.274 185.435Q-14.493 185.505-14.732 185.505Q-15.103 185.505-15.441 185.368Q-15.778 185.232-16.046 184.980Q-16.314 184.728-16.464 184.388Q-16.614 184.048-16.614 183.673M-15.860 183.364L-13.899 183.364Q-13.899 183.060-14.001 182.769Q-14.103 182.478-14.319 182.296Q-14.536 182.114-14.853 182.114Q-15.153 182.114-15.384 182.302Q-15.614 182.489-15.737 182.781Q-15.860 183.072-15.860 183.364M-11.251 185.396L-12.321 182.540Q-12.388 182.361-12.519 182.318Q-12.649 182.275-12.907 182.275L-12.907 181.978L-11.228 181.978L-11.228 182.275Q-11.677 182.275-11.677 182.474Q-11.673 182.489-11.671 182.507Q-11.669 182.525-11.669 182.540L-10.876 184.634L-10.165 182.724Q-10.200 182.630-10.200 182.585Q-10.200 182.540-10.235 182.540Q-10.302 182.361-10.433 182.318Q-10.564 182.275-10.817 182.275L-10.817 181.978L-9.228 181.978L-9.228 182.275Q-9.677 182.275-9.677 182.474Q-9.673 182.493-9.671 182.511Q-9.669 182.529-9.669 182.540L-8.837 184.755L-8.083 182.755Q-8.060 182.697-8.060 182.626Q-8.060 182.466-8.196 182.370Q-8.333 182.275-8.501 182.275L-8.501 181.978L-7.114 181.978L-7.114 182.275Q-7.349 182.275-7.526 182.402Q-7.704 182.529-7.786 182.755L-8.771 185.396Q-8.825 185.505-8.939 185.505L-8.997 185.505Q-9.110 185.505-9.153 185.396L-10.013 183.122L-10.868 185.396Q-10.907 185.505-11.028 185.505L-11.083 185.505Q-11.196 185.505-11.251 185.396\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-15.518 -241.96)\">\u003Cpath d=\"M-1.361 185.427L-3.743 185.427L-3.743 185.130Q-3.419 185.130-3.177 185.083Q-2.935 185.036-2.935 184.868L-2.935 180.525Q-2.935 180.353-3.177 180.306Q-3.419 180.259-3.743 180.259L-3.743 179.962L-0.798 179.962Q-0.454 179.962-0.099 180.062Q0.257 180.161 0.551 180.353Q0.846 180.544 1.028 180.829Q1.210 181.114 1.210 181.474Q1.210 181.947 0.899 182.282Q0.589 182.618 0.124 182.790Q-0.341 182.962-0.798 182.962L-2.165 182.962L-2.165 184.868Q-2.165 185.036-1.923 185.083Q-1.681 185.130-1.361 185.130L-1.361 185.427M-2.193 180.525L-2.193 182.693L-1.017 182.693Q-0.329 182.693 0.009 182.417Q0.346 182.142 0.346 181.474Q0.346 180.810 0.009 180.534Q-0.329 180.259-1.017 180.259L-1.790 180.259Q-2.009 180.259-2.101 180.302Q-2.193 180.345-2.193 180.525M2.155 182.693Q2.155 182.099 2.387 181.568Q2.620 181.036 3.036 180.636Q3.452 180.236 3.985 180.015Q4.518 179.794 5.124 179.794Q5.561 179.794 5.960 179.976Q6.358 180.157 6.667 180.489L7.139 179.825Q7.171 179.794 7.202 179.794L7.249 179.794Q7.276 179.794 7.307 179.825Q7.339 179.857 7.339 179.884L7.339 182.021Q7.339 182.044 7.307 182.075Q7.276 182.107 7.249 182.107L7.132 182.107Q7.104 182.107 7.073 182.075Q7.042 182.044 7.042 182.021Q7.042 181.755 6.899 181.402Q6.757 181.048 6.577 180.810Q6.323 180.478 5.973 180.284Q5.624 180.091 5.218 180.091Q4.714 180.091 4.260 180.310Q3.807 180.529 3.514 180.923Q3.018 181.591 3.018 182.693Q3.018 183.224 3.155 183.691Q3.292 184.157 3.567 184.523Q3.843 184.888 4.262 185.093Q4.682 185.298 5.225 185.298Q5.714 185.298 6.137 185.054Q6.561 184.810 6.809 184.390Q7.057 183.970 7.057 183.474Q7.057 183.439 7.087 183.413Q7.116 183.388 7.147 183.388L7.249 183.388Q7.292 183.388 7.315 183.417Q7.339 183.447 7.339 183.489Q7.339 183.927 7.163 184.316Q6.987 184.704 6.676 184.988Q6.366 185.271 5.956 185.433Q5.546 185.595 5.124 185.595Q4.534 185.595 3.993 185.374Q3.452 185.154 3.036 184.749Q2.620 184.345 2.387 183.816Q2.155 183.286 2.155 182.693\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-23.212 172.424v-17.517\"\u002F>\u003Cpath stroke=\"none\" d=\"m-23.212 152.907-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(3.533 -20.332)\">\u003Cpath d=\"M-22.839 184.699Q-22.839 184.367-22.616 184.140Q-22.392 183.913-22.048 183.785Q-21.705 183.656-21.332 183.604Q-20.960 183.551-20.655 183.551L-20.655 183.298Q-20.655 183.093-20.763 182.913Q-20.871 182.734-21.052 182.631Q-21.233 182.529-21.441 182.529Q-21.848 182.529-22.084 182.621Q-21.995 182.658-21.949 182.742Q-21.903 182.826-21.903 182.928Q-21.903 183.024-21.949 183.103Q-21.995 183.181-22.076 183.226Q-22.156 183.270-22.245 183.270Q-22.395 183.270-22.496 183.173Q-22.597 183.075-22.597 182.928Q-22.597 182.306-21.441 182.306Q-21.230 182.306-20.980 182.370Q-20.731 182.433-20.529 182.552Q-20.327 182.672-20.201 182.857Q-20.074 183.041-20.074 183.284L-20.074 184.860Q-20.074 184.976-20.013 185.072Q-19.951 185.167-19.838 185.167Q-19.729 185.167-19.664 185.073Q-19.599 184.979-19.599 184.860L-19.599 184.412L-19.333 184.412L-19.333 184.860Q-19.333 185.130-19.560 185.295Q-19.787 185.461-20.067 185.461Q-20.276 185.461-20.413 185.307Q-20.549 185.154-20.573 184.938Q-20.720 185.205-21.002 185.350Q-21.284 185.495-21.609 185.495Q-21.886 185.495-22.170 185.420Q-22.453 185.345-22.646 185.166Q-22.839 184.986-22.839 184.699M-22.224 184.699Q-22.224 184.873-22.123 185.003Q-22.023 185.133-21.867 185.203Q-21.712 185.273-21.547 185.273Q-21.329 185.273-21.120 185.176Q-20.912 185.078-20.784 184.897Q-20.655 184.716-20.655 184.490L-20.655 183.762Q-20.980 183.762-21.346 183.853Q-21.712 183.944-21.968 184.156Q-22.224 184.367-22.224 184.699M-18.916 183.916Q-18.916 183.578-18.775 183.287Q-18.635 182.997-18.391 182.783Q-18.147 182.570-17.842 182.455Q-17.538 182.341-17.213 182.341Q-16.943 182.341-16.680 182.440Q-16.417 182.539-16.226 182.717L-16.226 181.319Q-16.226 181.049-16.333 180.987Q-16.441 180.926-16.752 180.926L-16.752 180.645L-15.675 180.570L-15.675 184.754Q-15.675 184.942-15.621 185.025Q-15.566 185.109-15.465 185.128Q-15.364 185.147-15.149 185.147L-15.149 185.427L-16.256 185.495L-16.256 185.078Q-16.673 185.495-17.299 185.495Q-17.730 185.495-18.102 185.283Q-18.475 185.072-18.695 184.711Q-18.916 184.350-18.916 183.916M-17.241 185.273Q-17.032 185.273-16.846 185.201Q-16.660 185.130-16.506 184.993Q-16.352 184.856-16.256 184.678L-16.256 183.069Q-16.342 182.922-16.487 182.802Q-16.632 182.682-16.802 182.623Q-16.971 182.563-17.152 182.563Q-17.712 182.563-17.981 182.952Q-18.249 183.342-18.249 183.923Q-18.249 184.494-18.015 184.884Q-17.781 185.273-17.241 185.273M-14.500 183.916Q-14.500 183.578-14.359 183.287Q-14.219 182.997-13.975 182.783Q-13.731 182.570-13.426 182.455Q-13.122 182.341-12.797 182.341Q-12.527 182.341-12.264 182.440Q-12.001 182.539-11.810 182.717L-11.810 181.319Q-11.810 181.049-11.917 180.987Q-12.025 180.926-12.336 180.926L-12.336 180.645L-11.259 180.570L-11.259 184.754Q-11.259 184.942-11.205 185.025Q-11.150 185.109-11.049 185.128Q-10.948 185.147-10.733 185.147L-10.733 185.427L-11.840 185.495L-11.840 185.078Q-12.257 185.495-12.883 185.495Q-13.314 185.495-13.686 185.283Q-14.059 185.072-14.279 184.711Q-14.500 184.350-14.500 183.916M-12.825 185.273Q-12.616 185.273-12.430 185.201Q-12.244 185.130-12.090 184.993Q-11.936 184.856-11.840 184.678L-11.840 183.069Q-11.926 182.922-12.071 182.802Q-12.216 182.682-12.386 182.623Q-12.555 182.563-12.736 182.563Q-13.296 182.563-13.565 182.952Q-13.833 183.342-13.833 183.923Q-13.833 184.494-13.599 184.884Q-13.365 185.273-12.825 185.273M-8.334 185.427L-10.070 185.427L-10.070 185.147Q-9.841 185.147-9.692 185.113Q-9.544 185.078-9.544 184.938L-9.544 183.089Q-9.544 182.819-9.651 182.758Q-9.759 182.696-10.070 182.696L-10.070 182.416L-9.041 182.341L-9.041 183.048Q-8.911 182.740-8.669 182.541Q-8.426 182.341-8.108 182.341Q-7.889 182.341-7.718 182.465Q-7.547 182.590-7.547 182.802Q-7.547 182.939-7.647 183.038Q-7.746 183.137-7.879 183.137Q-8.016 183.137-8.115 183.038Q-8.214 182.939-8.214 182.802Q-8.214 182.662-8.115 182.563Q-8.405 182.563-8.605 182.759Q-8.805 182.956-8.898 183.250Q-8.990 183.544-8.990 183.824L-8.990 184.938Q-8.990 185.147-8.334 185.147\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -20.332)\">\u003Cpath d=\"M-2.717 185.495Q-3.096 185.495-3.387 185.287Q-3.677 185.078-3.871 184.738Q-4.064 184.398-4.158 184.015Q-4.252 183.633-4.252 183.284Q-4.252 182.942-4.156 182.554Q-4.060 182.166-3.871 181.833Q-3.681 181.500-3.389 181.290Q-3.096 181.079-2.717 181.079Q-2.232 181.079-1.881 181.428Q-1.531 181.777-1.358 182.289Q-1.186 182.802-1.186 183.284Q-1.186 183.769-1.358 184.284Q-1.531 184.798-1.881 185.147Q-2.232 185.495-2.717 185.495M-2.717 185.007Q-2.454 185.007-2.264 184.817Q-2.074 184.627-1.963 184.340Q-1.852 184.053-1.799 183.750Q-1.746 183.448-1.746 183.202Q-1.746 182.983-1.801 182.698Q-1.856 182.412-1.970 182.158Q-2.085 181.903-2.271 181.737Q-2.457 181.572-2.717 181.572Q-3.045 181.572-3.266 181.845Q-3.486 182.118-3.589 182.498Q-3.691 182.877-3.691 183.202Q-3.691 183.551-3.592 183.971Q-3.493 184.391-3.276 184.699Q-3.059 185.007-2.717 185.007M-0.632 185.219L-0.632 185.140Q-0.598 184.959-0.417 184.938L-0.061 184.938L0.752 183.872L-0.010 182.901L-0.376 182.901Q-0.547 182.884-0.591 182.689L-0.591 182.614Q-0.547 182.429-0.376 182.409L0.639 182.409Q0.814 182.429 0.858 182.614L0.858 182.689Q0.814 182.881 0.639 182.901L0.544 182.901L0.978 183.475L1.395 182.901L1.292 182.901Q1.118 182.881 1.073 182.689L1.073 182.614Q1.118 182.429 1.292 182.409L2.307 182.409Q2.478 182.426 2.523 182.614L2.523 182.689Q2.478 182.881 2.307 182.901L1.948 182.901L1.207 183.872L2.048 184.938L2.403 184.938Q2.577 184.959 2.622 185.140L2.622 185.219Q2.588 185.406 2.403 185.427L1.395 185.427Q1.214 185.406 1.179 185.219L1.179 185.140Q1.214 184.959 1.395 184.938L1.508 184.938L0.978 184.190L0.465 184.938L0.592 184.938Q0.773 184.959 0.807 185.140L0.807 185.219Q0.773 185.406 0.592 185.427L-0.417 185.427Q-0.588 185.410-0.632 185.219M3.606 185.219L3.606 185.140Q3.651 184.959 3.825 184.938L4.539 184.938L4.539 182.153Q4.208 182.423 3.811 182.423Q3.610 182.423 3.565 182.221L3.565 182.142Q3.610 181.954 3.781 181.934Q4.068 181.934 4.290 181.725Q4.512 181.517 4.635 181.213Q4.697 181.100 4.833 181.079L4.881 181.079Q5.052 181.096 5.096 181.284L5.096 184.938L5.811 184.938Q5.985 184.959 6.030 185.140L6.030 185.219Q5.985 185.406 5.811 185.427L3.825 185.427Q3.651 185.406 3.606 185.219M9.646 184.125L7.510 184.125Q7.557 184.367 7.730 184.562Q7.903 184.757 8.145 184.865Q8.388 184.972 8.637 184.972Q9.051 184.972 9.246 184.719Q9.253 184.709 9.302 184.617Q9.352 184.525 9.395 184.487Q9.437 184.449 9.519 184.439L9.646 184.439Q9.813 184.456 9.864 184.644L9.864 184.692Q9.806 184.955 9.605 185.128Q9.403 185.301 9.130 185.381Q8.856 185.461 8.590 185.461Q8.166 185.461 7.781 185.261Q7.397 185.061 7.163 184.711Q6.928 184.361 6.928 183.930L6.928 183.879Q6.928 183.469 7.144 183.116Q7.359 182.764 7.716 182.559Q8.073 182.354 8.484 182.354Q8.925 182.354 9.234 182.549Q9.543 182.744 9.704 183.084Q9.864 183.424 9.864 183.865L9.864 183.916Q9.813 184.104 9.646 184.125M7.516 183.643L9.290 183.643Q9.249 183.284 9.041 183.063Q8.832 182.843 8.484 182.843Q8.138 182.843 7.870 183.072Q7.602 183.301 7.516 183.643\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-23.212 126.9v-23.208\"\u002F>\u003Cpath stroke=\"none\" d=\"m-23.212 101.692-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(3.533 -69.382)\">\u003Cpath d=\"M-21.281 185.427L-22.833 185.427L-22.833 185.147Q-22.607 185.147-22.458 185.113Q-22.310 185.078-22.310 184.938L-22.310 183.089Q-22.310 182.901-22.358 182.817Q-22.405 182.734-22.503 182.715Q-22.600 182.696-22.812 182.696L-22.812 182.416L-21.756 182.341L-21.756 184.938Q-21.756 185.078-21.624 185.113Q-21.493 185.147-21.281 185.147L-21.281 185.427M-22.552 181.120Q-22.552 180.949-22.429 180.830Q-22.306 180.710-22.135 180.710Q-21.968 180.710-21.845 180.830Q-21.722 180.949-21.722 181.120Q-21.722 181.295-21.845 181.418Q-21.968 181.541-22.135 181.541Q-22.306 181.541-22.429 181.418Q-22.552 181.295-22.552 181.120M-20.635 183.916Q-20.635 183.588-20.500 183.287Q-20.365 182.987-20.129 182.766Q-19.893 182.546-19.589 182.426Q-19.285 182.306-18.960 182.306Q-18.454 182.306-18.106 182.409Q-17.757 182.511-17.757 182.887Q-17.757 183.034-17.854 183.135Q-17.952 183.236-18.099 183.236Q-18.253 183.236-18.352 183.137Q-18.451 183.038-18.451 182.887Q-18.451 182.699-18.311 182.607Q-18.512 182.556-18.953 182.556Q-19.309 182.556-19.538 182.752Q-19.767 182.949-19.868 183.258Q-19.968 183.568-19.968 183.916Q-19.968 184.265-19.842 184.571Q-19.715 184.877-19.461 185.061Q-19.206 185.246-18.851 185.246Q-18.629 185.246-18.444 185.162Q-18.259 185.078-18.124 184.923Q-17.989 184.767-17.931 184.559Q-17.918 184.504-17.863 184.504L-17.750 184.504Q-17.719 184.504-17.697 184.528Q-17.675 184.552-17.675 184.586L-17.675 184.607Q-17.760 184.894-17.948 185.092Q-18.136 185.290-18.401 185.393Q-18.666 185.495-18.960 185.495Q-19.391 185.495-19.779 185.289Q-20.167 185.082-20.401 184.719Q-20.635 184.357-20.635 183.916M-17.128 183.944Q-17.128 183.602-16.993 183.303Q-16.858 183.004-16.619 182.780Q-16.379 182.556-16.062 182.431Q-15.744 182.306-15.412 182.306Q-14.968 182.306-14.568 182.522Q-14.168 182.737-13.934 183.115Q-13.700 183.492-13.700 183.944Q-13.700 184.285-13.842 184.569Q-13.983 184.853-14.228 185.060Q-14.472 185.266-14.782 185.381Q-15.091 185.495-15.412 185.495Q-15.843 185.495-16.244 185.294Q-16.646 185.092-16.887 184.740Q-17.128 184.388-17.128 183.944M-15.412 185.246Q-14.811 185.246-14.587 184.868Q-14.363 184.490-14.363 183.858Q-14.363 183.246-14.597 182.887Q-14.831 182.529-15.412 182.529Q-16.465 182.529-16.465 183.858Q-16.465 184.490-16.239 184.868Q-16.014 185.246-15.412 185.246\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -69.382)\">\u003Cpath d=\"M-12.877 183.916Q-12.877 183.578-12.736 183.287Q-12.596 182.997-12.352 182.783Q-12.108 182.570-11.803 182.455Q-11.499 182.341-11.174 182.341Q-10.904 182.341-10.641 182.440Q-10.378 182.539-10.187 182.717L-10.187 181.319Q-10.187 181.049-10.294 180.987Q-10.402 180.926-10.713 180.926L-10.713 180.645L-9.636 180.570L-9.636 184.754Q-9.636 184.942-9.582 185.025Q-9.527 185.109-9.426 185.128Q-9.325 185.147-9.110 185.147L-9.110 185.427L-10.217 185.495L-10.217 185.078Q-10.634 185.495-11.260 185.495Q-11.691 185.495-12.063 185.283Q-12.436 185.072-12.656 184.711Q-12.877 184.350-12.877 183.916M-11.202 185.273Q-10.993 185.273-10.807 185.201Q-10.621 185.130-10.467 184.993Q-10.313 184.856-10.217 184.678L-10.217 183.069Q-10.303 182.922-10.448 182.802Q-10.593 182.682-10.763 182.623Q-10.932 182.563-11.113 182.563Q-11.673 182.563-11.942 182.952Q-12.210 183.342-12.210 183.923Q-12.210 184.494-11.976 184.884Q-11.742 185.273-11.202 185.273M-8.502 183.892Q-8.502 183.571-8.377 183.282Q-8.252 182.993-8.026 182.770Q-7.801 182.546-7.505 182.426Q-7.210 182.306-6.892 182.306Q-6.564 182.306-6.302 182.406Q-6.041 182.505-5.865 182.687Q-5.689 182.870-5.595 183.128Q-5.501 183.386-5.501 183.718Q-5.501 183.810-5.583 183.831L-7.838 183.831L-7.838 183.892Q-7.838 184.480-7.555 184.863Q-7.271 185.246-6.704 185.246Q-6.382 185.246-6.114 185.053Q-5.846 184.860-5.757 184.545Q-5.750 184.504-5.675 184.490L-5.583 184.490Q-5.501 184.514-5.501 184.586Q-5.501 184.593-5.507 184.620Q-5.620 185.017-5.991 185.256Q-6.362 185.495-6.786 185.495Q-7.223 185.495-7.623 185.287Q-8.023 185.078-8.262 184.711Q-8.502 184.344-8.502 183.892M-7.832 183.622L-6.017 183.622Q-6.017 183.345-6.114 183.093Q-6.212 182.840-6.410 182.684Q-6.608 182.529-6.892 182.529Q-7.169 182.529-7.382 182.687Q-7.596 182.846-7.714 183.101Q-7.832 183.356-7.832 183.622\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -69.382)\">\u003Cpath d=\"M-0.669 185.495Q-1.230 185.495-1.568 185.166Q-1.906 184.836-2.045 184.335Q-2.183 183.834-2.183 183.284Q-2.183 182.877-2.043 182.479Q-1.903 182.081-1.650 181.766Q-1.397 181.452-1.040 181.266Q-0.683 181.079-0.255 181.079Q-0.016 181.079 0.203 181.165Q0.421 181.250 0.555 181.421Q0.688 181.592 0.688 181.848Q0.688 182.002 0.589 182.108Q0.490 182.214 0.339 182.214Q0.185 182.214 0.083 182.115Q-0.020 182.016-0.020 181.865Q-0.020 181.760 0.045 181.654Q-0.050 181.572-0.255 181.572Q-0.621 181.572-0.915 181.782Q-1.209 181.992-1.389 182.330Q-1.568 182.669-1.609 183.017Q-1.400 182.843-1.130 182.749Q-0.860 182.655-0.580 182.655Q-0.283 182.655-0.021 182.764Q0.240 182.874 0.432 183.065Q0.623 183.257 0.732 183.518Q0.842 183.780 0.842 184.077Q0.842 184.381 0.720 184.644Q0.599 184.907 0.389 185.097Q0.179 185.287-0.097 185.391Q-0.372 185.495-0.669 185.495M-1.530 184.145Q-1.476 184.374-1.363 184.571Q-1.250 184.767-1.076 184.887Q-0.901 185.007-0.669 185.007Q-0.273 185.007 0.004 184.738Q0.281 184.470 0.281 184.077Q0.281 183.831 0.163 183.615Q0.045 183.400-0.161 183.275Q-0.368 183.151-0.628 183.151Q-0.970 183.151-1.260 183.349Q-1.551 183.547-1.551 183.872Q-1.551 183.906-1.537 183.974Q-1.524 184.043-1.524 184.077Q-1.524 184.101-1.525 184.114Q-1.527 184.128-1.530 184.145M2.561 184.938Q2.561 184.743 2.706 184.598Q2.851 184.453 3.053 184.453Q3.183 184.453 3.294 184.521Q3.405 184.590 3.470 184.699Q3.535 184.808 3.535 184.938Q3.535 185.136 3.390 185.282Q3.245 185.427 3.053 185.427Q2.855 185.427 2.708 185.280Q2.561 185.133 2.561 184.938M2.561 182.894Q2.561 182.699 2.706 182.554Q2.851 182.409 3.053 182.409Q3.183 182.409 3.294 182.477Q3.405 182.546 3.470 182.655Q3.535 182.764 3.535 182.894Q3.535 183.093 3.390 183.238Q3.245 183.383 3.053 183.383Q2.855 183.383 2.708 183.236Q2.561 183.089 2.561 182.894M6.762 185.495Q6.382 185.495 6.092 185.287Q5.801 185.078 5.608 184.738Q5.415 184.398 5.321 184.015Q5.227 183.633 5.227 183.284Q5.227 182.942 5.323 182.554Q5.418 182.166 5.608 181.833Q5.798 181.500 6.090 181.290Q6.382 181.079 6.762 181.079Q7.247 181.079 7.597 181.428Q7.948 181.777 8.120 182.289Q8.293 182.802 8.293 183.284Q8.293 183.769 8.120 184.284Q7.948 184.798 7.597 185.147Q7.247 185.495 6.762 185.495M6.762 185.007Q7.025 185.007 7.215 184.817Q7.404 184.627 7.515 184.340Q7.626 184.053 7.679 183.750Q7.732 183.448 7.732 183.202Q7.732 182.983 7.678 182.698Q7.623 182.412 7.508 182.158Q7.394 181.903 7.208 181.737Q7.021 181.572 6.762 181.572Q6.433 181.572 6.213 181.845Q5.993 182.118 5.890 182.498Q5.787 182.877 5.787 183.202Q5.787 183.551 5.887 183.971Q5.986 184.391 6.203 184.699Q6.420 185.007 6.762 185.007\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -69.382)\">\u003Cpath d=\"M9.445 186.657Q9.445 186.623 9.473 186.596Q9.743 186.367 9.892 186.044Q10.040 185.721 10.040 185.365L10.040 185.328Q9.931 185.427 9.767 185.427Q9.586 185.427 9.466 185.307Q9.346 185.188 9.346 185.007Q9.346 184.832 9.466 184.713Q9.586 184.593 9.767 184.593Q10.023 184.593 10.143 184.832Q10.262 185.072 10.262 185.365Q10.262 185.765 10.093 186.136Q9.924 186.507 9.627 186.763Q9.596 186.784 9.569 186.784Q9.528 186.784 9.486 186.743Q9.445 186.702 9.445 186.657\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -69.382)\">\u003Cpath d=\"M15.654 185.427L13.918 185.427L13.918 185.147Q14.147 185.147 14.296 185.113Q14.444 185.078 14.444 184.938L14.444 183.089Q14.444 182.819 14.337 182.758Q14.229 182.696 13.918 182.696L13.918 182.416L14.947 182.341L14.947 183.048Q15.077 182.740 15.319 182.541Q15.562 182.341 15.880 182.341Q16.099 182.341 16.270 182.465Q16.441 182.590 16.441 182.802Q16.441 182.939 16.341 183.038Q16.242 183.137 16.109 183.137Q15.972 183.137 15.873 183.038Q15.774 182.939 15.774 182.802Q15.774 182.662 15.873 182.563Q15.583 182.563 15.383 182.759Q15.183 182.956 15.090 183.250Q14.998 183.544 14.998 183.824L14.998 184.938Q14.998 185.147 15.654 185.147L15.654 185.427M18.614 185.427L17.025 185.427L17.025 185.147Q17.668 185.147 17.825 184.747L19.469 180.532Q19.503 180.437 19.616 180.437L19.698 180.437Q19.807 180.437 19.848 180.532L21.568 184.938Q21.636 185.078 21.826 185.113Q22.015 185.147 22.289 185.147L22.289 185.427L20.289 185.427L20.289 185.147Q20.853 185.147 20.853 184.972Q20.853 184.955 20.851 184.948Q20.850 184.942 20.846 184.938L20.426 183.872L18.467 183.872L18.126 184.747Q18.112 184.747 18.112 184.825Q18.112 184.986 18.274 185.066Q18.437 185.147 18.614 185.147L18.614 185.427M19.448 181.353L18.580 183.592L20.323 183.592L19.448 181.353M23.324 185.007Q23.324 184.839 23.447 184.716Q23.570 184.593 23.745 184.593Q23.912 184.593 24.035 184.716Q24.158 184.839 24.158 185.007Q24.158 185.181 24.035 185.304Q23.912 185.427 23.745 185.427Q23.570 185.427 23.447 185.304Q23.324 185.181 23.324 185.007M23.324 182.823Q23.324 182.655 23.447 182.532Q23.570 182.409 23.745 182.409Q23.912 182.409 24.035 182.532Q24.158 182.655 24.158 182.823Q24.158 182.997 24.035 183.120Q23.912 183.243 23.745 183.243Q23.570 183.243 23.447 183.120Q23.324 182.997 23.324 182.823M26.937 185.427L25.201 185.427L25.201 185.147Q25.430 185.147 25.579 185.113Q25.727 185.078 25.727 184.938L25.727 183.089Q25.727 182.819 25.620 182.758Q25.512 182.696 25.201 182.696L25.201 182.416L26.230 182.341L26.230 183.048Q26.360 182.740 26.602 182.541Q26.845 182.341 27.163 182.341Q27.382 182.341 27.552 182.465Q27.723 182.590 27.723 182.802Q27.723 182.939 27.624 183.038Q27.525 183.137 27.392 183.137Q27.255 183.137 27.156 183.038Q27.057 182.939 27.057 182.802Q27.057 182.662 27.156 182.563Q26.865 182.563 26.665 182.759Q26.465 182.956 26.373 183.250Q26.281 183.544 26.281 183.824L26.281 184.938Q26.281 185.147 26.937 185.147L26.937 185.427M31.374 185.427L28.400 185.427L28.400 185.147Q29.121 185.147 29.121 184.938L29.121 181.137Q29.121 180.926 28.400 180.926L28.400 180.645L31.158 180.645Q31.425 180.645 31.731 180.720Q32.037 180.796 32.297 180.943Q32.556 181.090 32.719 181.319Q32.881 181.548 32.881 181.842Q32.881 182.272 32.495 182.554Q32.109 182.836 31.627 182.928Q31.934 182.928 32.283 183.093Q32.632 183.257 32.861 183.535Q33.090 183.814 33.090 184.132Q33.090 184.538 32.826 184.832Q32.563 185.126 32.165 185.277Q31.767 185.427 31.374 185.427M29.764 183.055L29.764 184.938Q29.764 185.078 29.853 185.113Q29.942 185.147 30.130 185.147L31.158 185.147Q31.445 185.147 31.722 185.020Q31.999 184.894 32.170 184.660Q32.341 184.426 32.341 184.132Q32.341 183.916 32.259 183.720Q32.177 183.523 32.027 183.373Q31.876 183.222 31.680 183.139Q31.483 183.055 31.268 183.055L29.764 183.055M29.764 181.137L29.764 182.829L30.946 182.829Q31.234 182.829 31.514 182.710Q31.794 182.590 31.974 182.363Q32.153 182.135 32.153 181.842Q32.153 181.592 32.015 181.378Q31.876 181.165 31.647 181.045Q31.418 180.926 31.158 180.926L30.130 180.926Q29.942 180.926 29.853 180.960Q29.764 180.994 29.764 181.137\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -69.382)\">\u003Cpath d=\"M37.461 185.239L37.461 185.188Q37.461 184.713 37.553 184.234Q37.646 183.756 37.825 183.298Q38.004 182.840 38.264 182.421Q38.524 182.002 38.855 181.640L37.160 181.640L37.160 181.760Q37.116 181.948 36.941 181.968L36.818 181.968Q36.644 181.948 36.600 181.760L36.600 181.240Q36.644 181.055 36.818 181.038L36.941 181.038Q37.061 181.049 37.126 181.151L39.478 181.151Q39.648 181.172 39.693 181.353L39.693 181.431Q39.683 181.510 39.645 181.554Q39.416 181.780 39.214 182.012Q39.013 182.245 38.871 182.448Q38.729 182.652 38.591 182.913Q38.452 183.175 38.336 183.482Q38.182 183.896 38.102 184.347Q38.021 184.798 38.021 185.239Q38.011 185.348 37.936 185.417Q37.861 185.485 37.755 185.495Q37.635 185.495 37.553 185.427Q37.471 185.359 37.461 185.239M41.378 184.938Q41.378 184.743 41.523 184.598Q41.668 184.453 41.870 184.453Q42 184.453 42.111 184.521Q42.222 184.590 42.287 184.699Q42.352 184.808 42.352 184.938Q42.352 185.136 42.207 185.282Q42.062 185.427 41.870 185.427Q41.672 185.427 41.525 185.280Q41.378 185.133 41.378 184.938M41.378 182.894Q41.378 182.699 41.523 182.554Q41.668 182.409 41.870 182.409Q42 182.409 42.111 182.477Q42.222 182.546 42.287 182.655Q42.352 182.764 42.352 182.894Q42.352 183.093 42.207 183.238Q42.062 183.383 41.870 183.383Q41.672 183.383 41.525 183.236Q41.378 183.089 41.378 182.894M45.579 185.495Q45.199 185.495 44.909 185.287Q44.618 185.078 44.425 184.738Q44.232 184.398 44.138 184.015Q44.044 183.633 44.044 183.284Q44.044 182.942 44.140 182.554Q44.235 182.166 44.425 181.833Q44.615 181.500 44.907 181.290Q45.199 181.079 45.579 181.079Q46.064 181.079 46.414 181.428Q46.765 181.777 46.937 182.289Q47.110 182.802 47.110 183.284Q47.110 183.769 46.937 184.284Q46.765 184.798 46.414 185.147Q46.064 185.495 45.579 185.495M45.579 185.007Q45.842 185.007 46.032 184.817Q46.221 184.627 46.332 184.340Q46.443 184.053 46.496 183.750Q46.549 183.448 46.549 183.202Q46.549 182.983 46.495 182.698Q46.440 182.412 46.325 182.158Q46.211 181.903 46.025 181.737Q45.838 181.572 45.579 181.572Q45.250 181.572 45.030 181.845Q44.810 182.118 44.707 182.498Q44.605 182.877 44.605 183.202Q44.605 183.551 44.704 183.971Q44.803 184.391 45.020 184.699Q45.237 185.007 45.579 185.007\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-23.212 75.685V52.477\"\u002F>\u003Cpath stroke=\"none\" d=\"m-23.212 50.477-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(3.533 -120.597)\">\u003Cpath d=\"M-21.308 185.400L-22.436 182.901Q-22.508 182.754-22.638 182.722Q-22.768 182.689-22.997 182.689L-22.997 182.409L-21.483 182.409L-21.483 182.689Q-21.835 182.689-21.835 182.836Q-21.835 182.881-21.824 182.901L-20.960 184.819L-20.180 183.089Q-20.146 183.021-20.146 182.942Q-20.146 182.829-20.230 182.759Q-20.314 182.689-20.433 182.689L-20.433 182.409L-19.237 182.409L-19.237 182.689Q-19.456 182.689-19.627 182.792Q-19.797 182.894-19.886 183.089L-20.922 185.400Q-20.970 185.495-21.076 185.495L-21.154 185.495Q-21.260 185.495-21.308 185.400\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -120.597)\">\u003Cpath d=\"M-19.068 184.699Q-19.068 184.367-18.845 184.140Q-18.621 183.913-18.277 183.785Q-17.934 183.656-17.561 183.604Q-17.189 183.551-16.884 183.551L-16.884 183.298Q-16.884 183.093-16.992 182.913Q-17.100 182.734-17.281 182.631Q-17.462 182.529-17.670 182.529Q-18.077 182.529-18.313 182.621Q-18.224 182.658-18.178 182.742Q-18.132 182.826-18.132 182.928Q-18.132 183.024-18.178 183.103Q-18.224 183.181-18.305 183.226Q-18.385 183.270-18.474 183.270Q-18.624 183.270-18.725 183.173Q-18.826 183.075-18.826 182.928Q-18.826 182.306-17.670 182.306Q-17.459 182.306-17.209 182.370Q-16.960 182.433-16.758 182.552Q-16.556 182.672-16.430 182.857Q-16.303 183.041-16.303 183.284L-16.303 184.860Q-16.303 184.976-16.242 185.072Q-16.180 185.167-16.067 185.167Q-15.958 185.167-15.893 185.073Q-15.828 184.979-15.828 184.860L-15.828 184.412L-15.562 184.412L-15.562 184.860Q-15.562 185.130-15.789 185.295Q-16.016 185.461-16.296 185.461Q-16.505 185.461-16.642 185.307Q-16.778 185.154-16.802 184.938Q-16.949 185.205-17.231 185.350Q-17.513 185.495-17.838 185.495Q-18.115 185.495-18.399 185.420Q-18.682 185.345-18.875 185.166Q-19.068 184.986-19.068 184.699M-18.453 184.699Q-18.453 184.873-18.352 185.003Q-18.252 185.133-18.096 185.203Q-17.941 185.273-17.776 185.273Q-17.558 185.273-17.349 185.176Q-17.141 185.078-17.013 184.897Q-16.884 184.716-16.884 184.490L-16.884 183.762Q-17.209 183.762-17.575 183.853Q-17.941 183.944-18.197 184.156Q-18.453 184.367-18.453 184.699M-13.477 185.427L-15.080 185.427L-15.080 185.147Q-14.854 185.147-14.705 185.113Q-14.557 185.078-14.557 184.938L-14.557 181.319Q-14.557 181.049-14.664 180.987Q-14.772 180.926-15.080 180.926L-15.080 180.645L-14.003 180.570L-14.003 184.938Q-14.003 185.075-13.853 185.111Q-13.702 185.147-13.477 185.147L-13.477 185.427M-11.293 185.427L-12.882 185.427L-12.882 185.147Q-12.239 185.147-12.082 184.747L-10.438 180.532Q-10.404 180.437-10.291 180.437L-10.209 180.437Q-10.100 180.437-10.059 180.532L-8.339 184.938Q-8.271 185.078-8.081 185.113Q-7.892 185.147-7.618 185.147L-7.618 185.427L-9.618 185.427L-9.618 185.147Q-9.054 185.147-9.054 184.972Q-9.054 184.955-9.056 184.948Q-9.057 184.942-9.061 184.938L-9.481 183.872L-11.440 183.872L-11.781 184.747Q-11.795 184.747-11.795 184.825Q-11.795 184.986-11.633 185.066Q-11.470 185.147-11.293 185.147L-11.293 185.427M-10.459 181.353L-11.327 183.592L-9.584 183.592L-10.459 181.353M-1.815 184.620L-6.648 184.620Q-6.716 184.610-6.762 184.564Q-6.808 184.518-6.808 184.446Q-6.808 184.381-6.762 184.335Q-6.716 184.289-6.648 184.279L-1.815 184.279Q-1.746 184.289-1.700 184.335Q-1.654 184.381-1.654 184.446Q-1.654 184.518-1.700 184.564Q-1.746 184.610-1.815 184.620M-1.815 183.082L-6.648 183.082Q-6.716 183.072-6.762 183.026Q-6.808 182.980-6.808 182.908Q-6.808 182.764-6.648 182.740L-1.815 182.740Q-1.654 182.764-1.654 182.908Q-1.654 182.980-1.700 183.026Q-1.746 183.072-1.815 183.082M-0.362 184.880Q-0.242 185.037-0.051 185.136Q0.141 185.236 0.356 185.275Q0.571 185.314 0.793 185.314Q1.091 185.314 1.286 185.159Q1.480 185.003 1.571 184.749Q1.662 184.494 1.662 184.210Q1.662 183.916 1.569 183.665Q1.477 183.414 1.279 183.258Q1.080 183.103 0.787 183.103L0.270 183.103Q0.243 183.103 0.217 183.077Q0.192 183.052 0.192 183.028L0.192 182.956Q0.192 182.925 0.217 182.903Q0.243 182.881 0.270 182.881L0.711 182.850Q1.074 182.850 1.294 182.493Q1.515 182.135 1.515 181.746Q1.515 181.418 1.320 181.214Q1.125 181.011 0.793 181.011Q0.506 181.011 0.253 181.095Q0 181.178-0.164 181.366Q-0.017 181.366 0.084 181.481Q0.185 181.595 0.185 181.746Q0.185 181.896 0.079 182.006Q-0.027 182.115-0.184 182.115Q-0.345 182.115-0.454 182.006Q-0.564 181.896-0.564 181.746Q-0.564 181.421-0.355 181.202Q-0.147 180.984 0.170 180.881Q0.486 180.779 0.793 180.779Q1.111 180.779 1.439 180.883Q1.767 180.987 1.995 181.209Q2.222 181.431 2.222 181.746Q2.222 182.180 1.935 182.505Q1.648 182.829 1.214 182.976Q1.525 183.041 1.805 183.207Q2.085 183.373 2.263 183.631Q2.441 183.889 2.441 184.210Q2.441 184.620 2.196 184.930Q1.952 185.239 1.571 185.403Q1.190 185.567 0.793 185.567Q0.424 185.567 0.067 185.454Q-0.290 185.342-0.535 185.092Q-0.779 184.843-0.779 184.473Q-0.779 184.302-0.663 184.190Q-0.546 184.077-0.376 184.077Q-0.266 184.077-0.176 184.128Q-0.085 184.179-0.030 184.272Q0.024 184.364 0.024 184.473Q0.024 184.641-0.088 184.760Q-0.201 184.880-0.362 184.880M3.637 186.657Q3.637 186.623 3.664 186.596Q3.934 186.367 4.083 186.044Q4.232 185.721 4.232 185.365L4.232 185.328Q4.122 185.427 3.958 185.427Q3.777 185.427 3.658 185.307Q3.538 185.188 3.538 185.007Q3.538 184.832 3.658 184.713Q3.777 184.593 3.958 184.593Q4.215 184.593 4.334 184.832Q4.454 185.072 4.454 185.365Q4.454 185.765 4.285 186.136Q4.116 186.507 3.818 186.763Q3.788 186.784 3.760 186.784Q3.719 186.784 3.678 186.743Q3.637 186.702 3.637 186.657\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -120.597)\">\u003Cpath d=\"M9.699 185.400L8.571 182.901Q8.499 182.754 8.369 182.722Q8.239 182.689 8.010 182.689L8.010 182.409L9.524 182.409L9.524 182.689Q9.172 182.689 9.172 182.836Q9.172 182.881 9.183 182.901L10.047 184.819L10.827 183.089Q10.861 183.021 10.861 182.942Q10.861 182.829 10.777 182.759Q10.693 182.689 10.574 182.689L10.574 182.409L11.770 182.409L11.770 182.689Q11.551 182.689 11.380 182.792Q11.210 182.894 11.121 183.089L10.085 185.400Q10.037 185.495 9.931 185.495L9.853 185.495Q9.747 185.495 9.699 185.400\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -120.597)\">\u003Cpath d=\"M11.939 184.699Q11.939 184.367 12.162 184.140Q12.386 183.913 12.730 183.785Q13.073 183.656 13.446 183.604Q13.818 183.551 14.123 183.551L14.123 183.298Q14.123 183.093 14.015 182.913Q13.907 182.734 13.726 182.631Q13.545 182.529 13.337 182.529Q12.930 182.529 12.694 182.621Q12.783 182.658 12.829 182.742Q12.875 182.826 12.875 182.928Q12.875 183.024 12.829 183.103Q12.783 183.181 12.702 183.226Q12.622 183.270 12.533 183.270Q12.383 183.270 12.282 183.173Q12.181 183.075 12.181 182.928Q12.181 182.306 13.337 182.306Q13.548 182.306 13.798 182.370Q14.047 182.433 14.249 182.552Q14.451 182.672 14.577 182.857Q14.704 183.041 14.704 183.284L14.704 184.860Q14.704 184.976 14.765 185.072Q14.827 185.167 14.940 185.167Q15.049 185.167 15.114 185.073Q15.179 184.979 15.179 184.860L15.179 184.412L15.445 184.412L15.445 184.860Q15.445 185.130 15.218 185.295Q14.991 185.461 14.711 185.461Q14.502 185.461 14.365 185.307Q14.229 185.154 14.205 184.938Q14.058 185.205 13.776 185.350Q13.494 185.495 13.169 185.495Q12.892 185.495 12.608 185.420Q12.325 185.345 12.132 185.166Q11.939 184.986 11.939 184.699M12.554 184.699Q12.554 184.873 12.655 185.003Q12.755 185.133 12.911 185.203Q13.066 185.273 13.231 185.273Q13.449 185.273 13.658 185.176Q13.866 185.078 13.994 184.897Q14.123 184.716 14.123 184.490L14.123 183.762Q13.798 183.762 13.432 183.853Q13.066 183.944 12.810 184.156Q12.554 184.367 12.554 184.699M17.530 185.427L15.927 185.427L15.927 185.147Q16.153 185.147 16.302 185.113Q16.450 185.078 16.450 184.938L16.450 181.319Q16.450 181.049 16.343 180.987Q16.235 180.926 15.927 180.926L15.927 180.645L17.004 180.570L17.004 184.938Q17.004 185.075 17.154 185.111Q17.305 185.147 17.530 185.147L17.530 185.427M21.191 185.427L18.217 185.427L18.217 185.147Q18.939 185.147 18.939 184.938L18.939 181.137Q18.939 180.926 18.217 180.926L18.217 180.645L20.976 180.645Q21.242 180.645 21.548 180.720Q21.854 180.796 22.114 180.943Q22.374 181.090 22.536 181.319Q22.698 181.548 22.698 181.842Q22.698 182.272 22.312 182.554Q21.926 182.836 21.444 182.928Q21.752 182.928 22.100 183.093Q22.449 183.257 22.678 183.535Q22.907 183.814 22.907 184.132Q22.907 184.538 22.644 184.832Q22.380 185.126 21.982 185.277Q21.584 185.427 21.191 185.427M19.581 183.055L19.581 184.938Q19.581 185.078 19.670 185.113Q19.759 185.147 19.947 185.147L20.976 185.147Q21.263 185.147 21.540 185.020Q21.816 184.894 21.987 184.660Q22.158 184.426 22.158 184.132Q22.158 183.916 22.076 183.720Q21.994 183.523 21.844 183.373Q21.693 183.222 21.497 183.139Q21.300 183.055 21.085 183.055L19.581 183.055M19.581 181.137L19.581 182.829L20.764 182.829Q21.051 182.829 21.331 182.710Q21.611 182.590 21.791 182.363Q21.970 182.135 21.970 181.842Q21.970 181.592 21.832 181.378Q21.693 181.165 21.464 181.045Q21.235 180.926 20.976 180.926L19.947 180.926Q19.759 180.926 19.670 180.960Q19.581 180.994 19.581 181.137M28.878 184.620L24.045 184.620Q23.977 184.610 23.931 184.564Q23.884 184.518 23.884 184.446Q23.884 184.381 23.931 184.335Q23.977 184.289 24.045 184.279L28.878 184.279Q28.946 184.289 28.993 184.335Q29.039 184.381 29.039 184.446Q29.039 184.518 28.993 184.564Q28.946 184.610 28.878 184.620M28.878 183.082L24.045 183.082Q23.977 183.072 23.931 183.026Q23.884 182.980 23.884 182.908Q23.884 182.764 24.045 182.740L28.878 182.740Q29.039 182.764 29.039 182.908Q29.039 182.980 28.993 183.026Q28.946 183.072 28.878 183.082M31.524 185.567Q30.888 185.567 30.524 185.222Q30.160 184.877 30.025 184.352Q29.890 183.827 29.890 183.202Q29.890 182.177 30.245 181.478Q30.601 180.779 31.524 180.779Q32.450 180.779 32.802 181.478Q33.154 182.177 33.154 183.202Q33.154 183.827 33.019 184.352Q32.884 184.877 32.522 185.222Q32.159 185.567 31.524 185.567M31.524 185.342Q31.961 185.342 32.175 184.967Q32.388 184.593 32.438 184.126Q32.487 183.660 32.487 183.082Q32.487 182.529 32.438 182.101Q32.388 181.674 32.176 181.339Q31.964 181.004 31.524 181.004Q31.182 181.004 30.978 181.211Q30.775 181.418 30.688 181.730Q30.601 182.043 30.578 182.359Q30.556 182.676 30.556 183.082Q30.556 183.499 30.578 183.841Q30.601 184.183 30.690 184.531Q30.778 184.880 30.983 185.111Q31.189 185.342 31.524 185.342\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M8.286 37.473h60.196\"\u002F>\u003Cpath stroke=\"none\" d=\"m70.482 37.473-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg transform=\"translate(52.769 -151.487)\">\u003Cpath d=\"M-21.148 185.427L-22.884 185.427L-22.884 185.147Q-22.655 185.147-22.506 185.113Q-22.358 185.078-22.358 184.938L-22.358 183.089Q-22.358 182.819-22.465 182.758Q-22.573 182.696-22.884 182.696L-22.884 182.416L-21.855 182.341L-21.855 183.048Q-21.725 182.740-21.483 182.541Q-21.240 182.341-20.922 182.341Q-20.703 182.341-20.532 182.465Q-20.361 182.590-20.361 182.802Q-20.361 182.939-20.461 183.038Q-20.560 183.137-20.693 183.137Q-20.830 183.137-20.929 183.038Q-21.028 182.939-21.028 182.802Q-21.028 182.662-20.929 182.563Q-21.219 182.563-21.419 182.759Q-21.619 182.956-21.712 183.250Q-21.804 183.544-21.804 183.824L-21.804 184.938Q-21.804 185.147-21.148 185.147L-21.148 185.427M-19.818 183.892Q-19.818 183.571-19.693 183.282Q-19.568 182.993-19.343 182.770Q-19.117 182.546-18.822 182.426Q-18.526 182.306-18.208 182.306Q-17.880 182.306-17.618 182.406Q-17.357 182.505-17.181 182.687Q-17.005 182.870-16.911 183.128Q-16.817 183.386-16.817 183.718Q-16.817 183.810-16.899 183.831L-19.155 183.831L-19.155 183.892Q-19.155 184.480-18.871 184.863Q-18.587 185.246-18.020 185.246Q-17.699 185.246-17.431 185.053Q-17.162 184.860-17.073 184.545Q-17.066 184.504-16.991 184.490L-16.899 184.490Q-16.817 184.514-16.817 184.586Q-16.817 184.593-16.824 184.620Q-16.937 185.017-17.307 185.256Q-17.678 185.495-18.102 185.495Q-18.540 185.495-18.940 185.287Q-19.339 185.078-19.579 184.711Q-19.818 184.344-19.818 183.892M-19.148 183.622L-17.333 183.622Q-17.333 183.345-17.431 183.093Q-17.528 182.840-17.726 182.684Q-17.924 182.529-18.208 182.529Q-18.485 182.529-18.699 182.687Q-18.912 182.846-19.030 183.101Q-19.148 183.356-19.148 183.622M-16.229 185.420L-16.229 184.357Q-16.229 184.333-16.202 184.306Q-16.174 184.279-16.150 184.279L-16.041 184.279Q-15.976 184.279-15.962 184.337Q-15.867 184.771-15.621 185.022Q-15.375 185.273-14.961 185.273Q-14.619 185.273-14.366 185.140Q-14.113 185.007-14.113 184.699Q-14.113 184.542-14.207 184.427Q-14.301 184.313-14.440 184.244Q-14.578 184.176-14.746 184.138L-15.327 184.039Q-15.682 183.971-15.956 183.750Q-16.229 183.530-16.229 183.188Q-16.229 182.939-16.118 182.764Q-16.007 182.590-15.821 182.491Q-15.634 182.392-15.419 182.349Q-15.204 182.306-14.961 182.306Q-14.547 182.306-14.267 182.488L-14.052 182.313Q-14.042 182.310-14.035 182.308Q-14.028 182.306-14.018 182.306L-13.966 182.306Q-13.939 182.306-13.915 182.330Q-13.891 182.354-13.891 182.382L-13.891 183.229Q-13.891 183.250-13.915 183.277Q-13.939 183.304-13.966 183.304L-14.079 183.304Q-14.107 183.304-14.132 183.279Q-14.158 183.253-14.158 183.229Q-14.158 182.993-14.264 182.829Q-14.370 182.665-14.553 182.583Q-14.735 182.501-14.968 182.501Q-15.296 182.501-15.552 182.604Q-15.809 182.706-15.809 182.983Q-15.809 183.178-15.626 183.287Q-15.443 183.397-15.214 183.438L-14.640 183.544Q-14.394 183.592-14.180 183.720Q-13.966 183.848-13.830 184.051Q-13.693 184.255-13.693 184.504Q-13.693 185.017-14.059 185.256Q-14.424 185.495-14.961 185.495Q-15.457 185.495-15.788 185.201L-16.055 185.475Q-16.075 185.495-16.103 185.495L-16.150 185.495Q-16.174 185.495-16.202 185.468Q-16.229 185.441-16.229 185.420M-12.490 184.593L-12.490 183.089Q-12.490 182.819-12.597 182.758Q-12.705 182.696-13.016 182.696L-13.016 182.416L-11.909 182.341L-11.909 184.573L-11.909 184.593Q-11.909 184.873-11.858 185.017Q-11.806 185.160-11.664 185.217Q-11.523 185.273-11.235 185.273Q-10.983 185.273-10.777 185.133Q-10.572 184.993-10.456 184.767Q-10.340 184.542-10.340 184.292L-10.340 183.089Q-10.340 182.819-10.448 182.758Q-10.555 182.696-10.866 182.696L-10.866 182.416L-9.759 182.341L-9.759 184.754Q-9.759 184.945-9.706 185.027Q-9.653 185.109-9.552 185.128Q-9.451 185.147-9.236 185.147L-9.236 185.427L-10.313 185.495L-10.313 184.931Q-10.422 185.113-10.567 185.236Q-10.712 185.359-10.899 185.427Q-11.085 185.495-11.287 185.495Q-12.490 185.495-12.490 184.593M-6.980 185.427L-8.583 185.427L-8.583 185.147Q-8.358 185.147-8.209 185.113Q-8.060 185.078-8.060 184.938L-8.060 181.319Q-8.060 181.049-8.168 180.987Q-8.275 180.926-8.583 180.926L-8.583 180.645L-7.506 180.570L-7.506 184.938Q-7.506 185.075-7.356 185.111Q-7.206 185.147-6.980 185.147L-6.980 185.427M-5.859 184.586L-5.859 182.689L-6.498 182.689L-6.498 182.467Q-6.180 182.467-5.963 182.257Q-5.746 182.047-5.645 181.737Q-5.545 181.428-5.545 181.120L-5.278 181.120L-5.278 182.409L-4.201 182.409L-4.201 182.689L-5.278 182.689L-5.278 184.573Q-5.278 184.849-5.174 185.048Q-5.069 185.246-4.810 185.246Q-4.652 185.246-4.546 185.142Q-4.441 185.037-4.391 184.884Q-4.341 184.730-4.341 184.573L-4.341 184.159L-4.075 184.159L-4.075 184.586Q-4.075 184.812-4.174 185.022Q-4.273 185.232-4.458 185.364Q-4.642 185.495-4.871 185.495Q-5.309 185.495-5.584 185.258Q-5.859 185.020-5.859 184.586\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(71.82 -155.521)\">\u003Cpath d=\"M-18.943 185.427L-22.624 185.427Q-22.662 185.427-22.692 185.400Q-22.723 185.372-22.723 185.328L-22.723 185.225Q-22.723 185.191-22.692 185.154L-19.698 180.926L-20.761 180.926Q-21.175 180.926-21.459 180.982Q-21.742 181.038-21.958 181.226Q-22.351 181.599-22.351 182.282L-22.617 182.282L-22.532 180.645L-18.963 180.645Q-18.919 180.645-18.892 180.674Q-18.864 180.703-18.864 180.744L-18.864 180.837Q-18.864 180.867-18.885 180.898L-21.882 185.119L-20.768 185.119Q-20.461 185.119-20.254 185.099Q-20.047 185.078-19.837 185Q-19.627 184.921-19.466 184.767Q-19.251 184.552-19.181 184.256Q-19.110 183.961-19.083 183.489L-18.816 183.489L-18.943 185.427M-15.675 185.427L-17.989 185.427L-17.989 185.147Q-17.268 185.147-17.268 184.938L-17.268 181.137Q-17.268 180.926-17.989 180.926L-17.989 180.645L-13.806 180.645L-13.594 182.282L-13.860 182.282Q-13.939 181.671-14.091 181.392Q-14.243 181.114-14.547 181.020Q-14.852 180.926-15.477 180.926L-16.212 180.926Q-16.400 180.926-16.489 180.960Q-16.578 180.994-16.578 181.137L-16.578 182.894L-16.024 182.894Q-15.655 182.894-15.470 182.840Q-15.286 182.785-15.207 182.612Q-15.129 182.440-15.129 182.074L-14.862 182.074L-14.862 183.991L-15.129 183.991Q-15.129 183.626-15.207 183.453Q-15.286 183.281-15.470 183.228Q-15.655 183.175-16.024 183.175L-16.578 183.175L-16.578 184.938Q-16.578 185.147-15.675 185.147L-15.675 185.427M-7.729 184.620L-12.562 184.620Q-12.630 184.610-12.676 184.564Q-12.722 184.518-12.722 184.446Q-12.722 184.381-12.676 184.335Q-12.630 184.289-12.562 184.279L-7.729 184.279Q-7.660 184.289-7.614 184.335Q-7.568 184.381-7.568 184.446Q-7.568 184.518-7.614 184.564Q-7.660 184.610-7.729 184.620M-7.729 183.082L-12.562 183.082Q-12.630 183.072-12.676 183.026Q-12.722 182.980-12.722 182.908Q-12.722 182.764-12.562 182.740L-7.729 182.740Q-7.568 182.764-7.568 182.908Q-7.568 182.980-7.614 183.026Q-7.660 183.072-7.729 183.082M-5.083 185.567Q-5.719 185.567-6.083 185.222Q-6.447 184.877-6.582 184.352Q-6.717 183.827-6.717 183.202Q-6.717 182.177-6.361 181.478Q-6.006 180.779-5.083 180.779Q-4.157 180.779-3.805 181.478Q-3.453 182.177-3.453 183.202Q-3.453 183.827-3.588 184.352Q-3.723 184.877-4.085 185.222Q-4.447 185.567-5.083 185.567M-5.083 185.342Q-4.646 185.342-4.432 184.967Q-4.218 184.593-4.169 184.126Q-4.119 183.660-4.119 183.082Q-4.119 182.529-4.169 182.101Q-4.218 181.674-4.430 181.339Q-4.642 181.004-5.083 181.004Q-5.425 181.004-5.628 181.211Q-5.832 181.418-5.919 181.730Q-6.006 182.043-6.028 182.359Q-6.050 182.676-6.050 183.082Q-6.050 183.499-6.028 183.841Q-6.006 184.183-5.917 184.531Q-5.828 184.880-5.623 185.111Q-5.418 185.342-5.083 185.342\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-23.212 24.47V1.262\"\u002F>\u003Cpath stroke=\"none\" d=\"m-23.212-.738-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(3.533 -171.131)\">\u003Cpath d=\"M-21.308 185.400L-22.436 182.901Q-22.508 182.754-22.638 182.722Q-22.768 182.689-22.997 182.689L-22.997 182.409L-21.483 182.409L-21.483 182.689Q-21.835 182.689-21.835 182.836Q-21.835 182.881-21.824 182.901L-20.960 184.819L-20.180 183.089Q-20.146 183.021-20.146 182.942Q-20.146 182.829-20.230 182.759Q-20.314 182.689-20.433 182.689L-20.433 182.409L-19.237 182.409L-19.237 182.689Q-19.456 182.689-19.627 182.792Q-19.797 182.894-19.886 183.089L-20.922 185.400Q-20.970 185.495-21.076 185.495L-21.154 185.495Q-21.260 185.495-21.308 185.400\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -171.131)\">\u003Cpath d=\"M-19.068 184.699Q-19.068 184.367-18.845 184.140Q-18.621 183.913-18.277 183.785Q-17.934 183.656-17.561 183.604Q-17.189 183.551-16.884 183.551L-16.884 183.298Q-16.884 183.093-16.992 182.913Q-17.100 182.734-17.281 182.631Q-17.462 182.529-17.670 182.529Q-18.077 182.529-18.313 182.621Q-18.224 182.658-18.178 182.742Q-18.132 182.826-18.132 182.928Q-18.132 183.024-18.178 183.103Q-18.224 183.181-18.305 183.226Q-18.385 183.270-18.474 183.270Q-18.624 183.270-18.725 183.173Q-18.826 183.075-18.826 182.928Q-18.826 182.306-17.670 182.306Q-17.459 182.306-17.209 182.370Q-16.960 182.433-16.758 182.552Q-16.556 182.672-16.430 182.857Q-16.303 183.041-16.303 183.284L-16.303 184.860Q-16.303 184.976-16.242 185.072Q-16.180 185.167-16.067 185.167Q-15.958 185.167-15.893 185.073Q-15.828 184.979-15.828 184.860L-15.828 184.412L-15.562 184.412L-15.562 184.860Q-15.562 185.130-15.789 185.295Q-16.016 185.461-16.296 185.461Q-16.505 185.461-16.642 185.307Q-16.778 185.154-16.802 184.938Q-16.949 185.205-17.231 185.350Q-17.513 185.495-17.838 185.495Q-18.115 185.495-18.399 185.420Q-18.682 185.345-18.875 185.166Q-19.068 184.986-19.068 184.699M-18.453 184.699Q-18.453 184.873-18.352 185.003Q-18.252 185.133-18.096 185.203Q-17.941 185.273-17.776 185.273Q-17.558 185.273-17.349 185.176Q-17.141 185.078-17.013 184.897Q-16.884 184.716-16.884 184.490L-16.884 183.762Q-17.209 183.762-17.575 183.853Q-17.941 183.944-18.197 184.156Q-18.453 184.367-18.453 184.699M-13.477 185.427L-15.080 185.427L-15.080 185.147Q-14.854 185.147-14.705 185.113Q-14.557 185.078-14.557 184.938L-14.557 181.319Q-14.557 181.049-14.664 180.987Q-14.772 180.926-15.080 180.926L-15.080 180.645L-14.003 180.570L-14.003 184.938Q-14.003 185.075-13.853 185.111Q-13.702 185.147-13.477 185.147L-13.477 185.427M-8.415 185.427L-12.817 185.427L-12.817 185.147Q-12.096 185.147-12.096 184.938L-12.096 181.137Q-12.096 180.926-12.817 180.926L-12.817 180.645L-8.527 180.645L-8.319 182.282L-8.582 182.282Q-8.640 181.811-8.743 181.546Q-8.845 181.281-9.030 181.148Q-9.214 181.014-9.486 180.970Q-9.758 180.926-10.257 180.926L-11.040 180.926Q-11.228 180.926-11.316 180.960Q-11.405 180.994-11.405 181.137L-11.405 182.802L-10.831 182.802Q-10.441 182.802-10.259 182.751Q-10.076 182.699-9.994 182.527Q-9.912 182.354-9.912 181.982L-9.649 181.982L-9.649 183.903L-9.912 183.903Q-9.912 183.530-9.994 183.357Q-10.076 183.185-10.259 183.134Q-10.441 183.082-10.831 183.082L-11.405 183.082L-11.405 184.938Q-11.405 185.078-11.316 185.113Q-11.228 185.147-11.040 185.147L-10.192 185.147Q-9.662 185.147-9.353 185.078Q-9.044 185.010-8.856 184.843Q-8.668 184.675-8.560 184.373Q-8.452 184.070-8.367 183.557L-8.100 183.557L-8.415 185.427M-2.344 184.620L-7.177 184.620Q-7.246 184.610-7.292 184.564Q-7.338 184.518-7.338 184.446Q-7.338 184.381-7.292 184.335Q-7.246 184.289-7.177 184.279L-2.344 184.279Q-2.276 184.289-2.230 184.335Q-2.184 184.381-2.184 184.446Q-2.184 184.518-2.230 184.564Q-2.276 184.610-2.344 184.620M-2.344 183.082L-7.177 183.082Q-7.246 183.072-7.292 183.026Q-7.338 182.980-7.338 182.908Q-7.338 182.764-7.177 182.740L-2.344 182.740Q-2.184 182.764-2.184 182.908Q-2.184 182.980-2.230 183.026Q-2.276 183.072-2.344 183.082M-0.892 184.880Q-0.772 185.037-0.581 185.136Q-0.389 185.236-0.174 185.275Q0.041 185.314 0.264 185.314Q0.561 185.314 0.756 185.159Q0.951 185.003 1.041 184.749Q1.132 184.494 1.132 184.210Q1.132 183.916 1.039 183.665Q0.947 183.414 0.749 183.258Q0.551 183.103 0.257 183.103L-0.259 183.103Q-0.287 183.103-0.312 183.077Q-0.338 183.052-0.338 183.028L-0.338 182.956Q-0.338 182.925-0.312 182.903Q-0.287 182.881-0.259 182.881L0.182 182.850Q0.544 182.850 0.764 182.493Q0.985 182.135 0.985 181.746Q0.985 181.418 0.790 181.214Q0.595 181.011 0.264 181.011Q-0.024 181.011-0.276 181.095Q-0.529 181.178-0.693 181.366Q-0.546 181.366-0.446 181.481Q-0.345 181.595-0.345 181.746Q-0.345 181.896-0.451 182.006Q-0.557 182.115-0.714 182.115Q-0.875 182.115-0.984 182.006Q-1.093 181.896-1.093 181.746Q-1.093 181.421-0.885 181.202Q-0.676 180.984-0.360 180.881Q-0.044 180.779 0.264 180.779Q0.581 180.779 0.910 180.883Q1.238 180.987 1.465 181.209Q1.692 181.431 1.692 181.746Q1.692 182.180 1.405 182.505Q1.118 182.829 0.684 182.976Q0.995 183.041 1.275 183.207Q1.556 183.373 1.733 183.631Q1.911 183.889 1.911 184.210Q1.911 184.620 1.667 184.930Q1.422 185.239 1.041 185.403Q0.660 185.567 0.264 185.567Q-0.106 185.567-0.463 185.454Q-0.820 185.342-1.064 185.092Q-1.309 184.843-1.309 184.473Q-1.309 184.302-1.192 184.190Q-1.076 184.077-0.905 184.077Q-0.796 184.077-0.705 184.128Q-0.615 184.179-0.560 184.272Q-0.505 184.364-0.505 184.473Q-0.505 184.641-0.618 184.760Q-0.731 184.880-0.892 184.880\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -171.131)\">\u003Cpath d=\"M11.436 183.851L5.711 183.851Q5.646 183.851 5.598 183.798Q5.550 183.745 5.550 183.677Q5.550 183.612 5.598 183.561Q5.646 183.510 5.711 183.510L11.436 183.510Q11.186 183.325 10.978 183.077Q10.769 182.829 10.629 182.541Q10.489 182.252 10.427 181.941Q10.427 181.848 10.520 181.835L10.687 181.835Q10.762 181.845 10.773 181.920Q10.855 182.320 11.078 182.664Q11.302 183.007 11.634 183.245Q11.965 183.482 12.365 183.585Q12.423 183.605 12.423 183.677Q12.423 183.708 12.408 183.737Q12.393 183.766 12.365 183.769Q11.969 183.872 11.634 184.114Q11.299 184.357 11.075 184.702Q10.851 185.048 10.773 185.441Q10.762 185.516 10.687 185.526L10.520 185.526Q10.427 185.512 10.427 185.420Q10.523 184.952 10.784 184.545Q11.046 184.138 11.436 183.851\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -171.131)\">\u003Cpath d=\"M16.805 185.653Q16.805 185.608 16.832 185.553L20.240 180.973Q19.799 181.178 19.324 181.178Q18.736 181.178 18.169 180.891Q18.302 181.202 18.302 181.585Q18.302 181.900 18.189 182.228Q18.076 182.556 17.847 182.776Q17.618 182.997 17.294 182.997Q16.952 182.997 16.690 182.787Q16.429 182.576 16.294 182.248Q16.159 181.920 16.159 181.585Q16.159 181.254 16.294 180.926Q16.429 180.597 16.690 180.387Q16.952 180.177 17.294 180.177Q17.577 180.177 17.827 180.385Q18.148 180.659 18.526 180.806Q18.903 180.953 19.317 180.953Q19.754 180.953 20.144 180.772Q20.534 180.591 20.787 180.245Q20.845 180.177 20.927 180.177Q20.995 180.177 21.045 180.227Q21.094 180.276 21.094 180.344Q21.094 180.389 21.067 180.444L17.119 185.741Q17.065 185.820 16.979 185.820Q16.907 185.820 16.856 185.769Q16.805 185.718 16.805 185.653M17.294 182.775Q17.536 182.775 17.705 182.580Q17.875 182.385 17.955 182.103Q18.035 181.821 18.035 181.585Q18.035 181.418 17.991 181.208Q17.946 180.997 17.861 180.823Q17.775 180.649 17.628 180.526Q17.482 180.403 17.294 180.403Q16.938 180.403 16.812 180.773Q16.685 181.144 16.685 181.585Q16.685 182.030 16.812 182.402Q16.938 182.775 17.294 182.775M20.732 185.820Q20.390 185.820 20.129 185.608Q19.867 185.396 19.732 185.068Q19.597 184.740 19.597 184.405Q19.597 184.073 19.732 183.747Q19.867 183.421 20.129 183.209Q20.390 182.997 20.732 182.997Q21.053 182.997 21.282 183.217Q21.511 183.438 21.626 183.766Q21.740 184.094 21.740 184.405Q21.740 184.719 21.626 185.049Q21.511 185.379 21.282 185.600Q21.053 185.820 20.732 185.820M20.732 185.594Q20.975 185.594 21.146 185.398Q21.316 185.201 21.395 184.923Q21.474 184.644 21.474 184.405Q21.474 184.238 21.429 184.027Q21.385 183.817 21.299 183.643Q21.214 183.469 21.067 183.345Q20.920 183.222 20.732 183.222Q20.377 183.222 20.250 183.593Q20.124 183.964 20.124 184.405Q20.124 184.849 20.250 185.222Q20.377 185.594 20.732 185.594M24.300 185.427L22.564 185.427L22.564 185.147Q22.793 185.147 22.942 185.113Q23.090 185.078 23.090 184.938L23.090 183.089Q23.090 182.819 22.983 182.758Q22.875 182.696 22.564 182.696L22.564 182.416L23.593 182.341L23.593 183.048Q23.723 182.740 23.965 182.541Q24.208 182.341 24.526 182.341Q24.745 182.341 24.916 182.465Q25.087 182.590 25.087 182.802Q25.087 182.939 24.987 183.038Q24.888 183.137 24.755 183.137Q24.618 183.137 24.519 183.038Q24.420 182.939 24.420 182.802Q24.420 182.662 24.519 182.563Q24.229 182.563 24.029 182.759Q23.829 182.956 23.736 183.250Q23.644 183.544 23.644 183.824L23.644 184.938Q23.644 185.147 24.300 185.147L24.300 185.427M25.729 184.699Q25.729 184.367 25.953 184.140Q26.177 183.913 26.520 183.785Q26.864 183.656 27.236 183.604Q27.609 183.551 27.913 183.551L27.913 183.298Q27.913 183.093 27.805 182.913Q27.698 182.734 27.517 182.631Q27.336 182.529 27.127 182.529Q26.720 182.529 26.484 182.621Q26.573 182.658 26.619 182.742Q26.666 182.826 26.666 182.928Q26.666 183.024 26.619 183.103Q26.573 183.181 26.493 183.226Q26.413 183.270 26.324 183.270Q26.173 183.270 26.073 183.173Q25.972 183.075 25.972 182.928Q25.972 182.306 27.127 182.306Q27.339 182.306 27.588 182.370Q27.838 182.433 28.040 182.552Q28.241 182.672 28.368 182.857Q28.494 183.041 28.494 183.284L28.494 184.860Q28.494 184.976 28.556 185.072Q28.617 185.167 28.730 185.167Q28.839 185.167 28.904 185.073Q28.969 184.979 28.969 184.860L28.969 184.412L29.236 184.412L29.236 184.860Q29.236 185.130 29.009 185.295Q28.781 185.461 28.501 185.461Q28.293 185.461 28.156 185.307Q28.019 185.154 27.995 184.938Q27.848 185.205 27.566 185.350Q27.284 185.495 26.960 185.495Q26.683 185.495 26.399 185.420Q26.115 185.345 25.922 185.166Q25.729 184.986 25.729 184.699M26.344 184.699Q26.344 184.873 26.445 185.003Q26.546 185.133 26.701 185.203Q26.857 185.273 27.021 185.273Q27.240 185.273 27.448 185.176Q27.657 185.078 27.785 184.897Q27.913 184.716 27.913 184.490L27.913 183.762Q27.588 183.762 27.223 183.853Q26.857 183.944 26.601 184.156Q26.344 184.367 26.344 184.699M30.836 185.427L29.513 185.427L29.513 185.147Q30.073 185.147 30.453 184.747L31.167 183.950L30.254 182.901Q30.118 182.754 29.969 182.722Q29.820 182.689 29.554 182.689L29.554 182.409L31.054 182.409L31.054 182.689Q30.863 182.689 30.863 182.823Q30.863 182.853 30.894 182.901L31.488 183.585L31.929 183.089Q32.042 182.959 32.042 182.843Q32.042 182.781 32.004 182.735Q31.967 182.689 31.909 182.689L31.909 182.409L33.225 182.409L33.225 182.689Q32.664 182.689 32.285 183.089L31.663 183.790L32.657 184.938Q32.756 185.037 32.857 185.082Q32.958 185.126 33.069 185.136Q33.180 185.147 33.358 185.147L33.358 185.427L31.864 185.427L31.864 185.147Q31.929 185.147 31.989 185.113Q32.049 185.078 32.049 185.013Q32.049 184.966 32.018 184.938L31.341 184.152L30.808 184.747Q30.695 184.877 30.695 184.993Q30.695 185.058 30.736 185.102Q30.777 185.147 30.836 185.147\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-23.212-26.745v-17.518\"\u002F>\u003Cpath stroke=\"none\" d=\"m-23.212-46.263-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(3.533 -219.5)\">\u003Cpath d=\"M-21.308 185.400L-22.436 182.901Q-22.508 182.754-22.638 182.722Q-22.768 182.689-22.997 182.689L-22.997 182.409L-21.483 182.409L-21.483 182.689Q-21.835 182.689-21.835 182.836Q-21.835 182.881-21.824 182.901L-20.960 184.819L-20.180 183.089Q-20.146 183.021-20.146 182.942Q-20.146 182.829-20.230 182.759Q-20.314 182.689-20.433 182.689L-20.433 182.409L-19.237 182.409L-19.237 182.689Q-19.456 182.689-19.627 182.792Q-19.797 182.894-19.886 183.089L-20.922 185.400Q-20.970 185.495-21.076 185.495L-21.154 185.495Q-21.260 185.495-21.308 185.400\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -219.5)\">\u003Cpath d=\"M-19.068 184.699Q-19.068 184.367-18.845 184.140Q-18.621 183.913-18.277 183.785Q-17.934 183.656-17.561 183.604Q-17.189 183.551-16.884 183.551L-16.884 183.298Q-16.884 183.093-16.992 182.913Q-17.100 182.734-17.281 182.631Q-17.462 182.529-17.670 182.529Q-18.077 182.529-18.313 182.621Q-18.224 182.658-18.178 182.742Q-18.132 182.826-18.132 182.928Q-18.132 183.024-18.178 183.103Q-18.224 183.181-18.305 183.226Q-18.385 183.270-18.474 183.270Q-18.624 183.270-18.725 183.173Q-18.826 183.075-18.826 182.928Q-18.826 182.306-17.670 182.306Q-17.459 182.306-17.209 182.370Q-16.960 182.433-16.758 182.552Q-16.556 182.672-16.430 182.857Q-16.303 183.041-16.303 183.284L-16.303 184.860Q-16.303 184.976-16.242 185.072Q-16.180 185.167-16.067 185.167Q-15.958 185.167-15.893 185.073Q-15.828 184.979-15.828 184.860L-15.828 184.412L-15.562 184.412L-15.562 184.860Q-15.562 185.130-15.789 185.295Q-16.016 185.461-16.296 185.461Q-16.505 185.461-16.642 185.307Q-16.778 185.154-16.802 184.938Q-16.949 185.205-17.231 185.350Q-17.513 185.495-17.838 185.495Q-18.115 185.495-18.399 185.420Q-18.682 185.345-18.875 185.166Q-19.068 184.986-19.068 184.699M-18.453 184.699Q-18.453 184.873-18.352 185.003Q-18.252 185.133-18.096 185.203Q-17.941 185.273-17.776 185.273Q-17.558 185.273-17.349 185.176Q-17.141 185.078-17.013 184.897Q-16.884 184.716-16.884 184.490L-16.884 183.762Q-17.209 183.762-17.575 183.853Q-17.941 183.944-18.197 184.156Q-18.453 184.367-18.453 184.699M-13.477 185.427L-15.080 185.427L-15.080 185.147Q-14.854 185.147-14.705 185.113Q-14.557 185.078-14.557 184.938L-14.557 181.319Q-14.557 181.049-14.664 180.987Q-14.772 180.926-15.080 180.926L-15.080 180.645L-14.003 180.570L-14.003 184.938Q-14.003 185.075-13.853 185.111Q-13.702 185.147-13.477 185.147L-13.477 185.427M-10.670 185.427L-12.803 185.427L-12.803 185.147Q-12.082 185.147-12.082 184.938L-12.082 181.137Q-12.082 180.926-12.803 180.926L-12.803 180.645L-10.137 180.645Q-9.727 180.645-9.307 180.799Q-8.886 180.953-8.603 181.257Q-8.319 181.561-8.319 181.975Q-8.319 182.293-8.486 182.539Q-8.654 182.785-8.931 182.951Q-9.208 183.116-9.529 183.200Q-9.850 183.284-10.137 183.284L-11.392 183.284L-11.392 184.938Q-11.392 185.147-10.670 185.147L-10.670 185.427M-11.419 181.137L-11.419 183.034L-10.332 183.034Q-9.724 183.034-9.409 182.797Q-9.095 182.559-9.095 181.975Q-9.095 181.582-9.240 181.348Q-9.385 181.114-9.657 181.020Q-9.929 180.926-10.332 180.926L-11.053 180.926Q-11.241 180.926-11.330 180.960Q-11.419 180.994-11.419 181.137\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M8.286-59.266h139.218v244.693H10.286\"\u002F>\u003Cpath stroke=\"none\" d=\"m8.286 185.427 3.2 1.6-1.2-1.6 1.2-1.6\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(26.796 8.316)\">\u003Cpath d=\"M-21.216 185.427L-22.850 185.427L-22.850 185.147Q-22.621 185.147-22.472 185.113Q-22.323 185.078-22.323 184.938L-22.323 183.089Q-22.323 182.819-22.431 182.758Q-22.539 182.696-22.850 182.696L-22.850 182.416L-21.790 182.341L-21.790 182.990Q-21.619 182.682-21.315 182.511Q-21.011 182.341-20.666 182.341Q-20.160 182.341-19.876 182.564Q-19.592 182.788-19.592 183.284L-19.592 184.938Q-19.592 185.075-19.444 185.111Q-19.295 185.147-19.069 185.147L-19.069 185.427L-20.700 185.427L-20.700 185.147Q-20.471 185.147-20.322 185.113Q-20.173 185.078-20.173 184.938L-20.173 183.298Q-20.173 182.963-20.293 182.763Q-20.413 182.563-20.727 182.563Q-20.997 182.563-21.231 182.699Q-21.465 182.836-21.604 183.070Q-21.742 183.304-21.742 183.578L-21.742 184.938Q-21.742 185.075-21.592 185.111Q-21.441 185.147-21.216 185.147L-21.216 185.427M-18.523 183.892Q-18.523 183.571-18.398 183.282Q-18.273 182.993-18.047 182.770Q-17.822 182.546-17.526 182.426Q-17.231 182.306-16.913 182.306Q-16.585 182.306-16.323 182.406Q-16.062 182.505-15.886 182.687Q-15.710 182.870-15.616 183.128Q-15.522 183.386-15.522 183.718Q-15.522 183.810-15.604 183.831L-17.859 183.831L-17.859 183.892Q-17.859 184.480-17.576 184.863Q-17.292 185.246-16.725 185.246Q-16.403 185.246-16.135 185.053Q-15.867 184.860-15.778 184.545Q-15.771 184.504-15.696 184.490L-15.604 184.490Q-15.522 184.514-15.522 184.586Q-15.522 184.593-15.528 184.620Q-15.641 185.017-16.012 185.256Q-16.383 185.495-16.807 185.495Q-17.244 185.495-17.644 185.287Q-18.044 185.078-18.283 184.711Q-18.523 184.344-18.523 183.892M-17.853 183.622L-16.038 183.622Q-16.038 183.345-16.135 183.093Q-16.233 182.840-16.431 182.684Q-16.629 182.529-16.913 182.529Q-17.190 182.529-17.403 182.687Q-17.617 182.846-17.735 183.101Q-17.853 183.356-17.853 183.622M-13.546 185.400L-14.527 182.901Q-14.588 182.758-14.706 182.723Q-14.824 182.689-15.040 182.689L-15.040 182.409L-13.560 182.409L-13.560 182.689Q-13.939 182.689-13.939 182.850Q-13.939 182.860-13.925 182.901L-13.211 184.733L-12.538 183.028Q-12.568 182.956-12.568 182.928Q-12.568 182.901-12.596 182.901Q-12.657 182.754-12.775 182.722Q-12.893 182.689-13.105 182.689L-13.105 182.409L-11.707 182.409L-11.707 182.689Q-12.083 182.689-12.083 182.850Q-12.083 182.881-12.076 182.901L-11.321 184.839L-10.634 183.089Q-10.613 183.038-10.613 182.983Q-10.613 182.843-10.726 182.766Q-10.839 182.689-10.979 182.689L-10.979 182.409L-9.759 182.409L-9.759 182.689Q-9.964 182.689-10.119 182.795Q-10.275 182.901-10.347 183.089L-11.253 185.400Q-11.287 185.495-11.399 185.495L-11.468 185.495Q-11.577 185.495-11.615 185.400L-12.398 183.397L-13.184 185.400Q-13.218 185.495-13.331 185.495L-13.399 185.495Q-13.508 185.495-13.546 185.400M-7.018 185.427L-9.150 185.427L-9.150 185.147Q-8.429 185.147-8.429 184.938L-8.429 181.137Q-8.429 180.926-9.150 180.926L-9.150 180.645L-6.484 180.645Q-6.074 180.645-5.654 180.799Q-5.233 180.953-4.950 181.257Q-4.666 181.561-4.666 181.975Q-4.666 182.293-4.834 182.539Q-5.001 182.785-5.278 182.951Q-5.555 183.116-5.876 183.200Q-6.197 183.284-6.484 183.284L-7.739 183.284L-7.739 184.938Q-7.739 185.147-7.018 185.147L-7.018 185.427M-7.766 181.137L-7.766 183.034L-6.679 183.034Q-6.071 183.034-5.756 182.797Q-5.442 182.559-5.442 181.975Q-5.442 181.582-5.587 181.348Q-5.733 181.114-6.004 181.020Q-6.276 180.926-6.679 180.926L-7.400 180.926Q-7.588 180.926-7.677 180.960Q-7.766 180.994-7.766 181.137M-3.685 183.034Q-3.685 182.508-3.468 182.040Q-3.251 181.572-2.868 181.226Q-2.485 180.881-2.002 180.693Q-1.518 180.505-0.988 180.505Q-0.585 180.505-0.221 180.662Q0.143 180.820 0.427 181.114L0.851 180.532Q0.885 180.505 0.909 180.505L0.956 180.505Q0.987 180.505 1.011 180.529Q1.035 180.553 1.035 180.584L1.035 182.447Q1.035 182.470 1.009 182.496Q0.984 182.522 0.956 182.522L0.830 182.522Q0.768 182.522 0.755 182.447Q0.724 182.132 0.589 181.828Q0.454 181.524 0.239 181.290Q0.023 181.055-0.265 180.920Q-0.554 180.785-0.882 180.785Q-1.525 180.785-1.983 181.079Q-2.441 181.373-2.673 181.886Q-2.906 182.399-2.906 183.034Q-2.906 183.506-2.776 183.915Q-2.646 184.323-2.386 184.636Q-2.127 184.948-1.747 185.118Q-1.368 185.287-0.876 185.287Q-0.547 185.287-0.254 185.171Q0.040 185.054 0.275 184.839Q0.509 184.624 0.639 184.335Q0.768 184.046 0.768 183.718Q0.768 183.691 0.796 183.667Q0.823 183.643 0.844 183.643L0.956 183.643Q0.994 183.643 1.015 183.668Q1.035 183.694 1.035 183.732Q1.035 184.128 0.869 184.465Q0.704 184.802 0.416 185.049Q0.129 185.297-0.240 185.432Q-0.609 185.567-0.988 185.567Q-1.508 185.567-2 185.377Q-2.492 185.188-2.872 184.844Q-3.251 184.501-3.468 184.032Q-3.685 183.564-3.685 183.034\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(26.796 8.316)\">\u003Cpath d=\"M9.728 184.620L4.895 184.620Q4.827 184.610 4.781 184.564Q4.735 184.518 4.735 184.446Q4.735 184.381 4.781 184.335Q4.827 184.289 4.895 184.279L9.728 184.279Q9.797 184.289 9.843 184.335Q9.889 184.381 9.889 184.446Q9.889 184.518 9.843 184.564Q9.797 184.610 9.728 184.620M9.728 183.082L4.895 183.082Q4.827 183.072 4.781 183.026Q4.735 182.980 4.735 182.908Q4.735 182.764 4.895 182.740L9.728 182.740Q9.889 182.764 9.889 182.908Q9.889 182.980 9.843 183.026Q9.797 183.072 9.728 183.082\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(26.796 8.316)\">\u003Cpath d=\"M14.936 185.495Q14.557 185.495 14.266 185.287Q13.976 185.078 13.782 184.738Q13.589 184.398 13.495 184.015Q13.401 183.633 13.401 183.284Q13.401 182.942 13.497 182.554Q13.593 182.166 13.782 181.833Q13.972 181.500 14.264 181.290Q14.557 181.079 14.936 181.079Q15.421 181.079 15.772 181.428Q16.122 181.777 16.295 182.289Q16.467 182.802 16.467 183.284Q16.467 183.769 16.295 184.284Q16.122 184.798 15.772 185.147Q15.421 185.495 14.936 185.495M14.936 185.007Q15.199 185.007 15.389 184.817Q15.579 184.627 15.690 184.340Q15.801 184.053 15.854 183.750Q15.907 183.448 15.907 183.202Q15.907 182.983 15.852 182.698Q15.797 182.412 15.683 182.158Q15.568 181.903 15.382 181.737Q15.196 181.572 14.936 181.572Q14.608 181.572 14.387 181.845Q14.167 182.118 14.064 182.498Q13.962 182.877 13.962 183.202Q13.962 183.551 14.061 183.971Q14.160 184.391 14.377 184.699Q14.594 185.007 14.936 185.007M17.021 185.219L17.021 185.140Q17.055 184.959 17.236 184.938L17.592 184.938L18.405 183.872L17.643 182.901L17.277 182.901Q17.106 182.884 17.062 182.689L17.062 182.614Q17.106 182.429 17.277 182.409L18.292 182.409Q18.467 182.429 18.511 182.614L18.511 182.689Q18.467 182.881 18.292 182.901L18.197 182.901L18.631 183.475L19.048 182.901L18.945 182.901Q18.771 182.881 18.726 182.689L18.726 182.614Q18.771 182.429 18.945 182.409L19.960 182.409Q20.131 182.426 20.176 182.614L20.176 182.689Q20.131 182.881 19.960 182.901L19.601 182.901L18.860 183.872L19.701 184.938L20.056 184.938Q20.230 184.959 20.275 185.140L20.275 185.219Q20.241 185.406 20.056 185.427L19.048 185.427Q18.867 185.406 18.832 185.219L18.832 185.140Q18.867 184.959 19.048 184.938L19.161 184.938L18.631 184.190L18.118 184.938L18.245 184.938Q18.426 184.959 18.460 185.140L18.460 185.219Q18.426 185.406 18.245 185.427L17.236 185.427Q17.065 185.410 17.021 185.219M20.883 185.219L20.883 185.154Q20.911 185.007 20.999 184.966L22.127 184.032Q22.418 183.790 22.577 183.656Q22.736 183.523 22.907 183.330Q23.078 183.137 23.184 182.918Q23.289 182.699 23.289 182.467Q23.289 182.183 23.136 181.978Q22.982 181.773 22.737 181.672Q22.493 181.572 22.213 181.572Q21.987 181.572 21.787 181.679Q21.587 181.787 21.498 181.975Q21.587 182.091 21.587 182.221Q21.587 182.361 21.483 182.469Q21.379 182.576 21.239 182.576Q21.085 182.576 20.984 182.467Q20.883 182.358 20.883 182.207Q20.883 181.951 21.001 181.739Q21.119 181.527 21.328 181.377Q21.536 181.226 21.770 181.153Q22.004 181.079 22.261 181.079Q22.681 181.079 23.045 181.245Q23.409 181.411 23.630 181.727Q23.850 182.043 23.850 182.467Q23.850 182.768 23.734 183.033Q23.618 183.298 23.421 183.525Q23.225 183.752 22.955 183.981Q22.684 184.210 22.500 184.364L21.792 184.938L23.289 184.938L23.289 184.812Q23.334 184.627 23.508 184.607L23.631 184.607Q23.806 184.624 23.850 184.812L23.850 185.219Q23.806 185.406 23.631 185.427L21.099 185.427Q20.928 185.410 20.883 185.219M26.082 185.495Q25.703 185.495 25.412 185.287Q25.122 185.078 24.928 184.738Q24.735 184.398 24.641 184.015Q24.547 183.633 24.547 183.284Q24.547 182.942 24.643 182.554Q24.739 182.166 24.928 181.833Q25.118 181.500 25.410 181.290Q25.703 181.079 26.082 181.079Q26.567 181.079 26.918 181.428Q27.268 181.777 27.441 182.289Q27.613 182.802 27.613 183.284Q27.613 183.769 27.441 184.284Q27.268 184.798 26.918 185.147Q26.567 185.495 26.082 185.495M26.082 185.007Q26.345 185.007 26.535 184.817Q26.725 184.627 26.836 184.340Q26.947 184.053 27 183.750Q27.053 183.448 27.053 183.202Q27.053 182.983 26.998 182.698Q26.943 182.412 26.829 182.158Q26.714 181.903 26.528 181.737Q26.342 181.572 26.082 181.572Q25.754 181.572 25.533 181.845Q25.313 182.118 25.210 182.498Q25.108 182.877 25.108 183.202Q25.108 183.551 25.207 183.971Q25.306 184.391 25.523 184.699Q25.740 185.007 26.082 185.007\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">SEQ frozen during cycle 4, the addq %rdi,%rax of the first iteration. Fetch at PC 0x1e yields icode 6:0; Decode reads valA=3 (%rdi), valB=0 (%rax); the ALU adds to valE=3 and sets ZF=0; Write-back stores 3 into %rax; newPC=0x20.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:704.081px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 528.061 173.437\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-73.29 -25.03)\">\u003Cpath d=\"M11.978-39.634Q11.978-40.114 12.222-40.528Q12.466-40.942 12.882-41.180Q13.298-41.419 13.778-41.419Q14.333-41.419 14.712-41.309Q15.091-41.200 15.091-40.794Q15.091-40.626 14.978-40.503Q14.864-40.380 14.692-40.380Q14.521-40.380 14.401-40.495Q14.282-40.610 14.282-40.778L14.282-40.837Q14.122-40.860 13.786-40.860Q13.458-40.860 13.190-40.690Q12.923-40.520 12.771-40.237Q12.618-39.954 12.618-39.634Q12.618-39.313 12.790-39.032Q12.962-38.751 13.247-38.589Q13.532-38.427 13.860-38.427Q14.173-38.427 14.300-38.530Q14.427-38.634 14.544-38.823Q14.661-39.012 14.778-39.028L14.946-39.028Q15.052-39.016 15.116-38.948Q15.181-38.880 15.181-38.778Q15.181-38.731 15.161-38.692Q15.052-38.399 14.849-38.219Q14.646-38.040 14.370-37.954Q14.095-37.868 13.778-37.868Q13.294-37.868 12.878-38.106Q12.462-38.344 12.220-38.747Q11.978-39.149 11.978-39.634M16.071-39.020Q16.071-39.466 16.485-39.723Q16.899-39.981 17.440-40.081Q17.982-40.180 18.489-40.188Q18.489-40.403 18.355-40.555Q18.220-40.708 18.013-40.784Q17.806-40.860 17.595-40.860Q17.251-40.860 17.091-40.837L17.091-40.778Q17.091-40.610 16.972-40.495Q16.853-40.380 16.689-40.380Q16.513-40.380 16.398-40.503Q16.282-40.626 16.282-40.794Q16.282-41.200 16.663-41.309Q17.044-41.419 17.603-41.419Q17.872-41.419 18.140-41.341Q18.407-41.262 18.632-41.112Q18.857-40.962 18.993-40.741Q19.130-40.520 19.130-40.243L19.130-38.524Q19.130-38.466 19.657-38.466Q19.853-38.446 19.903-38.235L19.903-38.145Q19.853-37.930 19.657-37.907L19.513-37.907Q19.169-37.907 18.940-37.954Q18.712-38.001 18.567-38.188Q18.107-37.868 17.399-37.868Q17.064-37.868 16.759-38.009Q16.454-38.149 16.263-38.411Q16.071-38.673 16.071-39.020M16.712-39.012Q16.712-38.739 16.954-38.583Q17.196-38.427 17.482-38.427Q17.700-38.427 17.933-38.485Q18.165-38.544 18.327-38.682Q18.489-38.821 18.489-39.044L18.489-39.634Q18.208-39.634 17.792-39.577Q17.376-39.520 17.044-39.382Q16.712-39.243 16.712-39.012M20.360-38.145L20.360-38.235Q20.411-38.442 20.607-38.466L21.712-38.466L21.712-42.235L20.607-42.235Q20.411-42.259 20.360-42.473L20.360-42.563Q20.411-42.770 20.607-42.794L22.103-42.794Q22.294-42.770 22.353-42.563L22.353-38.466L23.454-38.466Q23.653-38.442 23.704-38.235L23.704-38.145Q23.653-37.930 23.454-37.907L20.607-37.907Q20.411-37.930 20.360-38.145M24.607-38.145L24.607-38.235Q24.657-38.442 24.853-38.466L25.958-38.466L25.958-42.235L24.853-42.235Q24.657-42.259 24.607-42.473L24.607-42.563Q24.657-42.770 24.853-42.794L26.349-42.794Q26.540-42.770 26.599-42.563L26.599-38.466L27.700-38.466Q27.899-38.442 27.950-38.235L27.950-38.145Q27.899-37.930 27.700-37.907L24.853-37.907Q24.657-37.930 24.607-38.145\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-73.29 -25.03)\">\u003Cpath d=\"M33.255-38.106L33.255-39.020Q33.282-39.227 33.493-39.251L33.661-39.251Q33.825-39.227 33.884-39.067Q34.087-38.427 34.814-38.427Q35.021-38.427 35.249-38.462Q35.478-38.497 35.646-38.612Q35.814-38.727 35.814-38.930Q35.814-39.141 35.591-39.255Q35.368-39.368 35.095-39.411L34.396-39.524Q33.255-39.735 33.255-40.458Q33.255-40.747 33.399-40.936Q33.544-41.126 33.784-41.233Q34.024-41.341 34.280-41.380Q34.536-41.419 34.814-41.419Q35.064-41.419 35.257-41.389Q35.450-41.360 35.614-41.282Q35.692-41.399 35.821-41.419L35.899-41.419Q35.997-41.407 36.060-41.344Q36.122-41.282 36.134-41.188L36.134-40.481Q36.122-40.387 36.060-40.321Q35.997-40.255 35.899-40.243L35.731-40.243Q35.638-40.255 35.571-40.321Q35.505-40.387 35.493-40.481Q35.493-40.860 34.798-40.860Q34.450-40.860 34.132-40.778Q33.814-40.696 33.814-40.450Q33.814-40.184 34.485-40.075L35.189-39.954Q35.673-39.872 36.023-39.624Q36.372-39.376 36.372-38.930Q36.372-38.540 36.136-38.298Q35.899-38.055 35.550-37.962Q35.200-37.868 34.814-37.868Q34.235-37.868 33.837-38.122Q33.767-37.997 33.718-37.940Q33.669-37.884 33.564-37.868L33.493-37.868Q33.278-37.891 33.255-38.106M37.657-38.762L37.657-40.794L37.235-40.794Q37.028-40.817 36.985-41.036L36.985-41.122Q37.032-41.333 37.235-41.356L38.052-41.356Q38.247-41.333 38.298-41.122L38.298-38.794Q38.298-38.559 38.468-38.493Q38.638-38.427 38.923-38.427Q39.130-38.427 39.325-38.503Q39.521-38.579 39.646-38.729Q39.771-38.880 39.771-39.091L39.771-40.794L39.349-40.794Q39.138-40.817 39.099-41.036L39.099-41.122Q39.138-41.333 39.349-41.356L40.161-41.356Q40.360-41.333 40.411-41.122L40.411-38.466L40.837-38.466Q41.044-38.442 41.083-38.235L41.083-38.145Q41.044-37.930 40.837-37.907L40.021-37.907Q39.821-37.930 39.771-38.130Q39.368-37.868 38.860-37.868Q38.626-37.868 38.411-37.909Q38.196-37.950 38.030-38.052Q37.864-38.153 37.761-38.331Q37.657-38.509 37.657-38.762M41.106-38.145L41.106-38.235Q41.157-38.446 41.353-38.466L41.552-38.466L41.552-40.794L41.353-40.794Q41.146-40.817 41.106-41.036L41.106-41.122Q41.157-41.337 41.353-41.356L41.833-41.356Q42.024-41.333 42.083-41.122Q42.403-41.395 42.817-41.395Q43.009-41.395 43.177-41.286Q43.345-41.177 43.419-41.005Q43.595-41.196 43.817-41.296Q44.040-41.395 44.282-41.395Q44.700-41.395 44.855-41.053Q45.009-40.712 45.009-40.243L45.009-38.466L45.208-38.466Q45.419-38.442 45.458-38.235L45.458-38.145Q45.407-37.930 45.208-37.907L44.392-37.907Q44.196-37.930 44.146-38.145L44.146-38.235Q44.196-38.442 44.392-38.466L44.481-38.466L44.481-40.212Q44.481-40.837 44.231-40.837Q43.899-40.837 43.722-40.526Q43.544-40.216 43.544-39.852L43.544-38.466L43.747-38.466Q43.954-38.442 43.993-38.235L43.993-38.145Q43.942-37.930 43.747-37.907L42.931-37.907Q42.731-37.930 42.681-38.145L42.681-38.235Q42.731-38.442 42.931-38.466L43.017-38.466L43.017-40.212Q43.017-40.837 42.771-40.837Q42.439-40.837 42.261-40.524Q42.083-40.212 42.083-39.852L42.083-38.466L42.282-38.466Q42.489-38.442 42.528-38.235L42.528-38.145Q42.478-37.927 42.282-37.907L41.353-37.907Q41.146-37.930 41.106-38.145M45.759-38.954Q45.759-39.130 45.876-39.251Q45.993-39.372 46.169-39.372Q46.251-39.372 46.327-39.341Q46.403-39.309 46.454-39.259Q46.505-39.208 46.536-39.128Q46.567-39.048 46.567-38.969Q46.567-38.837 46.485-38.723Q46.755-38.387 47.544-38.387Q47.970-38.387 48.312-38.653Q48.653-38.919 48.653-39.333Q48.653-39.606 48.487-39.825Q48.321-40.044 48.062-40.155Q47.802-40.266 47.528-40.266L47.064-40.266Q46.853-40.290 46.821-40.509L46.821-40.594Q46.853-40.798 47.064-40.829L47.591-40.868Q47.806-40.868 47.997-40.991Q48.189-41.114 48.302-41.317Q48.415-41.520 48.415-41.731Q48.415-42.005 48.132-42.159Q47.849-42.313 47.544-42.313Q46.981-42.313 46.743-42.122Q46.806-42.009 46.806-41.899Q46.806-41.727 46.692-41.614Q46.579-41.501 46.407-41.501Q46.231-41.501 46.116-41.624Q46.001-41.747 46.001-41.915Q46.001-42.442 46.474-42.659Q46.946-42.876 47.544-42.876Q47.884-42.876 48.239-42.745Q48.595-42.614 48.825-42.356Q49.056-42.098 49.056-41.731Q49.056-41.387 48.888-41.083Q48.720-40.778 48.423-40.579Q48.794-40.399 49.044-40.063Q49.294-39.727 49.294-39.333Q49.294-38.887 49.040-38.546Q48.786-38.204 48.384-38.016Q47.981-37.829 47.544-37.829Q47.259-37.829 46.954-37.884Q46.649-37.938 46.374-38.065Q46.099-38.192 45.929-38.415Q45.759-38.637 45.759-38.954\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-73.29 -25.03)\">\u003Cpath d=\"M57.953-35.915Q57.340-36.372 56.938-37.007Q56.535-37.641 56.340-38.387Q56.145-39.134 56.145-39.907Q56.145-40.680 56.340-41.427Q56.535-42.173 56.938-42.807Q57.340-43.442 57.953-43.899Q57.965-43.903 57.973-43.905Q57.981-43.907 57.992-43.907L58.070-43.907Q58.109-43.907 58.135-43.880Q58.160-43.852 58.160-43.809Q58.160-43.759 58.129-43.739Q57.621-43.286 57.299-42.663Q56.977-42.040 56.836-41.344Q56.695-40.649 56.695-39.907Q56.695-39.173 56.834-38.473Q56.973-37.774 57.297-37.149Q57.621-36.524 58.129-36.075Q58.160-36.055 58.160-36.005Q58.160-35.962 58.135-35.934Q58.109-35.907 58.070-35.907L57.992-35.907Q57.984-35.911 57.975-35.913Q57.965-35.915 57.953-35.915M61.375-37.907L58.992-37.907L58.992-38.204Q59.316-38.204 59.559-38.251Q59.801-38.298 59.801-38.466L59.801-42.809Q59.801-42.981 59.559-43.028Q59.316-43.075 58.992-43.075L58.992-43.372L61.938-43.372Q62.281-43.372 62.637-43.272Q62.992-43.173 63.287-42.981Q63.582-42.790 63.764-42.505Q63.945-42.219 63.945-41.860Q63.945-41.387 63.635-41.052Q63.324-40.716 62.859-40.544Q62.395-40.372 61.938-40.372L60.570-40.372L60.570-38.466Q60.570-38.298 60.813-38.251Q61.055-38.204 61.375-38.204L61.375-37.907M60.543-42.809L60.543-40.641L61.719-40.641Q62.406-40.641 62.744-40.917Q63.082-41.192 63.082-41.860Q63.082-42.524 62.744-42.800Q62.406-43.075 61.719-43.075L60.945-43.075Q60.727-43.075 60.635-43.032Q60.543-42.989 60.543-42.809M64.891-40.641Q64.891-41.235 65.123-41.766Q65.356-42.298 65.772-42.698Q66.188-43.098 66.721-43.319Q67.254-43.540 67.859-43.540Q68.297-43.540 68.695-43.358Q69.094-43.177 69.402-42.844L69.875-43.509Q69.906-43.540 69.938-43.540L69.984-43.540Q70.012-43.540 70.043-43.509Q70.074-43.477 70.074-43.450L70.074-41.313Q70.074-41.290 70.043-41.259Q70.012-41.227 69.984-41.227L69.867-41.227Q69.840-41.227 69.809-41.259Q69.777-41.290 69.777-41.313Q69.777-41.579 69.635-41.932Q69.492-42.286 69.313-42.524Q69.059-42.856 68.709-43.050Q68.359-43.243 67.953-43.243Q67.449-43.243 66.996-43.024Q66.543-42.805 66.250-42.411Q65.754-41.743 65.754-40.641Q65.754-40.110 65.891-39.643Q66.027-39.177 66.303-38.811Q66.578-38.446 66.998-38.241Q67.418-38.036 67.961-38.036Q68.449-38.036 68.873-38.280Q69.297-38.524 69.545-38.944Q69.793-39.364 69.793-39.860Q69.793-39.895 69.822-39.921Q69.852-39.946 69.883-39.946L69.984-39.946Q70.027-39.946 70.051-39.917Q70.074-39.887 70.074-39.844Q70.074-39.407 69.898-39.018Q69.723-38.630 69.412-38.346Q69.102-38.063 68.691-37.901Q68.281-37.739 67.859-37.739Q67.270-37.739 66.729-37.960Q66.188-38.180 65.772-38.585Q65.356-38.989 65.123-39.518Q64.891-40.048 64.891-40.641\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-73.29 -25.03)\">\u003Cpath d=\"M79.356-38.884L74.043-38.884Q73.965-38.891 73.916-38.940Q73.868-38.989 73.868-39.067Q73.868-39.137 73.915-39.188Q73.961-39.239 74.043-39.251L79.356-39.251Q79.430-39.239 79.477-39.188Q79.524-39.137 79.524-39.067Q79.524-38.989 79.475-38.940Q79.426-38.891 79.356-38.884M79.356-40.571L74.043-40.571Q73.965-40.579 73.916-40.628Q73.868-40.677 73.868-40.755Q73.868-40.825 73.915-40.876Q73.961-40.927 74.043-40.938L79.356-40.938Q79.430-40.927 79.477-40.876Q79.524-40.825 79.524-40.755Q79.524-40.677 79.475-40.628Q79.426-40.579 79.356-40.571\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-73.29 -25.03)\">\u003Cpath d=\"M84.960-37.829Q84.526-37.829 84.194-38.067Q83.862-38.305 83.642-38.694Q83.421-39.083 83.314-39.520Q83.206-39.958 83.206-40.356Q83.206-40.747 83.316-41.190Q83.425-41.634 83.642-42.014Q83.859-42.395 84.193-42.636Q84.526-42.876 84.960-42.876Q85.515-42.876 85.915-42.477Q86.316-42.079 86.513-41.493Q86.710-40.907 86.710-40.356Q86.710-39.802 86.513-39.214Q86.316-38.626 85.915-38.227Q85.515-37.829 84.960-37.829M84.960-38.387Q85.261-38.387 85.478-38.604Q85.694-38.821 85.821-39.149Q85.948-39.477 86.009-39.823Q86.069-40.169 86.069-40.450Q86.069-40.700 86.007-41.026Q85.944-41.352 85.814-41.643Q85.683-41.934 85.470-42.124Q85.257-42.313 84.960-42.313Q84.585-42.313 84.333-42.001Q84.081-41.688 83.964-41.255Q83.847-40.821 83.847-40.450Q83.847-40.052 83.960-39.571Q84.073-39.091 84.321-38.739Q84.569-38.387 84.960-38.387M87.343-38.145L87.343-38.235Q87.382-38.442 87.589-38.466L87.995-38.466L88.925-39.684L88.054-40.794L87.636-40.794Q87.441-40.813 87.390-41.036L87.390-41.122Q87.441-41.333 87.636-41.356L88.796-41.356Q88.995-41.333 89.046-41.122L89.046-41.036Q88.995-40.817 88.796-40.794L88.687-40.794L89.183-40.137L89.659-40.794L89.542-40.794Q89.343-40.817 89.292-41.036L89.292-41.122Q89.343-41.333 89.542-41.356L90.702-41.356Q90.898-41.337 90.948-41.122L90.948-41.036Q90.898-40.817 90.702-40.794L90.292-40.794L89.444-39.684L90.405-38.466L90.812-38.466Q91.011-38.442 91.062-38.235L91.062-38.145Q91.023-37.930 90.812-37.907L89.659-37.907Q89.452-37.930 89.413-38.145L89.413-38.235Q89.452-38.442 89.659-38.466L89.788-38.466L89.183-39.321L88.597-38.466L88.741-38.466Q88.948-38.442 88.987-38.235L88.987-38.145Q88.948-37.930 88.741-37.907L87.589-37.907Q87.394-37.927 87.343-38.145M93.452-37.829Q93.019-37.829 92.687-38.067Q92.355-38.305 92.134-38.694Q91.913-39.083 91.806-39.520Q91.698-39.958 91.698-40.356Q91.698-40.747 91.808-41.190Q91.917-41.634 92.134-42.014Q92.351-42.395 92.685-42.636Q93.019-42.876 93.452-42.876Q94.007-42.876 94.407-42.477Q94.808-42.079 95.005-41.493Q95.202-40.907 95.202-40.356Q95.202-39.802 95.005-39.214Q94.808-38.626 94.407-38.227Q94.007-37.829 93.452-37.829M93.452-38.387Q93.753-38.387 93.970-38.604Q94.187-38.821 94.314-39.149Q94.441-39.477 94.501-39.823Q94.562-40.169 94.562-40.450Q94.562-40.700 94.499-41.026Q94.437-41.352 94.306-41.643Q94.175-41.934 93.962-42.124Q93.749-42.313 93.452-42.313Q93.077-42.313 92.825-42.001Q92.573-41.688 92.456-41.255Q92.339-40.821 92.339-40.450Q92.339-40.052 92.452-39.571Q92.566-39.091 92.814-38.739Q93.062-38.387 93.452-38.387M97.698-37.829Q97.265-37.829 96.933-38.067Q96.601-38.305 96.380-38.694Q96.159-39.083 96.052-39.520Q95.944-39.958 95.944-40.356Q95.944-40.747 96.054-41.190Q96.163-41.634 96.380-42.014Q96.597-42.395 96.931-42.636Q97.265-42.876 97.698-42.876Q98.253-42.876 98.653-42.477Q99.054-42.079 99.251-41.493Q99.448-40.907 99.448-40.356Q99.448-39.802 99.251-39.214Q99.054-38.626 98.653-38.227Q98.253-37.829 97.698-37.829M97.698-38.387Q97.999-38.387 98.216-38.604Q98.433-38.821 98.560-39.149Q98.687-39.477 98.747-39.823Q98.808-40.169 98.808-40.450Q98.808-40.700 98.745-41.026Q98.683-41.352 98.552-41.643Q98.421-41.934 98.208-42.124Q97.995-42.313 97.698-42.313Q97.323-42.313 97.071-42.001Q96.819-41.688 96.702-41.255Q96.585-40.821 96.585-40.450Q96.585-40.052 96.698-39.571Q96.812-39.091 97.060-38.739Q97.308-38.387 97.698-38.387M100.230-39.020Q100.230-39.466 100.644-39.723Q101.058-39.981 101.599-40.081Q102.140-40.180 102.648-40.188Q102.648-40.403 102.513-40.555Q102.378-40.708 102.171-40.784Q101.964-40.860 101.753-40.860Q101.409-40.860 101.249-40.837L101.249-40.778Q101.249-40.610 101.130-40.495Q101.011-40.380 100.847-40.380Q100.671-40.380 100.556-40.503Q100.441-40.626 100.441-40.794Q100.441-41.200 100.821-41.309Q101.202-41.419 101.761-41.419Q102.030-41.419 102.298-41.341Q102.566-41.262 102.790-41.112Q103.015-40.962 103.151-40.741Q103.288-40.520 103.288-40.243L103.288-38.524Q103.288-38.466 103.816-38.466Q104.011-38.446 104.062-38.235L104.062-38.145Q104.011-37.930 103.816-37.907L103.671-37.907Q103.327-37.907 103.099-37.954Q102.870-38.001 102.726-38.188Q102.265-37.868 101.558-37.868Q101.222-37.868 100.917-38.009Q100.612-38.149 100.421-38.411Q100.230-38.673 100.230-39.020M100.870-39.012Q100.870-38.739 101.112-38.583Q101.355-38.427 101.640-38.427Q101.859-38.427 102.091-38.485Q102.323-38.544 102.485-38.682Q102.648-38.821 102.648-39.044L102.648-39.634Q102.366-39.634 101.950-39.577Q101.534-39.520 101.202-39.382Q100.870-39.243 100.870-39.012\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-73.29 -25.03)\">\u003Cpath d=\"M104.731-35.907L104.649-35.907Q104.613-35.907 104.588-35.936Q104.563-35.966 104.563-36.005Q104.563-36.055 104.594-36.075Q104.981-36.411 105.264-36.860Q105.547-37.309 105.713-37.809Q105.879-38.309 105.953-38.827Q106.028-39.344 106.028-39.907Q106.028-40.477 105.953-40.993Q105.879-41.509 105.713-42.005Q105.547-42.501 105.268-42.948Q104.988-43.395 104.594-43.739Q104.563-43.759 104.563-43.809Q104.563-43.848 104.588-43.878Q104.613-43.907 104.649-43.907L104.731-43.907Q104.742-43.907 104.752-43.905Q104.762-43.903 104.770-43.899Q105.383-43.442 105.785-42.807Q106.188-42.173 106.383-41.427Q106.578-40.680 106.578-39.907Q106.578-39.134 106.383-38.387Q106.188-37.641 105.785-37.007Q105.383-36.372 104.770-35.915Q104.758-35.915 104.750-35.913Q104.742-35.911 104.731-35.907\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-50.71h236.157\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-28.175 2.43)\">\u003Cpath d=\"M14.112-37.907L11.798-37.907L11.798-38.187Q12.520-38.187 12.520-38.396L12.520-42.197Q12.520-42.408 11.798-42.408L11.798-42.689L15.982-42.689L16.194-41.052L15.927-41.052Q15.849-41.663 15.697-41.942Q15.544-42.220 15.240-42.314Q14.936-42.408 14.311-42.408L13.576-42.408Q13.388-42.408 13.299-42.374Q13.210-42.340 13.210-42.197L13.210-40.440L13.764-40.440Q14.133-40.440 14.317-40.494Q14.502-40.549 14.581-40.722Q14.659-40.894 14.659-41.260L14.926-41.260L14.926-39.343L14.659-39.343Q14.659-39.708 14.581-39.881Q14.502-40.053 14.317-40.106Q14.133-40.159 13.764-40.159L13.210-40.159L13.210-38.396Q13.210-38.187 14.112-38.187\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-28.175 2.43)\">\u003Cpath d=\"M16.206-39.442Q16.206-39.763 16.331-40.052Q16.456-40.341 16.682-40.564Q16.907-40.788 17.203-40.908Q17.498-41.028 17.816-41.028Q18.144-41.028 18.406-40.928Q18.667-40.829 18.843-40.647Q19.019-40.464 19.113-40.206Q19.207-39.948 19.207-39.616Q19.207-39.524 19.125-39.503L16.870-39.503L16.870-39.442Q16.870-38.854 17.153-38.471Q17.437-38.088 18.004-38.088Q18.326-38.088 18.594-38.281Q18.862-38.474 18.951-38.789Q18.958-38.830 19.033-38.844L19.125-38.844Q19.207-38.820 19.207-38.748Q19.207-38.741 19.201-38.714Q19.088-38.317 18.717-38.078Q18.346-37.839 17.922-37.839Q17.485-37.839 17.085-38.047Q16.685-38.256 16.446-38.623Q16.206-38.990 16.206-39.442M16.876-39.712L18.691-39.712Q18.691-39.989 18.594-40.241Q18.496-40.494 18.298-40.650Q18.100-40.805 17.816-40.805Q17.539-40.805 17.326-40.647Q17.112-40.488 16.994-40.233Q16.876-39.978 16.876-39.712M20.322-38.748L20.322-40.645L19.683-40.645L19.683-40.867Q20-40.867 20.217-41.077Q20.434-41.287 20.535-41.597Q20.636-41.906 20.636-42.214L20.903-42.214L20.903-40.925L21.979-40.925L21.979-40.645L20.903-40.645L20.903-38.761Q20.903-38.485 21.007-38.286Q21.111-38.088 21.371-38.088Q21.528-38.088 21.634-38.192Q21.740-38.297 21.790-38.450Q21.839-38.604 21.839-38.761L21.839-39.175L22.106-39.175L22.106-38.748Q22.106-38.522 22.007-38.312Q21.908-38.102 21.723-37.970Q21.538-37.839 21.309-37.839Q20.872-37.839 20.597-38.076Q20.322-38.314 20.322-38.748M22.916-39.418Q22.916-39.746 23.051-40.047Q23.186-40.347 23.422-40.568Q23.658-40.788 23.962-40.908Q24.266-41.028 24.591-41.028Q25.097-41.028 25.445-40.925Q25.794-40.823 25.794-40.447Q25.794-40.300 25.696-40.199Q25.599-40.098 25.452-40.098Q25.298-40.098 25.199-40.197Q25.100-40.296 25.100-40.447Q25.100-40.635 25.240-40.727Q25.038-40.778 24.598-40.778Q24.242-40.778 24.013-40.582Q23.784-40.385 23.683-40.076Q23.582-39.766 23.582-39.418Q23.582-39.069 23.709-38.763Q23.835-38.457 24.090-38.273Q24.345-38.088 24.700-38.088Q24.922-38.088 25.107-38.172Q25.291-38.256 25.426-38.411Q25.561-38.567 25.620-38.775Q25.633-38.830 25.688-38.830L25.801-38.830Q25.831-38.830 25.854-38.806Q25.876-38.782 25.876-38.748L25.876-38.727Q25.790-38.440 25.602-38.242Q25.414-38.044 25.150-37.941Q24.885-37.839 24.591-37.839Q24.160-37.839 23.772-38.045Q23.384-38.252 23.150-38.615Q22.916-38.977 22.916-39.418\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-28.175 2.43)\">\u003Cpath d=\"M27.950-37.907L26.316-37.907L26.316-38.187Q26.545-38.187 26.694-38.221Q26.843-38.256 26.843-38.396L26.843-42.015Q26.843-42.285 26.735-42.347Q26.627-42.408 26.316-42.408L26.316-42.689L27.396-42.764L27.396-40.378Q27.502-40.563 27.680-40.705Q27.858-40.846 28.066-40.920Q28.275-40.993 28.500-40.993Q29.006-40.993 29.290-40.770Q29.574-40.546 29.574-40.050L29.574-38.396Q29.574-38.259 29.722-38.223Q29.871-38.187 30.097-38.187L30.097-37.907L28.466-37.907L28.466-38.187Q28.695-38.187 28.844-38.221Q28.993-38.256 28.993-38.396L28.993-40.036Q28.993-40.371 28.873-40.571Q28.753-40.771 28.439-40.771Q28.169-40.771 27.935-40.635Q27.701-40.498 27.562-40.264Q27.424-40.030 27.424-39.756L27.424-38.396Q27.424-38.259 27.574-38.223Q27.725-38.187 27.950-38.187\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M13.517-37.907L11.739-37.907L11.739-38.204Q12.013-38.204 12.181-38.251Q12.349-38.298 12.349-38.466L12.349-40.602Q12.349-40.817 12.292-40.913Q12.235-41.009 12.122-41.030Q12.009-41.052 11.763-41.052L11.763-41.348L12.962-41.434L12.962-38.466Q12.962-38.298 13.108-38.251Q13.255-38.204 13.517-38.204L13.517-37.907M12.075-42.829Q12.075-43.020 12.210-43.151Q12.345-43.282 12.540-43.282Q12.661-43.282 12.765-43.219Q12.868-43.157 12.931-43.053Q12.993-42.950 12.993-42.829Q12.993-42.634 12.862-42.499Q12.732-42.364 12.540-42.364Q12.341-42.364 12.208-42.497Q12.075-42.630 12.075-42.829M14.060-39.634Q14.060-40.130 14.310-40.555Q14.560-40.981 14.980-41.227Q15.399-41.473 15.899-41.473Q16.439-41.473 16.829-41.348Q17.220-41.223 17.220-40.809Q17.220-40.704 17.169-40.612Q17.118-40.520 17.026-40.469Q16.935-40.419 16.825-40.419Q16.720-40.419 16.628-40.469Q16.536-40.520 16.485-40.612Q16.435-40.704 16.435-40.809Q16.435-41.032 16.603-41.137Q16.380-41.196 15.907-41.196Q15.610-41.196 15.396-41.057Q15.181-40.919 15.050-40.688Q14.919-40.458 14.860-40.188Q14.802-39.919 14.802-39.634Q14.802-39.239 14.935-38.889Q15.067-38.540 15.339-38.323Q15.610-38.106 16.009-38.106Q16.384-38.106 16.659-38.323Q16.935-38.540 17.036-38.899Q17.052-38.962 17.114-38.962L17.220-38.962Q17.255-38.962 17.280-38.934Q17.306-38.907 17.306-38.868L17.306-38.844Q17.173-38.364 16.788-38.096Q16.403-37.829 15.899-37.829Q15.536-37.829 15.202-37.966Q14.868-38.102 14.608-38.352Q14.349-38.602 14.204-38.938Q14.060-39.274 14.060-39.634M17.794-39.602Q17.794-40.106 18.050-40.538Q18.306-40.969 18.741-41.221Q19.177-41.473 19.677-41.473Q20.064-41.473 20.405-41.329Q20.747-41.184 21.009-40.923Q21.271-40.661 21.413-40.325Q21.556-39.989 21.556-39.602Q21.556-39.110 21.292-38.700Q21.028-38.290 20.599-38.059Q20.169-37.829 19.677-37.829Q19.185-37.829 18.751-38.061Q18.317-38.294 18.056-38.702Q17.794-39.110 17.794-39.602M19.677-38.106Q20.134-38.106 20.386-38.329Q20.638-38.552 20.726-38.903Q20.814-39.255 20.814-39.700Q20.814-40.130 20.720-40.468Q20.626-40.805 20.372-41.012Q20.118-41.219 19.677-41.219Q19.028-41.219 18.784-40.803Q18.540-40.387 18.540-39.700Q18.540-39.255 18.628-38.903Q18.716-38.552 18.968-38.329Q19.220-38.106 19.677-38.106\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M24.099-37.829Q23.618-37.829 23.210-38.073Q22.802-38.317 22.564-38.731Q22.325-39.145 22.325-39.634Q22.325-40.126 22.583-40.542Q22.841-40.958 23.273-41.196Q23.704-41.434 24.196-41.434Q24.817-41.434 25.267-40.997L25.267-42.626Q25.267-42.841 25.204-42.936Q25.142-43.032 25.024-43.053Q24.907-43.075 24.661-43.075L24.661-43.372L25.884-43.458L25.884-38.649Q25.884-38.438 25.946-38.343Q26.009-38.247 26.126-38.225Q26.243-38.204 26.493-38.204L26.493-37.907L25.243-37.829L25.243-38.313Q24.778-37.829 24.099-37.829M24.165-38.083Q24.505-38.083 24.798-38.274Q25.091-38.466 25.243-38.762L25.243-40.594Q25.095-40.868 24.833-41.024Q24.571-41.180 24.259-41.180Q23.634-41.180 23.351-40.733Q23.067-40.286 23.067-39.626Q23.067-38.981 23.319-38.532Q23.571-38.083 24.165-38.083M27.001-39.661Q27.001-40.141 27.233-40.557Q27.466-40.973 27.876-41.223Q28.286-41.473 28.763-41.473Q29.493-41.473 29.892-41.032Q30.290-40.591 30.290-39.860Q30.290-39.755 30.196-39.731L27.747-39.731L27.747-39.661Q27.747-39.251 27.868-38.895Q27.989-38.540 28.261-38.323Q28.532-38.106 28.962-38.106Q29.325-38.106 29.622-38.335Q29.919-38.563 30.021-38.915Q30.028-38.962 30.114-38.977L30.196-38.977Q30.290-38.950 30.290-38.868Q30.290-38.860 30.282-38.829Q30.220-38.602 30.081-38.419Q29.942-38.235 29.751-38.102Q29.560-37.969 29.341-37.899Q29.122-37.829 28.884-37.829Q28.513-37.829 28.175-37.966Q27.837-38.102 27.569-38.354Q27.302-38.606 27.151-38.946Q27.001-39.286 27.001-39.661M27.755-39.969L29.716-39.969Q29.716-40.274 29.614-40.565Q29.513-40.856 29.296-41.038Q29.079-41.219 28.763-41.219Q28.462-41.219 28.232-41.032Q28.001-40.844 27.878-40.553Q27.755-40.262 27.755-39.969M36.501-38.884L31.189-38.884Q31.110-38.891 31.062-38.940Q31.013-38.989 31.013-39.067Q31.013-39.137 31.060-39.188Q31.107-39.239 31.189-39.251L36.501-39.251Q36.575-39.239 36.622-39.188Q36.669-39.137 36.669-39.067Q36.669-38.989 36.620-38.940Q36.571-38.891 36.501-38.884M36.501-40.571L31.189-40.571Q31.110-40.579 31.062-40.628Q31.013-40.677 31.013-40.755Q31.013-40.825 31.060-40.876Q31.107-40.927 31.189-40.938L36.501-40.938Q36.575-40.927 36.622-40.876Q36.669-40.825 36.669-40.755Q36.669-40.677 36.620-40.628Q36.571-40.579 36.501-40.571M37.501-39.130Q37.501-39.626 37.827-39.991Q38.153-40.356 38.677-40.602L38.407-40.762Q38.110-40.946 37.927-41.241Q37.743-41.536 37.743-41.876Q37.743-42.270 37.962-42.581Q38.181-42.891 38.534-43.059Q38.888-43.227 39.271-43.227Q39.544-43.227 39.817-43.149Q40.091-43.071 40.308-42.923Q40.524-42.774 40.661-42.548Q40.798-42.321 40.798-42.028Q40.798-41.622 40.528-41.315Q40.259-41.009 39.837-40.794L40.286-40.524Q40.505-40.387 40.673-40.194Q40.841-40.001 40.939-39.762Q41.036-39.524 41.036-39.266Q41.036-38.927 40.886-38.639Q40.735-38.352 40.489-38.155Q40.243-37.958 39.919-37.848Q39.595-37.739 39.271-37.739Q38.841-37.739 38.435-37.901Q38.028-38.063 37.765-38.382Q37.501-38.700 37.501-39.130M37.989-39.130Q37.989-38.645 38.380-38.329Q38.771-38.012 39.271-38.012Q39.564-38.012 39.862-38.124Q40.161-38.235 40.355-38.454Q40.548-38.673 40.548-38.985Q40.548-39.216 40.407-39.427Q40.267-39.637 40.060-39.755L38.950-40.434Q38.532-40.231 38.261-39.895Q37.989-39.559 37.989-39.130M38.575-41.563L39.564-40.962Q39.911-41.145 40.138-41.415Q40.364-41.684 40.364-42.028Q40.364-42.247 40.273-42.423Q40.181-42.598 40.026-42.721Q39.872-42.844 39.671-42.915Q39.470-42.985 39.271-42.985Q38.864-42.985 38.519-42.774Q38.173-42.563 38.173-42.180Q38.173-41.997 38.284-41.835Q38.396-41.673 38.575-41.563M42.220-36.501Q42.220-36.540 42.243-36.563Q42.517-36.848 42.659-37.212Q42.802-37.575 42.802-37.962Q42.704-37.907 42.579-37.907Q42.388-37.907 42.251-38.040Q42.114-38.173 42.114-38.372Q42.114-38.563 42.251-38.696Q42.388-38.829 42.579-38.829Q43.060-38.829 43.060-37.954Q43.060-37.665 42.987-37.384Q42.915-37.102 42.773-36.848Q42.630-36.594 42.435-36.387Q42.403-36.356 42.364-36.356Q42.317-36.356 42.269-36.401Q42.220-36.446 42.220-36.501M42.114-40.899Q42.114-41.083 42.251-41.219Q42.388-41.356 42.579-41.356Q42.771-41.356 42.903-41.223Q43.036-41.091 43.036-40.899Q43.036-40.700 42.903-40.567Q42.771-40.434 42.579-40.434Q42.388-40.434 42.251-40.571Q42.114-40.708 42.114-40.899\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M48.639-37.938L47.416-40.794Q47.334-40.969 47.190-41.014Q47.045-41.059 46.776-41.059L46.776-41.356L48.487-41.356L48.487-41.059Q48.065-41.059 48.065-40.876Q48.065-40.841 48.080-40.794L49.026-38.602L49.866-40.579Q49.905-40.657 49.905-40.747Q49.905-40.887 49.799-40.973Q49.694-41.059 49.553-41.059L49.553-41.356L50.905-41.356L50.905-41.059Q50.381-41.059 50.166-40.579L49.041-37.938Q48.979-37.829 48.873-37.829L48.807-37.829Q48.694-37.829 48.639-37.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M50.950-38.739Q50.950-39.223 51.352-39.518Q51.755-39.813 52.305-39.932Q52.856-40.052 53.348-40.052L53.348-40.341Q53.348-40.567 53.233-40.774Q53.118-40.981 52.921-41.100Q52.723-41.219 52.493-41.219Q52.067-41.219 51.782-41.114Q51.852-41.087 51.899-41.032Q51.946-40.977 51.971-40.907Q51.997-40.837 51.997-40.762Q51.997-40.657 51.946-40.565Q51.895-40.473 51.803-40.423Q51.712-40.372 51.606-40.372Q51.501-40.372 51.409-40.423Q51.317-40.473 51.266-40.565Q51.216-40.657 51.216-40.762Q51.216-41.180 51.604-41.327Q51.993-41.473 52.493-41.473Q52.825-41.473 53.178-41.343Q53.532-41.212 53.760-40.958Q53.989-40.704 53.989-40.356L53.989-38.555Q53.989-38.423 54.061-38.313Q54.134-38.204 54.262-38.204Q54.387-38.204 54.456-38.309Q54.524-38.415 54.524-38.555L54.524-39.067L54.805-39.067L54.805-38.555Q54.805-38.352 54.688-38.194Q54.571-38.036 54.389-37.952Q54.208-37.868 54.005-37.868Q53.774-37.868 53.622-38.040Q53.469-38.212 53.438-38.442Q53.278-38.161 52.969-37.995Q52.661-37.829 52.309-37.829Q51.798-37.829 51.374-38.052Q50.950-38.274 50.950-38.739M51.637-38.739Q51.637-38.454 51.864-38.268Q52.091-38.083 52.384-38.083Q52.630-38.083 52.854-38.200Q53.079-38.317 53.214-38.520Q53.348-38.723 53.348-38.977L53.348-39.809Q53.083-39.809 52.798-39.755Q52.512-39.700 52.241-39.571Q51.969-39.442 51.803-39.235Q51.637-39.028 51.637-38.739M57.012-37.907L55.180-37.907L55.180-38.204Q55.454-38.204 55.622-38.251Q55.790-38.298 55.790-38.466L55.790-42.626Q55.790-42.841 55.727-42.936Q55.665-43.032 55.546-43.053Q55.426-43.075 55.180-43.075L55.180-43.372L56.403-43.458L56.403-38.466Q56.403-38.298 56.571-38.251Q56.739-38.204 57.012-38.204L57.012-37.907M57.692-40.641Q57.692-41.235 57.925-41.766Q58.157-42.298 58.573-42.698Q58.989-43.098 59.522-43.319Q60.055-43.540 60.661-43.540Q61.098-43.540 61.497-43.358Q61.895-43.177 62.204-42.844L62.676-43.509Q62.708-43.540 62.739-43.540L62.786-43.540Q62.813-43.540 62.844-43.509Q62.876-43.477 62.876-43.450L62.876-41.313Q62.876-41.290 62.844-41.259Q62.813-41.227 62.786-41.227L62.669-41.227Q62.641-41.227 62.610-41.259Q62.579-41.290 62.579-41.313Q62.579-41.579 62.436-41.932Q62.294-42.286 62.114-42.524Q61.860-42.856 61.510-43.050Q61.161-43.243 60.755-43.243Q60.251-43.243 59.798-43.024Q59.344-42.805 59.051-42.411Q58.555-41.743 58.555-40.641Q58.555-40.110 58.692-39.643Q58.829-39.177 59.104-38.811Q59.380-38.446 59.800-38.241Q60.219-38.036 60.762-38.036Q61.251-38.036 61.675-38.280Q62.098-38.524 62.346-38.944Q62.594-39.364 62.594-39.860Q62.594-39.895 62.624-39.921Q62.653-39.946 62.684-39.946L62.786-39.946Q62.829-39.946 62.852-39.917Q62.876-39.887 62.876-39.844Q62.876-39.407 62.700-39.018Q62.524-38.630 62.214-38.346Q61.903-38.063 61.493-37.901Q61.083-37.739 60.661-37.739Q60.071-37.739 59.530-37.960Q58.989-38.180 58.573-38.585Q58.157-38.989 57.925-39.518Q57.692-40.048 57.692-40.641M69.317-38.884L64.005-38.884Q63.926-38.891 63.878-38.940Q63.829-38.989 63.829-39.067Q63.829-39.137 63.876-39.188Q63.923-39.239 64.005-39.251L69.317-39.251Q69.391-39.239 69.438-39.188Q69.485-39.137 69.485-39.067Q69.485-38.989 69.436-38.940Q69.387-38.891 69.317-38.884M69.317-40.571L64.005-40.571Q63.926-40.579 63.878-40.628Q63.829-40.677 63.829-40.755Q63.829-40.825 63.876-40.876Q63.923-40.927 64.005-40.938L69.317-40.938Q69.391-40.927 69.438-40.876Q69.485-40.825 69.485-40.755Q69.485-40.677 69.436-40.628Q69.387-40.579 69.317-40.571M72.087-37.739Q71.384-37.739 70.983-38.139Q70.583-38.540 70.438-39.149Q70.294-39.759 70.294-40.458Q70.294-40.981 70.364-41.444Q70.434-41.907 70.628-42.319Q70.821-42.731 71.178-42.979Q71.536-43.227 72.087-43.227Q72.637-43.227 72.995-42.979Q73.352-42.731 73.544-42.321Q73.735-41.911 73.805-41.442Q73.876-40.973 73.876-40.458Q73.876-39.759 73.733-39.151Q73.591-38.544 73.190-38.141Q72.790-37.739 72.087-37.739M72.087-37.997Q72.559-37.997 72.792-38.432Q73.024-38.868 73.079-39.407Q73.134-39.946 73.134-40.587Q73.134-41.583 72.950-42.276Q72.766-42.969 72.087-42.969Q71.719-42.969 71.499-42.731Q71.278-42.493 71.182-42.136Q71.087-41.778 71.061-41.407Q71.036-41.036 71.036-40.587Q71.036-39.946 71.091-39.407Q71.145-38.868 71.378-38.432Q71.610-37.997 72.087-37.997M75.837-37.907L74.341-37.907L74.341-38.204Q74.973-38.204 75.395-38.684L76.165-39.594L75.173-40.794Q75.016-40.973 74.854-41.016Q74.692-41.059 74.387-41.059L74.387-41.356L76.075-41.356L76.075-41.059Q75.981-41.059 75.905-41.016Q75.829-40.973 75.829-40.884Q75.829-40.841 75.860-40.794L76.516-40.005L76.997-40.579Q77.114-40.716 77.114-40.852Q77.114-40.942 77.063-41.001Q77.012-41.059 76.930-41.059L76.930-41.356L78.419-41.356L78.419-41.059Q77.782-41.059 77.372-40.579L76.692-39.778L77.778-38.466Q77.938-38.290 78.098-38.247Q78.259-38.204 78.563-38.204L78.563-37.907L76.876-37.907L76.876-38.204Q76.966-38.204 77.044-38.247Q77.122-38.290 77.122-38.380Q77.122-38.403 77.091-38.466L76.348-39.372L75.762-38.684Q75.645-38.548 75.645-38.411Q75.645-38.325 75.696-38.264Q75.747-38.204 75.837-38.204L75.837-37.907M80.813-37.739Q80.110-37.739 79.710-38.139Q79.309-38.540 79.165-39.149Q79.020-39.759 79.020-40.458Q79.020-40.981 79.091-41.444Q79.161-41.907 79.354-42.319Q79.548-42.731 79.905-42.979Q80.262-43.227 80.813-43.227Q81.364-43.227 81.721-42.979Q82.079-42.731 82.270-42.321Q82.462-41.911 82.532-41.442Q82.602-40.973 82.602-40.458Q82.602-39.759 82.460-39.151Q82.317-38.544 81.917-38.141Q81.516-37.739 80.813-37.739M80.813-37.997Q81.286-37.997 81.518-38.432Q81.751-38.868 81.805-39.407Q81.860-39.946 81.860-40.587Q81.860-41.583 81.677-42.276Q81.493-42.969 80.813-42.969Q80.446-42.969 80.225-42.731Q80.005-42.493 79.909-42.136Q79.813-41.778 79.788-41.407Q79.762-41.036 79.762-40.587Q79.762-39.946 79.817-39.407Q79.872-38.868 80.104-38.432Q80.337-37.997 80.813-37.997M86.532-37.907L83.739-37.907L83.739-38.204Q84.802-38.204 84.802-38.466L84.802-42.634Q84.372-42.419 83.692-42.419L83.692-42.716Q84.712-42.716 85.227-43.227L85.372-43.227Q85.446-43.208 85.466-43.130L85.466-38.466Q85.466-38.204 86.532-38.204L86.532-37.907M89.665-39.219L87.423-39.219L87.423-39.516L89.993-43.173Q90.032-43.227 90.094-43.227L90.239-43.227Q90.290-43.227 90.321-43.196Q90.352-43.165 90.352-43.114L90.352-39.516L91.184-39.516L91.184-39.219L90.352-39.219L90.352-38.466Q90.352-38.204 91.177-38.204L91.177-37.907L88.841-37.907L88.841-38.204Q89.665-38.204 89.665-38.466L89.665-39.219M89.719-42.321L87.751-39.516L89.719-39.516L89.719-42.321M92.255-36.501Q92.255-36.540 92.278-36.563Q92.552-36.848 92.694-37.212Q92.837-37.575 92.837-37.962Q92.739-37.907 92.614-37.907Q92.423-37.907 92.286-38.040Q92.149-38.173 92.149-38.372Q92.149-38.563 92.286-38.696Q92.423-38.829 92.614-38.829Q93.094-38.829 93.094-37.954Q93.094-37.665 93.022-37.384Q92.950-37.102 92.807-36.848Q92.665-36.594 92.469-36.387Q92.438-36.356 92.399-36.356Q92.352-36.356 92.303-36.401Q92.255-36.446 92.255-36.501M92.149-40.899Q92.149-41.083 92.286-41.219Q92.423-41.356 92.614-41.356Q92.805-41.356 92.938-41.223Q93.071-41.091 93.071-40.899Q93.071-40.700 92.938-40.567Q92.805-40.434 92.614-40.434Q92.423-40.434 92.286-40.571Q92.149-40.708 92.149-40.899\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M98.695-37.938L97.472-40.794Q97.390-40.969 97.246-41.014Q97.101-41.059 96.832-41.059L96.832-41.356L98.543-41.356L98.543-41.059Q98.121-41.059 98.121-40.876Q98.121-40.841 98.136-40.794L99.082-38.602L99.922-40.579Q99.961-40.657 99.961-40.747Q99.961-40.887 99.855-40.973Q99.750-41.059 99.609-41.059L99.609-41.356L100.961-41.356L100.961-41.059Q100.437-41.059 100.222-40.579L99.097-37.938Q99.035-37.829 98.929-37.829L98.863-37.829Q98.750-37.829 98.695-37.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M101.006-38.739Q101.006-39.223 101.408-39.518Q101.811-39.813 102.361-39.932Q102.912-40.052 103.404-40.052L103.404-40.341Q103.404-40.567 103.289-40.774Q103.174-40.981 102.977-41.100Q102.779-41.219 102.549-41.219Q102.123-41.219 101.838-41.114Q101.908-41.087 101.955-41.032Q102.002-40.977 102.027-40.907Q102.053-40.837 102.053-40.762Q102.053-40.657 102.002-40.565Q101.951-40.473 101.859-40.423Q101.768-40.372 101.662-40.372Q101.557-40.372 101.465-40.423Q101.373-40.473 101.322-40.565Q101.272-40.657 101.272-40.762Q101.272-41.180 101.660-41.327Q102.049-41.473 102.549-41.473Q102.881-41.473 103.234-41.343Q103.588-41.212 103.816-40.958Q104.045-40.704 104.045-40.356L104.045-38.555Q104.045-38.423 104.117-38.313Q104.190-38.204 104.318-38.204Q104.443-38.204 104.512-38.309Q104.580-38.415 104.580-38.555L104.580-39.067L104.861-39.067L104.861-38.555Q104.861-38.352 104.744-38.194Q104.627-38.036 104.445-37.952Q104.264-37.868 104.061-37.868Q103.830-37.868 103.678-38.040Q103.525-38.212 103.494-38.442Q103.334-38.161 103.025-37.995Q102.717-37.829 102.365-37.829Q101.854-37.829 101.430-38.052Q101.006-38.274 101.006-38.739M101.693-38.739Q101.693-38.454 101.920-38.268Q102.147-38.083 102.440-38.083Q102.686-38.083 102.910-38.200Q103.135-38.317 103.270-38.520Q103.404-38.723 103.404-38.977L103.404-39.809Q103.139-39.809 102.854-39.755Q102.568-39.700 102.297-39.571Q102.025-39.442 101.859-39.235Q101.693-39.028 101.693-38.739M107.068-37.907L105.236-37.907L105.236-38.204Q105.510-38.204 105.678-38.251Q105.846-38.298 105.846-38.466L105.846-42.626Q105.846-42.841 105.783-42.936Q105.721-43.032 105.602-43.053Q105.483-43.075 105.236-43.075L105.236-43.372L106.459-43.458L106.459-38.466Q106.459-38.298 106.627-38.251Q106.795-38.204 107.068-38.204L107.068-37.907M110.010-37.907L107.627-37.907L107.627-38.204Q107.951-38.204 108.193-38.251Q108.436-38.298 108.436-38.466L108.436-42.809Q108.436-42.981 108.193-43.028Q107.951-43.075 107.627-43.075L107.627-43.372L110.572-43.372Q110.916-43.372 111.272-43.272Q111.627-43.173 111.922-42.981Q112.217-42.790 112.399-42.505Q112.580-42.219 112.580-41.860Q112.580-41.387 112.270-41.052Q111.959-40.716 111.494-40.544Q111.029-40.372 110.572-40.372L109.205-40.372L109.205-38.466Q109.205-38.298 109.447-38.251Q109.690-38.204 110.010-38.204L110.010-37.907M109.178-42.809L109.178-40.641L110.354-40.641Q111.041-40.641 111.379-40.917Q111.717-41.192 111.717-41.860Q111.717-42.524 111.379-42.800Q111.041-43.075 110.354-43.075L109.580-43.075Q109.361-43.075 109.270-43.032Q109.178-42.989 109.178-42.809M119.014-38.884L113.701-38.884Q113.623-38.891 113.574-38.940Q113.525-38.989 113.525-39.067Q113.525-39.137 113.572-39.188Q113.619-39.239 113.701-39.251L119.014-39.251Q119.088-39.239 119.135-39.188Q119.182-39.137 119.182-39.067Q119.182-38.989 119.133-38.940Q119.084-38.891 119.014-38.884M119.014-40.571L113.701-40.571Q113.623-40.579 113.574-40.628Q113.525-40.677 113.525-40.755Q113.525-40.825 113.572-40.876Q113.619-40.927 113.701-40.938L119.014-40.938Q119.088-40.927 119.135-40.876Q119.182-40.825 119.182-40.755Q119.182-40.677 119.133-40.628Q119.084-40.579 119.014-40.571M121.783-37.739Q121.080-37.739 120.680-38.139Q120.279-38.540 120.135-39.149Q119.990-39.759 119.990-40.458Q119.990-40.981 120.061-41.444Q120.131-41.907 120.324-42.319Q120.518-42.731 120.875-42.979Q121.233-43.227 121.783-43.227Q122.334-43.227 122.691-42.979Q123.049-42.731 123.240-42.321Q123.432-41.911 123.502-41.442Q123.572-40.973 123.572-40.458Q123.572-39.759 123.430-39.151Q123.287-38.544 122.887-38.141Q122.486-37.739 121.783-37.739M121.783-37.997Q122.256-37.997 122.488-38.432Q122.721-38.868 122.775-39.407Q122.830-39.946 122.830-40.587Q122.830-41.583 122.647-42.276Q122.463-42.969 121.783-42.969Q121.416-42.969 121.195-42.731Q120.975-42.493 120.879-42.136Q120.783-41.778 120.758-41.407Q120.733-41.036 120.733-40.587Q120.733-39.946 120.787-39.407Q120.842-38.868 121.074-38.432Q121.307-37.997 121.783-37.997M125.533-37.907L124.037-37.907L124.037-38.204Q124.670-38.204 125.092-38.684L125.861-39.594L124.869-40.794Q124.713-40.973 124.551-41.016Q124.389-41.059 124.084-41.059L124.084-41.356L125.772-41.356L125.772-41.059Q125.678-41.059 125.602-41.016Q125.525-40.973 125.525-40.884Q125.525-40.841 125.557-40.794L126.213-40.005L126.693-40.579Q126.811-40.716 126.811-40.852Q126.811-40.942 126.760-41.001Q126.709-41.059 126.627-41.059L126.627-41.356L128.115-41.356L128.115-41.059Q127.479-41.059 127.068-40.579L126.389-39.778L127.475-38.466Q127.635-38.290 127.795-38.247Q127.955-38.204 128.260-38.204L128.260-37.907L126.572-37.907L126.572-38.204Q126.662-38.204 126.740-38.247Q126.818-38.290 126.818-38.380Q126.818-38.403 126.787-38.466L126.045-39.372L125.459-38.684Q125.342-38.548 125.342-38.411Q125.342-38.325 125.393-38.264Q125.443-38.204 125.533-38.204L125.533-37.907M130.510-37.739Q129.807-37.739 129.406-38.139Q129.006-38.540 128.861-39.149Q128.717-39.759 128.717-40.458Q128.717-40.981 128.787-41.444Q128.858-41.907 129.051-42.319Q129.244-42.731 129.602-42.979Q129.959-43.227 130.510-43.227Q131.061-43.227 131.418-42.979Q131.775-42.731 131.967-42.321Q132.158-41.911 132.229-41.442Q132.299-40.973 132.299-40.458Q132.299-39.759 132.156-39.151Q132.014-38.544 131.613-38.141Q131.213-37.739 130.510-37.739M130.510-37.997Q130.983-37.997 131.215-38.432Q131.447-38.868 131.502-39.407Q131.557-39.946 131.557-40.587Q131.557-41.583 131.373-42.276Q131.190-42.969 130.510-42.969Q130.143-42.969 129.922-42.731Q129.701-42.493 129.606-42.136Q129.510-41.778 129.484-41.407Q129.459-41.036 129.459-40.587Q129.459-39.946 129.514-39.407Q129.568-38.868 129.801-38.432Q130.033-37.997 130.510-37.997M136.229-37.907L133.436-37.907L133.436-38.204Q134.498-38.204 134.498-38.466L134.498-42.634Q134.068-42.419 133.389-42.419L133.389-42.716Q134.408-42.716 134.924-43.227L135.068-43.227Q135.143-43.208 135.162-43.130L135.162-38.466Q135.162-38.204 136.229-38.204L136.229-37.907M137.674-38.540Q137.865-38.266 138.221-38.139Q138.576-38.012 138.959-38.012Q139.295-38.012 139.504-38.198Q139.713-38.384 139.809-38.677Q139.904-38.969 139.904-39.282Q139.904-39.606 139.807-39.901Q139.709-40.196 139.496-40.380Q139.283-40.563 138.951-40.563L138.385-40.563Q138.354-40.563 138.324-40.593Q138.295-40.622 138.295-40.649L138.295-40.731Q138.295-40.766 138.324-40.792Q138.354-40.817 138.385-40.817L138.865-40.852Q139.150-40.852 139.348-41.057Q139.545-41.262 139.641-41.557Q139.736-41.852 139.736-42.130Q139.736-42.509 139.537-42.747Q139.338-42.985 138.959-42.985Q138.639-42.985 138.350-42.878Q138.061-42.770 137.897-42.548Q138.076-42.548 138.199-42.421Q138.322-42.294 138.322-42.122Q138.322-41.950 138.197-41.825Q138.072-41.700 137.897-41.700Q137.725-41.700 137.600-41.825Q137.475-41.950 137.475-42.122Q137.475-42.489 137.699-42.737Q137.924-42.985 138.264-43.106Q138.604-43.227 138.959-43.227Q139.307-43.227 139.670-43.106Q140.033-42.985 140.281-42.735Q140.529-42.485 140.529-42.130Q140.529-41.645 140.211-41.262Q139.893-40.880 139.416-40.708Q139.967-40.598 140.367-40.212Q140.768-39.825 140.768-39.290Q140.768-38.833 140.504-38.477Q140.240-38.122 139.818-37.930Q139.397-37.739 138.959-37.739Q138.549-37.739 138.156-37.874Q137.764-38.009 137.498-38.294Q137.233-38.579 137.233-38.997Q137.233-39.192 137.365-39.321Q137.498-39.450 137.690-39.450Q137.815-39.450 137.918-39.391Q138.022-39.333 138.084-39.227Q138.147-39.122 138.147-38.997Q138.147-38.802 138.012-38.671Q137.877-38.540 137.674-38.540\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-25.957h236.157\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-34.53 26.616)\">\u003Cpath d=\"M14.584-37.907L11.812-37.907L11.812-38.187Q12.533-38.187 12.533-38.396L12.533-42.197Q12.533-42.408 11.812-42.408L11.812-42.689L14.584-42.689Q15.069-42.689 15.505-42.494Q15.941-42.299 16.264-41.957Q16.587-41.615 16.765-41.175Q16.942-40.734 16.942-40.252Q16.942-39.766 16.758-39.343Q16.573-38.919 16.250-38.597Q15.927-38.276 15.495-38.092Q15.063-37.907 14.584-37.907M13.196-42.197L13.196-38.396Q13.196-38.256 13.285-38.221Q13.374-38.187 13.562-38.187L14.386-38.187Q15.011-38.187 15.415-38.449Q15.818-38.710 16.006-39.177Q16.194-39.643 16.194-40.252Q16.194-40.730 16.102-41.123Q16.009-41.516 15.760-41.814Q15.521-42.101 15.157-42.255Q14.793-42.408 14.386-42.408L13.562-42.408Q13.374-42.408 13.285-42.374Q13.196-42.340 13.196-42.197M17.711-39.442Q17.711-39.763 17.836-40.052Q17.961-40.341 18.187-40.564Q18.412-40.788 18.708-40.908Q19.003-41.028 19.321-41.028Q19.649-41.028 19.911-40.928Q20.172-40.829 20.348-40.647Q20.524-40.464 20.618-40.206Q20.712-39.948 20.712-39.616Q20.712-39.524 20.630-39.503L18.375-39.503L18.375-39.442Q18.375-38.854 18.658-38.471Q18.942-38.088 19.509-38.088Q19.831-38.088 20.099-38.281Q20.367-38.474 20.456-38.789Q20.463-38.830 20.538-38.844L20.630-38.844Q20.712-38.820 20.712-38.748Q20.712-38.741 20.706-38.714Q20.593-38.317 20.222-38.078Q19.851-37.839 19.427-37.839Q18.990-37.839 18.590-38.047Q18.190-38.256 17.951-38.623Q17.711-38.990 17.711-39.442M18.381-39.712L20.196-39.712Q20.196-39.989 20.099-40.241Q20.002-40.494 19.803-40.650Q19.605-40.805 19.321-40.805Q19.044-40.805 18.831-40.647Q18.617-40.488 18.499-40.233Q18.381-39.978 18.381-39.712M21.300-39.418Q21.300-39.746 21.435-40.047Q21.570-40.347 21.806-40.568Q22.042-40.788 22.346-40.908Q22.650-41.028 22.975-41.028Q23.481-41.028 23.830-40.925Q24.178-40.823 24.178-40.447Q24.178-40.300 24.081-40.199Q23.983-40.098 23.836-40.098Q23.683-40.098 23.584-40.197Q23.484-40.296 23.484-40.447Q23.484-40.635 23.625-40.727Q23.423-40.778 22.982-40.778Q22.627-40.778 22.398-40.582Q22.169-40.385 22.068-40.076Q21.967-39.766 21.967-39.418Q21.967-39.069 22.093-38.763Q22.220-38.457 22.474-38.273Q22.729-38.088 23.085-38.088Q23.307-38.088 23.491-38.172Q23.676-38.256 23.811-38.411Q23.946-38.567 24.004-38.775Q24.018-38.830 24.072-38.830L24.185-38.830Q24.216-38.830 24.238-38.806Q24.260-38.782 24.260-38.748L24.260-38.727Q24.175-38.440 23.987-38.242Q23.799-38.044 23.534-37.941Q23.269-37.839 22.975-37.839Q22.544-37.839 22.157-38.045Q21.769-38.252 21.534-38.615Q21.300-38.977 21.300-39.418M24.807-39.390Q24.807-39.732 24.942-40.031Q25.077-40.330 25.316-40.554Q25.556-40.778 25.874-40.903Q26.191-41.028 26.523-41.028Q26.967-41.028 27.367-40.812Q27.767-40.597 28.001-40.219Q28.235-39.842 28.235-39.390Q28.235-39.049 28.094-38.765Q27.952-38.481 27.707-38.274Q27.463-38.068 27.154-37.953Q26.844-37.839 26.523-37.839Q26.092-37.839 25.691-38.040Q25.289-38.242 25.048-38.594Q24.807-38.946 24.807-39.390M26.523-38.088Q27.125-38.088 27.348-38.466Q27.572-38.844 27.572-39.476Q27.572-40.088 27.338-40.447Q27.104-40.805 26.523-40.805Q25.470-40.805 25.470-39.476Q25.470-38.844 25.696-38.466Q25.921-38.088 26.523-38.088\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-34.53 26.616)\">\u003Cpath d=\"M29.066-39.418Q29.066-39.756 29.207-40.047Q29.347-40.337 29.591-40.551Q29.835-40.764 30.140-40.879Q30.444-40.993 30.769-40.993Q31.039-40.993 31.302-40.894Q31.565-40.795 31.756-40.617L31.756-42.015Q31.756-42.285 31.649-42.347Q31.541-42.408 31.230-42.408L31.230-42.689L32.307-42.764L32.307-38.580Q32.307-38.392 32.361-38.309Q32.416-38.225 32.517-38.206Q32.618-38.187 32.833-38.187L32.833-37.907L31.726-37.839L31.726-38.256Q31.309-37.839 30.683-37.839Q30.252-37.839 29.880-38.051Q29.507-38.262 29.287-38.623Q29.066-38.984 29.066-39.418M30.741-38.061Q30.950-38.061 31.136-38.133Q31.322-38.204 31.476-38.341Q31.630-38.478 31.726-38.656L31.726-40.265Q31.640-40.412 31.495-40.532Q31.350-40.652 31.180-40.711Q31.011-40.771 30.830-40.771Q30.270-40.771 30.001-40.382Q29.733-39.992 29.733-39.411Q29.733-38.840 29.967-38.450Q30.201-38.061 30.741-38.061M33.441-39.442Q33.441-39.763 33.566-40.052Q33.691-40.341 33.917-40.564Q34.142-40.788 34.438-40.908Q34.733-41.028 35.051-41.028Q35.379-41.028 35.641-40.928Q35.902-40.829 36.078-40.647Q36.254-40.464 36.348-40.206Q36.442-39.948 36.442-39.616Q36.442-39.524 36.360-39.503L34.105-39.503L34.105-39.442Q34.105-38.854 34.388-38.471Q34.672-38.088 35.239-38.088Q35.561-38.088 35.829-38.281Q36.097-38.474 36.186-38.789Q36.193-38.830 36.268-38.844L36.360-38.844Q36.442-38.820 36.442-38.748Q36.442-38.741 36.436-38.714Q36.323-38.317 35.952-38.078Q35.581-37.839 35.157-37.839Q34.720-37.839 34.320-38.047Q33.920-38.256 33.681-38.623Q33.441-38.990 33.441-39.442M34.111-39.712L35.926-39.712Q35.926-39.989 35.829-40.241Q35.731-40.494 35.533-40.650Q35.335-40.805 35.051-40.805Q34.774-40.805 34.561-40.647Q34.347-40.488 34.229-40.233Q34.111-39.978 34.111-39.712\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(6.378 26.407)\">\u003Cpath d=\"M11.700-37.915L11.700-39.137Q11.700-39.165 11.732-39.196Q11.763-39.227 11.786-39.227L11.892-39.227Q11.962-39.227 11.978-39.165Q12.040-38.844 12.179-38.604Q12.317-38.364 12.550-38.223Q12.782-38.083 13.091-38.083Q13.329-38.083 13.538-38.143Q13.747-38.204 13.884-38.352Q14.021-38.501 14.021-38.747Q14.021-39.001 13.810-39.167Q13.599-39.333 13.329-39.387L12.708-39.501Q12.302-39.579 12.001-39.835Q11.700-40.091 11.700-40.466Q11.700-40.833 11.901-41.055Q12.103-41.278 12.427-41.376Q12.751-41.473 13.091-41.473Q13.556-41.473 13.853-41.266L14.075-41.450Q14.099-41.473 14.130-41.473L14.181-41.473Q14.212-41.473 14.239-41.446Q14.267-41.419 14.267-41.387L14.267-40.403Q14.267-40.372 14.241-40.343Q14.216-40.313 14.181-40.313L14.075-40.313Q14.040-40.313 14.013-40.341Q13.985-40.368 13.985-40.403Q13.985-40.802 13.733-41.022Q13.482-41.243 13.083-41.243Q12.728-41.243 12.444-41.120Q12.161-40.997 12.161-40.692Q12.161-40.473 12.362-40.341Q12.564-40.208 12.810-40.165L13.435-40.052Q13.864-39.962 14.173-39.665Q14.482-39.368 14.482-38.954Q14.482-38.384 14.083-38.106Q13.685-37.829 13.091-37.829Q12.540-37.829 12.189-38.165L11.892-37.852Q11.868-37.829 11.833-37.829L11.786-37.829Q11.763-37.829 11.732-37.860Q11.700-37.891 11.700-37.915M17.017-37.907L15.036-37.907L15.036-38.204Q15.306-38.204 15.474-38.249Q15.642-38.294 15.642-38.466L15.642-40.602Q15.642-40.817 15.579-40.913Q15.517-41.009 15.399-41.030Q15.282-41.052 15.036-41.052L15.036-41.348L16.204-41.434L16.204-40.649Q16.282-40.860 16.435-41.046Q16.587-41.231 16.786-41.333Q16.985-41.434 17.212-41.434Q17.458-41.434 17.649-41.290Q17.841-41.145 17.841-40.915Q17.841-40.759 17.735-40.649Q17.630-40.540 17.474-40.540Q17.317-40.540 17.208-40.649Q17.099-40.759 17.099-40.915Q17.099-41.075 17.204-41.180Q16.880-41.180 16.665-40.952Q16.450-40.723 16.355-40.384Q16.259-40.044 16.259-39.739L16.259-38.466Q16.259-38.298 16.485-38.251Q16.712-38.204 17.017-38.204L17.017-37.907M18.364-39.634Q18.364-40.130 18.614-40.555Q18.864-40.981 19.284-41.227Q19.704-41.473 20.204-41.473Q20.743-41.473 21.134-41.348Q21.524-41.223 21.524-40.809Q21.524-40.704 21.474-40.612Q21.423-40.520 21.331-40.469Q21.239-40.419 21.130-40.419Q21.024-40.419 20.933-40.469Q20.841-40.520 20.790-40.612Q20.739-40.704 20.739-40.809Q20.739-41.032 20.907-41.137Q20.685-41.196 20.212-41.196Q19.915-41.196 19.700-41.057Q19.485-40.919 19.355-40.688Q19.224-40.458 19.165-40.188Q19.107-39.919 19.107-39.634Q19.107-39.239 19.239-38.889Q19.372-38.540 19.644-38.323Q19.915-38.106 20.314-38.106Q20.689-38.106 20.964-38.323Q21.239-38.540 21.341-38.899Q21.357-38.962 21.419-38.962L21.524-38.962Q21.560-38.962 21.585-38.934Q21.610-38.907 21.610-38.868L21.610-38.844Q21.478-38.364 21.093-38.096Q20.708-37.829 20.204-37.829Q19.841-37.829 19.507-37.966Q19.173-38.102 18.913-38.352Q18.653-38.602 18.509-38.938Q18.364-39.274 18.364-39.634M25.509-37.907L22.228-37.907L22.228-38.204Q22.552-38.204 22.794-38.251Q23.036-38.298 23.036-38.466L23.036-42.809Q23.036-42.981 22.794-43.028Q22.552-43.075 22.228-43.075L22.228-43.372L25.274-43.372Q25.700-43.372 26.134-43.218Q26.567-43.063 26.862-42.755Q27.157-42.446 27.157-42.012Q27.157-41.759 27.032-41.542Q26.907-41.325 26.706-41.169Q26.505-41.012 26.273-40.913Q26.040-40.813 25.782-40.762Q26.157-40.727 26.536-40.550Q26.915-40.372 27.155-40.073Q27.396-39.774 27.396-39.380Q27.396-38.927 27.112-38.593Q26.829-38.259 26.394-38.083Q25.958-37.907 25.509-37.907M23.747-40.618L23.747-38.466Q23.747-38.294 23.839-38.249Q23.931-38.204 24.149-38.204L25.274-38.204Q25.513-38.204 25.747-38.292Q25.982-38.380 26.167-38.540Q26.353-38.700 26.454-38.913Q26.556-39.126 26.556-39.380Q26.556-39.700 26.403-39.985Q26.251-40.270 25.982-40.444Q25.712-40.618 25.396-40.618L23.747-40.618M23.747-42.809L23.747-40.876L25.036-40.876Q25.278-40.876 25.517-40.958Q25.755-41.040 25.939-41.186Q26.122-41.333 26.235-41.550Q26.349-41.766 26.349-42.012Q26.349-42.223 26.263-42.425Q26.177-42.626 26.030-42.768Q25.884-42.911 25.689-42.993Q25.493-43.075 25.274-43.075L24.149-43.075Q23.931-43.075 23.839-43.032Q23.747-42.989 23.747-42.809M33.837-38.884L28.524-38.884Q28.446-38.891 28.398-38.940Q28.349-38.989 28.349-39.067Q28.349-39.137 28.396-39.188Q28.442-39.239 28.524-39.251L33.837-39.251Q33.911-39.239 33.958-39.188Q34.005-39.137 34.005-39.067Q34.005-38.989 33.956-38.940Q33.907-38.891 33.837-38.884M33.837-40.571L28.524-40.571Q28.446-40.579 28.398-40.628Q28.349-40.677 28.349-40.755Q28.349-40.825 28.396-40.876Q28.442-40.927 28.524-40.938L33.837-40.938Q33.911-40.927 33.958-40.876Q34.005-40.825 34.005-40.755Q34.005-40.677 33.956-40.628Q33.907-40.579 33.837-40.571M35.669-37.641Q35.669-37.704 35.700-37.747L39.446-43.005Q38.989-42.770 38.423-42.770Q37.771-42.770 37.165-43.091Q37.310-42.743 37.310-42.298Q37.310-41.938 37.189-41.567Q37.067-41.196 36.817-40.940Q36.567-40.684 36.204-40.684Q35.817-40.684 35.534-40.928Q35.251-41.173 35.105-41.546Q34.958-41.919 34.958-42.298Q34.958-42.677 35.105-43.048Q35.251-43.419 35.534-43.663Q35.817-43.907 36.204-43.907Q36.521-43.907 36.790-43.669Q37.126-43.364 37.556-43.192Q37.985-43.020 38.423-43.020Q38.915-43.020 39.333-43.233Q39.751-43.446 40.052-43.844Q40.095-43.907 40.189-43.907Q40.263-43.907 40.317-43.852Q40.372-43.798 40.372-43.723Q40.372-43.661 40.341-43.618L35.997-37.524Q35.950-37.458 35.853-37.458Q35.771-37.458 35.720-37.509Q35.669-37.559 35.669-37.641M36.204-40.938Q36.478-40.938 36.665-41.163Q36.853-41.387 36.940-41.710Q37.028-42.032 37.028-42.298Q37.028-42.555 36.940-42.878Q36.853-43.200 36.665-43.425Q36.478-43.649 36.204-43.649Q35.817-43.649 35.675-43.221Q35.532-42.794 35.532-42.298Q35.532-41.790 35.673-41.364Q35.814-40.938 36.204-40.938M39.981-37.458Q39.595-37.458 39.312-37.704Q39.028-37.950 38.880-38.323Q38.731-38.696 38.731-39.075Q38.731-39.348 38.817-39.636Q38.903-39.923 39.058-40.157Q39.212-40.391 39.448-40.538Q39.685-40.684 39.981-40.684Q40.263-40.684 40.470-40.532Q40.677-40.380 40.815-40.137Q40.954-39.895 41.021-39.614Q41.087-39.333 41.087-39.075Q41.087-38.716 40.966-38.343Q40.845-37.969 40.595-37.714Q40.345-37.458 39.981-37.458M39.981-37.716Q40.255-37.716 40.442-37.940Q40.630-38.165 40.718-38.487Q40.806-38.809 40.806-39.075Q40.806-39.333 40.718-39.655Q40.630-39.977 40.442-40.202Q40.255-40.427 39.981-40.427Q39.591-40.427 39.450-39.997Q39.310-39.567 39.310-39.075Q39.310-38.567 39.446-38.141Q39.583-37.716 39.981-37.716M43.810-37.907L41.829-37.907L41.829-38.204Q42.099-38.204 42.267-38.249Q42.435-38.294 42.435-38.466L42.435-40.602Q42.435-40.817 42.372-40.913Q42.310-41.009 42.192-41.030Q42.075-41.052 41.829-41.052L41.829-41.348L42.997-41.434L42.997-40.649Q43.075-40.860 43.228-41.046Q43.380-41.231 43.579-41.333Q43.778-41.434 44.005-41.434Q44.251-41.434 44.442-41.290Q44.634-41.145 44.634-40.915Q44.634-40.759 44.528-40.649Q44.423-40.540 44.267-40.540Q44.110-40.540 44.001-40.649Q43.892-40.759 43.892-40.915Q43.892-41.075 43.997-41.180Q43.673-41.180 43.458-40.952Q43.243-40.723 43.148-40.384Q43.052-40.044 43.052-39.739L43.052-38.466Q43.052-38.298 43.278-38.251Q43.505-38.204 43.810-38.204L43.810-37.907M45.157-37.915L45.157-39.137Q45.157-39.165 45.189-39.196Q45.220-39.227 45.243-39.227L45.349-39.227Q45.419-39.227 45.435-39.165Q45.497-38.844 45.636-38.604Q45.774-38.364 46.007-38.223Q46.239-38.083 46.548-38.083Q46.786-38.083 46.995-38.143Q47.204-38.204 47.341-38.352Q47.478-38.501 47.478-38.747Q47.478-39.001 47.267-39.167Q47.056-39.333 46.786-39.387L46.165-39.501Q45.759-39.579 45.458-39.835Q45.157-40.091 45.157-40.466Q45.157-40.833 45.358-41.055Q45.560-41.278 45.884-41.376Q46.208-41.473 46.548-41.473Q47.013-41.473 47.310-41.266L47.532-41.450Q47.556-41.473 47.587-41.473L47.638-41.473Q47.669-41.473 47.696-41.446Q47.724-41.419 47.724-41.387L47.724-40.403Q47.724-40.372 47.698-40.343Q47.673-40.313 47.638-40.313L47.532-40.313Q47.497-40.313 47.470-40.341Q47.442-40.368 47.442-40.403Q47.442-40.802 47.190-41.022Q46.939-41.243 46.540-41.243Q46.185-41.243 45.901-41.120Q45.618-40.997 45.618-40.692Q45.618-40.473 45.819-40.341Q46.021-40.208 46.267-40.165L46.892-40.052Q47.321-39.962 47.630-39.665Q47.939-39.368 47.939-38.954Q47.939-38.384 47.540-38.106Q47.142-37.829 46.548-37.829Q45.997-37.829 45.646-38.165L45.349-37.852Q45.325-37.829 45.290-37.829L45.243-37.829Q45.220-37.829 45.189-37.860Q45.157-37.891 45.157-37.915M50.349-36.356L48.493-36.356L48.493-36.649Q48.763-36.649 48.931-36.694Q49.099-36.739 49.099-36.915L49.099-40.739Q49.099-40.946 48.942-40.999Q48.786-41.052 48.493-41.052L48.493-41.348L49.716-41.434L49.716-40.969Q49.946-41.192 50.261-41.313Q50.575-41.434 50.915-41.434Q51.388-41.434 51.792-41.188Q52.196-40.942 52.429-40.526Q52.661-40.110 52.661-39.634Q52.661-39.259 52.513-38.930Q52.364-38.602 52.095-38.350Q51.825-38.098 51.481-37.964Q51.138-37.829 50.778-37.829Q50.489-37.829 50.218-37.950Q49.946-38.071 49.739-38.282L49.739-36.915Q49.739-36.739 49.907-36.694Q50.075-36.649 50.349-36.649L50.349-36.356M49.739-40.571L49.739-38.731Q49.892-38.442 50.153-38.262Q50.415-38.083 50.724-38.083Q51.009-38.083 51.231-38.221Q51.454-38.360 51.606-38.591Q51.759-38.821 51.837-39.093Q51.915-39.364 51.915-39.634Q51.915-39.966 51.790-40.323Q51.665-40.680 51.417-40.917Q51.169-41.153 50.821-41.153Q50.497-41.153 50.202-40.997Q49.907-40.841 49.739-40.571M53.665-38.372Q53.665-38.555 53.802-38.692Q53.939-38.829 54.130-38.829Q54.321-38.829 54.454-38.696Q54.587-38.563 54.587-38.372Q54.587-38.173 54.454-38.040Q54.321-37.907 54.130-37.907Q53.939-37.907 53.802-38.044Q53.665-38.180 53.665-38.372M53.665-40.899Q53.665-41.083 53.802-41.219Q53.939-41.356 54.130-41.356Q54.321-41.356 54.454-41.223Q54.587-41.091 54.587-40.899Q54.587-40.700 54.454-40.567Q54.321-40.434 54.130-40.434Q53.939-40.434 53.802-40.571Q53.665-40.708 53.665-40.899\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.407)\">\u003Cpath d=\"M61.139-37.938L59.916-40.794Q59.834-40.969 59.690-41.014Q59.545-41.059 59.276-41.059L59.276-41.356L60.987-41.356L60.987-41.059Q60.565-41.059 60.565-40.876Q60.565-40.841 60.580-40.794L61.526-38.602L62.366-40.579Q62.405-40.657 62.405-40.747Q62.405-40.887 62.299-40.973Q62.194-41.059 62.053-41.059L62.053-41.356L63.405-41.356L63.405-41.059Q62.881-41.059 62.666-40.579L61.541-37.938Q61.479-37.829 61.373-37.829L61.307-37.829Q61.194-37.829 61.139-37.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.407)\">\u003Cpath d=\"M63.450-38.739Q63.450-39.223 63.852-39.518Q64.255-39.813 64.805-39.932Q65.356-40.052 65.848-40.052L65.848-40.341Q65.848-40.567 65.733-40.774Q65.618-40.981 65.421-41.100Q65.223-41.219 64.993-41.219Q64.567-41.219 64.282-41.114Q64.352-41.087 64.399-41.032Q64.446-40.977 64.471-40.907Q64.497-40.837 64.497-40.762Q64.497-40.657 64.446-40.565Q64.395-40.473 64.303-40.423Q64.212-40.372 64.106-40.372Q64.001-40.372 63.909-40.423Q63.817-40.473 63.766-40.565Q63.716-40.657 63.716-40.762Q63.716-41.180 64.104-41.327Q64.493-41.473 64.993-41.473Q65.325-41.473 65.678-41.343Q66.032-41.212 66.260-40.958Q66.489-40.704 66.489-40.356L66.489-38.555Q66.489-38.423 66.561-38.313Q66.634-38.204 66.762-38.204Q66.887-38.204 66.956-38.309Q67.024-38.415 67.024-38.555L67.024-39.067L67.305-39.067L67.305-38.555Q67.305-38.352 67.188-38.194Q67.071-38.036 66.889-37.952Q66.708-37.868 66.505-37.868Q66.274-37.868 66.122-38.040Q65.969-38.212 65.938-38.442Q65.778-38.161 65.469-37.995Q65.161-37.829 64.809-37.829Q64.298-37.829 63.874-38.052Q63.450-38.274 63.450-38.739M64.137-38.739Q64.137-38.454 64.364-38.268Q64.591-38.083 64.884-38.083Q65.130-38.083 65.354-38.200Q65.579-38.317 65.714-38.520Q65.848-38.723 65.848-38.977L65.848-39.809Q65.583-39.809 65.298-39.755Q65.012-39.700 64.741-39.571Q64.469-39.442 64.303-39.235Q64.137-39.028 64.137-38.739M69.512-37.907L67.680-37.907L67.680-38.204Q67.954-38.204 68.122-38.251Q68.290-38.298 68.290-38.466L68.290-42.626Q68.290-42.841 68.227-42.936Q68.165-43.032 68.046-43.053Q67.927-43.075 67.680-43.075L67.680-43.372L68.903-43.458L68.903-38.466Q68.903-38.298 69.071-38.251Q69.239-38.204 69.512-38.204L69.512-37.907M73.368-37.907L70.087-37.907L70.087-38.204Q70.411-38.204 70.653-38.251Q70.895-38.298 70.895-38.466L70.895-42.809Q70.895-42.981 70.653-43.028Q70.411-43.075 70.087-43.075L70.087-43.372L73.134-43.372Q73.559-43.372 73.993-43.218Q74.427-43.063 74.721-42.755Q75.016-42.446 75.016-42.012Q75.016-41.759 74.891-41.542Q74.766-41.325 74.565-41.169Q74.364-41.012 74.132-40.913Q73.899-40.813 73.641-40.762Q74.016-40.727 74.395-40.550Q74.774-40.372 75.014-40.073Q75.255-39.774 75.255-39.380Q75.255-38.927 74.971-38.593Q74.688-38.259 74.253-38.083Q73.817-37.907 73.368-37.907M71.606-40.618L71.606-38.466Q71.606-38.294 71.698-38.249Q71.790-38.204 72.009-38.204L73.134-38.204Q73.372-38.204 73.606-38.292Q73.841-38.380 74.026-38.540Q74.212-38.700 74.313-38.913Q74.415-39.126 74.415-39.380Q74.415-39.700 74.262-39.985Q74.110-40.270 73.841-40.444Q73.571-40.618 73.255-40.618L71.606-40.618M71.606-42.809L71.606-40.876L72.895-40.876Q73.137-40.876 73.376-40.958Q73.614-41.040 73.798-41.186Q73.981-41.333 74.094-41.550Q74.208-41.766 74.208-42.012Q74.208-42.223 74.122-42.425Q74.036-42.626 73.889-42.768Q73.743-42.911 73.548-42.993Q73.352-43.075 73.134-43.075L72.009-43.075Q71.790-43.075 71.698-43.032Q71.606-42.989 71.606-42.809M81.696-38.884L76.384-38.884Q76.305-38.891 76.257-38.940Q76.208-38.989 76.208-39.067Q76.208-39.137 76.255-39.188Q76.302-39.239 76.384-39.251L81.696-39.251Q81.770-39.239 81.817-39.188Q81.864-39.137 81.864-39.067Q81.864-38.989 81.815-38.940Q81.766-38.891 81.696-38.884M81.696-40.571L76.384-40.571Q76.305-40.579 76.257-40.628Q76.208-40.677 76.208-40.755Q76.208-40.825 76.255-40.876Q76.302-40.927 76.384-40.938L81.696-40.938Q81.770-40.927 81.817-40.876Q81.864-40.825 81.864-40.755Q81.864-40.677 81.815-40.628Q81.766-40.579 81.696-40.571M84.466-37.739Q83.762-37.739 83.362-38.139Q82.962-38.540 82.817-39.149Q82.673-39.759 82.673-40.458Q82.673-40.981 82.743-41.444Q82.813-41.907 83.007-42.319Q83.200-42.731 83.557-42.979Q83.915-43.227 84.466-43.227Q85.016-43.227 85.374-42.979Q85.731-42.731 85.923-42.321Q86.114-41.911 86.184-41.442Q86.255-40.973 86.255-40.458Q86.255-39.759 86.112-39.151Q85.969-38.544 85.569-38.141Q85.169-37.739 84.466-37.739M84.466-37.997Q84.938-37.997 85.171-38.432Q85.403-38.868 85.458-39.407Q85.512-39.946 85.512-40.587Q85.512-41.583 85.329-42.276Q85.145-42.969 84.466-42.969Q84.098-42.969 83.878-42.731Q83.657-42.493 83.561-42.136Q83.466-41.778 83.440-41.407Q83.415-41.036 83.415-40.587Q83.415-39.946 83.469-39.407Q83.524-38.868 83.757-38.432Q83.989-37.997 84.466-37.997M88.216-37.907L86.719-37.907L86.719-38.204Q87.352-38.204 87.774-38.684L88.544-39.594L87.552-40.794Q87.395-40.973 87.233-41.016Q87.071-41.059 86.766-41.059L86.766-41.356L88.454-41.356L88.454-41.059Q88.360-41.059 88.284-41.016Q88.208-40.973 88.208-40.884Q88.208-40.841 88.239-40.794L88.895-40.005L89.376-40.579Q89.493-40.716 89.493-40.852Q89.493-40.942 89.442-41.001Q89.391-41.059 89.309-41.059L89.309-41.356L90.798-41.356L90.798-41.059Q90.161-41.059 89.751-40.579L89.071-39.778L90.157-38.466Q90.317-38.290 90.477-38.247Q90.637-38.204 90.942-38.204L90.942-37.907L89.255-37.907L89.255-38.204Q89.344-38.204 89.423-38.247Q89.501-38.290 89.501-38.380Q89.501-38.403 89.469-38.466L88.727-39.372L88.141-38.684Q88.024-38.548 88.024-38.411Q88.024-38.325 88.075-38.264Q88.126-38.204 88.216-38.204L88.216-37.907M94.665-37.907L91.872-37.907L91.872-38.204Q92.934-38.204 92.934-38.466L92.934-42.634Q92.505-42.419 91.825-42.419L91.825-42.716Q92.844-42.716 93.360-43.227L93.505-43.227Q93.579-43.208 93.598-43.130L93.598-38.466Q93.598-38.204 94.665-38.204L94.665-37.907M97.438-37.739Q96.735-37.739 96.335-38.139Q95.934-38.540 95.790-39.149Q95.645-39.759 95.645-40.458Q95.645-40.981 95.716-41.444Q95.786-41.907 95.979-42.319Q96.173-42.731 96.530-42.979Q96.887-43.227 97.438-43.227Q97.989-43.227 98.346-42.979Q98.704-42.731 98.895-42.321Q99.087-41.911 99.157-41.442Q99.227-40.973 99.227-40.458Q99.227-39.759 99.085-39.151Q98.942-38.544 98.542-38.141Q98.141-37.739 97.438-37.739M97.438-37.997Q97.911-37.997 98.143-38.432Q98.376-38.868 98.430-39.407Q98.485-39.946 98.485-40.587Q98.485-41.583 98.302-42.276Q98.118-42.969 97.438-42.969Q97.071-42.969 96.850-42.731Q96.630-42.493 96.534-42.136Q96.438-41.778 96.413-41.407Q96.387-41.036 96.387-40.587Q96.387-39.946 96.442-39.407Q96.497-38.868 96.729-38.432Q96.962-37.997 97.438-37.997M101.684-37.739Q100.981-37.739 100.581-38.139Q100.180-38.540 100.036-39.149Q99.891-39.759 99.891-40.458Q99.891-40.981 99.962-41.444Q100.032-41.907 100.225-42.319Q100.419-42.731 100.776-42.979Q101.134-43.227 101.684-43.227Q102.235-43.227 102.593-42.979Q102.950-42.731 103.141-42.321Q103.333-41.911 103.403-41.442Q103.473-40.973 103.473-40.458Q103.473-39.759 103.331-39.151Q103.188-38.544 102.788-38.141Q102.387-37.739 101.684-37.739M101.684-37.997Q102.157-37.997 102.389-38.432Q102.622-38.868 102.677-39.407Q102.731-39.946 102.731-40.587Q102.731-41.583 102.548-42.276Q102.364-42.969 101.684-42.969Q101.317-42.969 101.096-42.731Q100.876-42.493 100.780-42.136Q100.684-41.778 100.659-41.407Q100.634-41.036 100.634-40.587Q100.634-39.946 100.688-39.407Q100.743-38.868 100.975-38.432Q101.208-37.997 101.684-37.997\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-1.772h236.157\"\u002F>\u003Cg transform=\"translate(-37.008 50.761)\">\u003Cpath d=\"M16.201-37.907L11.798-37.907L11.798-38.187Q12.520-38.187 12.520-38.396L12.520-42.197Q12.520-42.408 11.798-42.408L11.798-42.689L16.088-42.689L16.296-41.052L16.033-41.052Q15.975-41.523 15.873-41.788Q15.770-42.053 15.586-42.186Q15.401-42.320 15.129-42.364Q14.857-42.408 14.358-42.408L13.576-42.408Q13.388-42.408 13.299-42.374Q13.210-42.340 13.210-42.197L13.210-40.532L13.784-40.532Q14.174-40.532 14.357-40.583Q14.540-40.635 14.622-40.807Q14.704-40.980 14.704-41.352L14.967-41.352L14.967-39.431L14.704-39.431Q14.704-39.804 14.622-39.977Q14.540-40.149 14.357-40.200Q14.174-40.252 13.784-40.252L13.210-40.252L13.210-38.396Q13.210-38.256 13.299-38.221Q13.388-38.187 13.576-38.187L14.423-38.187Q14.953-38.187 15.263-38.256Q15.572-38.324 15.760-38.491Q15.948-38.659 16.055-38.961Q16.163-39.264 16.249-39.777L16.515-39.777L16.201-37.907M18.286-37.907L16.963-37.907L16.963-38.187Q17.523-38.187 17.903-38.587L18.617-39.384L17.705-40.433Q17.568-40.580 17.419-40.612Q17.271-40.645 17.004-40.645L17.004-40.925L18.504-40.925L18.504-40.645Q18.313-40.645 18.313-40.511Q18.313-40.481 18.344-40.433L18.939-39.749L19.379-40.245Q19.492-40.375 19.492-40.491Q19.492-40.553 19.455-40.599Q19.417-40.645 19.359-40.645L19.359-40.925L20.675-40.925L20.675-40.645Q20.114-40.645 19.735-40.245L19.113-39.544L20.107-38.396Q20.207-38.297 20.307-38.252Q20.408-38.208 20.519-38.198Q20.630-38.187 20.808-38.187L20.808-37.907L19.315-37.907L19.315-38.187Q19.379-38.187 19.439-38.221Q19.499-38.256 19.499-38.321Q19.499-38.368 19.468-38.396L18.792-39.182L18.258-38.587Q18.146-38.457 18.146-38.341Q18.146-38.276 18.187-38.232Q18.228-38.187 18.286-38.187L18.286-37.907M21.263-39.442Q21.263-39.763 21.388-40.052Q21.512-40.341 21.738-40.564Q21.963-40.788 22.259-40.908Q22.555-41.028 22.873-41.028Q23.201-41.028 23.462-40.928Q23.724-40.829 23.900-40.647Q24.076-40.464 24.170-40.206Q24.264-39.948 24.264-39.616Q24.264-39.524 24.182-39.503L21.926-39.503L21.926-39.442Q21.926-38.854 22.210-38.471Q22.493-38.088 23.061-38.088Q23.382-38.088 23.650-38.281Q23.919-38.474 24.007-38.789Q24.014-38.830 24.089-38.844L24.182-38.844Q24.264-38.820 24.264-38.748Q24.264-38.741 24.257-38.714Q24.144-38.317 23.773-38.078Q23.402-37.839 22.979-37.839Q22.541-37.839 22.141-38.047Q21.741-38.256 21.502-38.623Q21.263-38.990 21.263-39.442M21.933-39.712L23.748-39.712Q23.748-39.989 23.650-40.241Q23.553-40.494 23.355-40.650Q23.156-40.805 22.873-40.805Q22.596-40.805 22.382-40.647Q22.169-40.488 22.051-40.233Q21.933-39.978 21.933-39.712M24.852-39.418Q24.852-39.746 24.987-40.047Q25.122-40.347 25.357-40.568Q25.593-40.788 25.898-40.908Q26.202-41.028 26.526-41.028Q27.032-41.028 27.381-40.925Q27.730-40.823 27.730-40.447Q27.730-40.300 27.632-40.199Q27.535-40.098 27.388-40.098Q27.234-40.098 27.135-40.197Q27.036-40.296 27.036-40.447Q27.036-40.635 27.176-40.727Q26.974-40.778 26.533-40.778Q26.178-40.778 25.949-40.582Q25.720-40.385 25.619-40.076Q25.518-39.766 25.518-39.418Q25.518-39.069 25.645-38.763Q25.771-38.457 26.026-38.273Q26.280-38.088 26.636-38.088Q26.858-38.088 27.043-38.172Q27.227-38.256 27.362-38.411Q27.497-38.567 27.555-38.775Q27.569-38.830 27.624-38.830L27.736-38.830Q27.767-38.830 27.789-38.806Q27.812-38.782 27.812-38.748L27.812-38.727Q27.726-38.440 27.538-38.242Q27.350-38.044 27.085-37.941Q26.820-37.839 26.526-37.839Q26.096-37.839 25.708-38.045Q25.320-38.252 25.086-38.615Q24.852-38.977 24.852-39.418M28.974-38.741L28.974-40.245Q28.974-40.515 28.866-40.576Q28.758-40.638 28.447-40.638L28.447-40.918L29.555-40.993L29.555-38.761L29.555-38.741Q29.555-38.461 29.606-38.317Q29.657-38.174 29.799-38.117Q29.941-38.061 30.228-38.061Q30.481-38.061 30.686-38.201Q30.891-38.341 31.007-38.567Q31.124-38.792 31.124-39.042L31.124-40.245Q31.124-40.515 31.016-40.576Q30.908-40.638 30.597-40.638L30.597-40.918L31.705-40.993L31.705-38.580Q31.705-38.389 31.758-38.307Q31.811-38.225 31.911-38.206Q32.012-38.187 32.228-38.187L32.228-37.907L31.151-37.839L31.151-38.403Q31.042-38.221 30.896-38.098Q30.751-37.975 30.565-37.907Q30.378-37.839 30.177-37.839Q28.974-37.839 28.974-38.741M33.342-38.748L33.342-40.645L32.703-40.645L32.703-40.867Q33.021-40.867 33.238-41.077Q33.455-41.287 33.555-41.597Q33.656-41.906 33.656-42.214L33.923-42.214L33.923-40.925L35-40.925L35-40.645L33.923-40.645L33.923-38.761Q33.923-38.485 34.027-38.286Q34.131-38.088 34.391-38.088Q34.548-38.088 34.654-38.192Q34.760-38.297 34.810-38.450Q34.859-38.604 34.859-38.761L34.859-39.175L35.126-39.175L35.126-38.748Q35.126-38.522 35.027-38.312Q34.928-38.102 34.743-37.970Q34.559-37.839 34.330-37.839Q33.892-37.839 33.617-38.076Q33.342-38.314 33.342-38.748M35.895-39.442Q35.895-39.763 36.020-40.052Q36.145-40.341 36.370-40.564Q36.596-40.788 36.891-40.908Q37.187-41.028 37.505-41.028Q37.833-41.028 38.095-40.928Q38.356-40.829 38.532-40.647Q38.708-40.464 38.802-40.206Q38.896-39.948 38.896-39.616Q38.896-39.524 38.814-39.503L36.558-39.503L36.558-39.442Q36.558-38.854 36.842-38.471Q37.126-38.088 37.693-38.088Q38.014-38.088 38.283-38.281Q38.551-38.474 38.640-38.789Q38.647-38.830 38.722-38.844L38.814-38.844Q38.896-38.820 38.896-38.748Q38.896-38.741 38.889-38.714Q38.776-38.317 38.406-38.078Q38.035-37.839 37.611-37.839Q37.173-37.839 36.773-38.047Q36.374-38.256 36.134-38.623Q35.895-38.990 35.895-39.442M36.565-39.712L38.380-39.712Q38.380-39.989 38.283-40.241Q38.185-40.494 37.987-40.650Q37.789-40.805 37.505-40.805Q37.228-40.805 37.014-40.647Q36.801-40.488 36.683-40.233Q36.565-39.978 36.565-39.712\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(6.378 51.147)\">\u003Cpath d=\"M13.458-37.938L12.235-40.794Q12.153-40.969 12.009-41.014Q11.864-41.059 11.595-41.059L11.595-41.356L13.306-41.356L13.306-41.059Q12.884-41.059 12.884-40.876Q12.884-40.841 12.899-40.794L13.845-38.602L14.685-40.579Q14.724-40.657 14.724-40.747Q14.724-40.887 14.618-40.973Q14.513-41.059 14.372-41.059L14.372-41.356L15.724-41.356L15.724-41.059Q15.200-41.059 14.985-40.579L13.860-37.938Q13.798-37.829 13.692-37.829L13.626-37.829Q13.513-37.829 13.458-37.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 51.147)\">\u003Cpath d=\"M15.769-38.739Q15.769-39.223 16.171-39.518Q16.574-39.813 17.124-39.932Q17.675-40.052 18.167-40.052L18.167-40.341Q18.167-40.567 18.052-40.774Q17.937-40.981 17.740-41.100Q17.542-41.219 17.312-41.219Q16.886-41.219 16.601-41.114Q16.671-41.087 16.718-41.032Q16.765-40.977 16.790-40.907Q16.816-40.837 16.816-40.762Q16.816-40.657 16.765-40.565Q16.714-40.473 16.622-40.423Q16.531-40.372 16.425-40.372Q16.320-40.372 16.228-40.423Q16.136-40.473 16.085-40.565Q16.035-40.657 16.035-40.762Q16.035-41.180 16.423-41.327Q16.812-41.473 17.312-41.473Q17.644-41.473 17.997-41.343Q18.351-41.212 18.579-40.958Q18.808-40.704 18.808-40.356L18.808-38.555Q18.808-38.423 18.880-38.313Q18.953-38.204 19.081-38.204Q19.206-38.204 19.275-38.309Q19.343-38.415 19.343-38.555L19.343-39.067L19.624-39.067L19.624-38.555Q19.624-38.352 19.507-38.194Q19.390-38.036 19.208-37.952Q19.027-37.868 18.824-37.868Q18.593-37.868 18.441-38.040Q18.288-38.212 18.257-38.442Q18.097-38.161 17.788-37.995Q17.480-37.829 17.128-37.829Q16.617-37.829 16.193-38.052Q15.769-38.274 15.769-38.739M16.456-38.739Q16.456-38.454 16.683-38.268Q16.910-38.083 17.203-38.083Q17.449-38.083 17.673-38.200Q17.898-38.317 18.033-38.520Q18.167-38.723 18.167-38.977L18.167-39.809Q17.902-39.809 17.617-39.755Q17.331-39.700 17.060-39.571Q16.788-39.442 16.622-39.235Q16.456-39.028 16.456-38.739M21.831-37.907L19.999-37.907L19.999-38.204Q20.273-38.204 20.441-38.251Q20.609-38.298 20.609-38.466L20.609-42.626Q20.609-42.841 20.546-42.936Q20.484-43.032 20.365-43.053Q20.245-43.075 19.999-43.075L19.999-43.372L21.222-43.458L21.222-38.466Q21.222-38.298 21.390-38.251Q21.558-38.204 21.831-38.204L21.831-37.907M27.222-37.907L22.374-37.907L22.374-38.204Q22.695-38.204 22.939-38.251Q23.183-38.298 23.183-38.466L23.183-42.809Q23.183-42.981 22.939-43.028Q22.695-43.075 22.374-43.075L22.374-43.372L27.109-43.372L27.343-41.524L27.062-41.524Q26.980-42.219 26.804-42.540Q26.628-42.860 26.281-42.968Q25.933-43.075 25.214-43.075L24.351-43.075Q24.132-43.075 24.040-43.032Q23.949-42.989 23.949-42.809L23.949-40.891L24.581-40.891Q25.007-40.891 25.214-40.954Q25.421-41.016 25.509-41.212Q25.597-41.407 25.597-41.829L25.878-41.829L25.878-39.661L25.597-39.661Q25.597-40.083 25.509-40.276Q25.421-40.469 25.214-40.532Q25.007-40.594 24.581-40.594L23.949-40.594L23.949-38.466Q23.949-38.294 24.040-38.249Q24.132-38.204 24.351-38.204L25.277-38.204Q25.859-38.204 26.212-38.286Q26.566-38.368 26.771-38.565Q26.976-38.762 27.089-39.100Q27.203-39.438 27.296-40.020L27.574-40.020L27.222-37.907M33.777-38.884L28.464-38.884Q28.386-38.891 28.337-38.940Q28.288-38.989 28.288-39.067Q28.288-39.137 28.335-39.188Q28.382-39.239 28.464-39.251L33.777-39.251Q33.851-39.239 33.898-39.188Q33.945-39.137 33.945-39.067Q33.945-38.989 33.896-38.940Q33.847-38.891 33.777-38.884M33.777-40.571L28.464-40.571Q28.386-40.579 28.337-40.628Q28.288-40.677 28.288-40.755Q28.288-40.825 28.335-40.876Q28.382-40.927 28.464-40.938L33.777-40.938Q33.851-40.927 33.898-40.876Q33.945-40.825 33.945-40.755Q33.945-40.677 33.896-40.628Q33.847-40.579 33.777-40.571M36.546-37.739Q35.843-37.739 35.443-38.139Q35.042-38.540 34.898-39.149Q34.753-39.759 34.753-40.458Q34.753-40.981 34.824-41.444Q34.894-41.907 35.087-42.319Q35.281-42.731 35.638-42.979Q35.995-43.227 36.546-43.227Q37.097-43.227 37.454-42.979Q37.812-42.731 38.003-42.321Q38.195-41.911 38.265-41.442Q38.335-40.973 38.335-40.458Q38.335-39.759 38.193-39.151Q38.050-38.544 37.650-38.141Q37.249-37.739 36.546-37.739M36.546-37.997Q37.019-37.997 37.251-38.432Q37.484-38.868 37.538-39.407Q37.593-39.946 37.593-40.587Q37.593-41.583 37.410-42.276Q37.226-42.969 36.546-42.969Q36.179-42.969 35.958-42.731Q35.738-42.493 35.642-42.136Q35.546-41.778 35.521-41.407Q35.495-41.036 35.495-40.587Q35.495-39.946 35.550-39.407Q35.605-38.868 35.837-38.432Q36.070-37.997 36.546-37.997M40.296-37.907L38.800-37.907L38.800-38.204Q39.433-38.204 39.855-38.684L40.624-39.594L39.632-40.794Q39.476-40.973 39.314-41.016Q39.152-41.059 38.847-41.059L38.847-41.356L40.535-41.356L40.535-41.059Q40.441-41.059 40.365-41.016Q40.288-40.973 40.288-40.884Q40.288-40.841 40.320-40.794L40.976-40.005L41.456-40.579Q41.574-40.716 41.574-40.852Q41.574-40.942 41.523-41.001Q41.472-41.059 41.390-41.059L41.390-41.356L42.878-41.356L42.878-41.059Q42.242-41.059 41.831-40.579L41.152-39.778L42.238-38.466Q42.398-38.290 42.558-38.247Q42.718-38.204 43.023-38.204L43.023-37.907L41.335-37.907L41.335-38.204Q41.425-38.204 41.503-38.247Q41.581-38.290 41.581-38.380Q41.581-38.403 41.550-38.466L40.808-39.372L40.222-38.684Q40.105-38.548 40.105-38.411Q40.105-38.325 40.156-38.264Q40.206-38.204 40.296-38.204L40.296-37.907M46.745-37.907L43.953-37.907L43.953-38.204Q45.015-38.204 45.015-38.466L45.015-42.634Q44.585-42.419 43.906-42.419L43.906-42.716Q44.925-42.716 45.441-43.227L45.585-43.227Q45.660-43.208 45.679-43.130L45.679-38.466Q45.679-38.204 46.745-38.204L46.745-37.907M49.519-37.739Q48.816-37.739 48.415-38.139Q48.015-38.540 47.870-39.149Q47.726-39.759 47.726-40.458Q47.726-40.981 47.796-41.444Q47.867-41.907 48.060-42.319Q48.253-42.731 48.611-42.979Q48.968-43.227 49.519-43.227Q50.070-43.227 50.427-42.979Q50.785-42.731 50.976-42.321Q51.167-41.911 51.238-41.442Q51.308-40.973 51.308-40.458Q51.308-39.759 51.165-39.151Q51.023-38.544 50.622-38.141Q50.222-37.739 49.519-37.739M49.519-37.997Q49.992-37.997 50.224-38.432Q50.456-38.868 50.511-39.407Q50.566-39.946 50.566-40.587Q50.566-41.583 50.382-42.276Q50.199-42.969 49.519-42.969Q49.152-42.969 48.931-42.731Q48.710-42.493 48.615-42.136Q48.519-41.778 48.494-41.407Q48.468-41.036 48.468-40.587Q48.468-39.946 48.523-39.407Q48.578-38.868 48.810-38.432Q49.042-37.997 49.519-37.997M53.765-37.739Q53.062-37.739 52.662-38.139Q52.261-38.540 52.117-39.149Q51.972-39.759 51.972-40.458Q51.972-40.981 52.042-41.444Q52.113-41.907 52.306-42.319Q52.499-42.731 52.857-42.979Q53.214-43.227 53.765-43.227Q54.316-43.227 54.673-42.979Q55.031-42.731 55.222-42.321Q55.413-41.911 55.484-41.442Q55.554-40.973 55.554-40.458Q55.554-39.759 55.412-39.151Q55.269-38.544 54.869-38.141Q54.468-37.739 53.765-37.739M53.765-37.997Q54.238-37.997 54.470-38.432Q54.703-38.868 54.757-39.407Q54.812-39.946 54.812-40.587Q54.812-41.583 54.628-42.276Q54.445-42.969 53.765-42.969Q53.398-42.969 53.177-42.731Q52.956-42.493 52.861-42.136Q52.765-41.778 52.740-41.407Q52.714-41.036 52.714-40.587Q52.714-39.946 52.769-39.407Q52.824-38.868 53.056-38.432Q53.288-37.997 53.765-37.997\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 51.147)\">\u003Cpath d=\"M61.108-39.356L58.854-39.356L58.854-39.907L61.108-39.907\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 51.147)\">\u003Cpath d=\"M64.775-39.130Q64.775-39.626 65.101-39.991Q65.427-40.356 65.950-40.602L65.681-40.762Q65.384-40.946 65.200-41.241Q65.017-41.536 65.017-41.876Q65.017-42.270 65.236-42.581Q65.454-42.891 65.808-43.059Q66.161-43.227 66.544-43.227Q66.818-43.227 67.091-43.149Q67.364-43.071 67.581-42.923Q67.798-42.774 67.935-42.548Q68.071-42.321 68.071-42.028Q68.071-41.622 67.802-41.315Q67.532-41.009 67.111-40.794L67.560-40.524Q67.778-40.387 67.946-40.194Q68.114-40.001 68.212-39.762Q68.310-39.524 68.310-39.266Q68.310-38.927 68.159-38.639Q68.009-38.352 67.763-38.155Q67.517-37.958 67.193-37.848Q66.868-37.739 66.544-37.739Q66.114-37.739 65.708-37.901Q65.302-38.063 65.038-38.382Q64.775-38.700 64.775-39.130M65.263-39.130Q65.263-38.645 65.653-38.329Q66.044-38.012 66.544-38.012Q66.837-38.012 67.136-38.124Q67.435-38.235 67.628-38.454Q67.821-38.673 67.821-38.985Q67.821-39.216 67.681-39.427Q67.540-39.637 67.333-39.755L66.224-40.434Q65.806-40.231 65.534-39.895Q65.263-39.559 65.263-39.130M65.849-41.563L66.837-40.962Q67.185-41.145 67.411-41.415Q67.638-41.684 67.638-42.028Q67.638-42.247 67.546-42.423Q67.454-42.598 67.300-42.721Q67.146-42.844 66.944-42.915Q66.743-42.985 66.544-42.985Q66.138-42.985 65.792-42.774Q65.446-42.563 65.446-42.180Q65.446-41.997 65.558-41.835Q65.669-41.673 65.849-41.563M74.630-38.884L69.318-38.884Q69.239-38.891 69.191-38.940Q69.142-38.989 69.142-39.067Q69.142-39.137 69.189-39.188Q69.236-39.239 69.318-39.251L74.630-39.251Q74.704-39.239 74.751-39.188Q74.798-39.137 74.798-39.067Q74.798-38.989 74.749-38.940Q74.700-38.891 74.630-38.884M74.630-40.571L69.318-40.571Q69.239-40.579 69.191-40.628Q69.142-40.677 69.142-40.755Q69.142-40.825 69.189-40.876Q69.236-40.927 69.318-40.938L74.630-40.938Q74.704-40.927 74.751-40.876Q74.798-40.825 74.798-40.755Q74.798-40.677 74.749-40.628Q74.700-40.579 74.630-40.571M77.400-37.739Q76.696-37.739 76.296-38.139Q75.896-38.540 75.751-39.149Q75.607-39.759 75.607-40.458Q75.607-40.981 75.677-41.444Q75.747-41.907 75.941-42.319Q76.134-42.731 76.491-42.979Q76.849-43.227 77.400-43.227Q77.950-43.227 78.308-42.979Q78.665-42.731 78.857-42.321Q79.048-41.911 79.118-41.442Q79.189-40.973 79.189-40.458Q79.189-39.759 79.046-39.151Q78.903-38.544 78.503-38.141Q78.103-37.739 77.400-37.739M77.400-37.997Q77.872-37.997 78.105-38.432Q78.337-38.868 78.392-39.407Q78.446-39.946 78.446-40.587Q78.446-41.583 78.263-42.276Q78.079-42.969 77.400-42.969Q77.032-42.969 76.812-42.731Q76.591-42.493 76.495-42.136Q76.400-41.778 76.374-41.407Q76.349-41.036 76.349-40.587Q76.349-39.946 76.403-39.407Q76.458-38.868 76.691-38.432Q76.923-37.997 77.400-37.997M81.150-37.907L79.653-37.907L79.653-38.204Q80.286-38.204 80.708-38.684L81.478-39.594L80.486-40.794Q80.329-40.973 80.167-41.016Q80.005-41.059 79.700-41.059L79.700-41.356L81.388-41.356L81.388-41.059Q81.294-41.059 81.218-41.016Q81.142-40.973 81.142-40.884Q81.142-40.841 81.173-40.794L81.829-40.005L82.310-40.579Q82.427-40.716 82.427-40.852Q82.427-40.942 82.376-41.001Q82.325-41.059 82.243-41.059L82.243-41.356L83.732-41.356L83.732-41.059Q83.095-41.059 82.685-40.579L82.005-39.778L83.091-38.466Q83.251-38.290 83.411-38.247Q83.571-38.204 83.876-38.204L83.876-37.907L82.189-37.907L82.189-38.204Q82.278-38.204 82.357-38.247Q82.435-38.290 82.435-38.380Q82.435-38.403 82.403-38.466L81.661-39.372L81.075-38.684Q80.958-38.548 80.958-38.411Q80.958-38.325 81.009-38.264Q81.060-38.204 81.150-38.204L81.150-37.907M86.310-37.907L84.325-37.907L84.325-38.204Q84.599-38.204 84.767-38.251Q84.935-38.298 84.935-38.466L84.935-41.059L84.294-41.059L84.294-41.356L84.935-41.356L84.935-42.290Q84.935-42.555 85.052-42.792Q85.169-43.028 85.362-43.192Q85.556-43.356 85.804-43.448Q86.052-43.540 86.318-43.540Q86.603-43.540 86.827-43.382Q87.052-43.223 87.052-42.946Q87.052-42.790 86.946-42.680Q86.841-42.571 86.677-42.571Q86.521-42.571 86.411-42.680Q86.302-42.790 86.302-42.946Q86.302-43.153 86.462-43.259Q86.364-43.282 86.271-43.282Q86.040-43.282 85.868-43.126Q85.696-42.969 85.611-42.733Q85.525-42.497 85.525-42.274L85.525-41.356L86.493-41.356L86.493-41.059L85.548-41.059L85.548-38.466Q85.548-38.298 85.775-38.251Q86.001-38.204 86.310-38.204L86.310-37.907M86.950-39.130Q86.950-39.626 87.277-39.991Q87.603-40.356 88.126-40.602L87.857-40.762Q87.560-40.946 87.376-41.241Q87.193-41.536 87.193-41.876Q87.193-42.270 87.411-42.581Q87.630-42.891 87.984-43.059Q88.337-43.227 88.720-43.227Q88.993-43.227 89.267-43.149Q89.540-43.071 89.757-42.923Q89.974-42.774 90.111-42.548Q90.247-42.321 90.247-42.028Q90.247-41.622 89.978-41.315Q89.708-41.009 89.286-40.794L89.736-40.524Q89.954-40.387 90.122-40.194Q90.290-40.001 90.388-39.762Q90.486-39.524 90.486-39.266Q90.486-38.927 90.335-38.639Q90.185-38.352 89.939-38.155Q89.693-37.958 89.368-37.848Q89.044-37.739 88.720-37.739Q88.290-37.739 87.884-37.901Q87.478-38.063 87.214-38.382Q86.950-38.700 86.950-39.130M87.439-39.130Q87.439-38.645 87.829-38.329Q88.220-38.012 88.720-38.012Q89.013-38.012 89.312-38.124Q89.611-38.235 89.804-38.454Q89.997-38.673 89.997-38.985Q89.997-39.216 89.857-39.427Q89.716-39.637 89.509-39.755L88.400-40.434Q87.982-40.231 87.710-39.895Q87.439-39.559 87.439-39.130M88.025-41.563L89.013-40.962Q89.361-41.145 89.587-41.415Q89.814-41.684 89.814-42.028Q89.814-42.247 89.722-42.423Q89.630-42.598 89.476-42.721Q89.321-42.844 89.120-42.915Q88.919-42.985 88.720-42.985Q88.314-42.985 87.968-42.774Q87.622-42.563 87.622-42.180Q87.622-41.997 87.734-41.835Q87.845-41.673 88.025-41.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 22.413h236.157\"\u002F>\u003Cg transform=\"translate(-37.856 74.266)\">\u003Cpath d=\"M13.576-37.907L11.839-37.907L11.839-38.187Q12.561-38.187 12.561-38.587L12.561-42.197Q12.561-42.408 11.839-42.408L11.839-42.689L13.196-42.689Q13.292-42.689 13.343-42.590L15.018-38.615L16.690-42.590Q16.737-42.689 16.836-42.689L18.187-42.689L18.187-42.408Q17.465-42.408 17.465-42.197L17.465-38.396Q17.465-38.187 18.187-38.187L18.187-37.907L16.129-37.907L16.129-38.187Q16.850-38.187 16.850-38.396L16.850-42.408L14.998-38.006Q14.950-37.907 14.840-37.907Q14.728-37.907 14.680-38.006L12.855-42.337L12.855-38.587Q12.855-38.187 13.576-38.187L13.576-37.907M18.880-39.442Q18.880-39.763 19.005-40.052Q19.130-40.341 19.356-40.564Q19.581-40.788 19.877-40.908Q20.172-41.028 20.490-41.028Q20.818-41.028 21.080-40.928Q21.341-40.829 21.517-40.647Q21.693-40.464 21.787-40.206Q21.881-39.948 21.881-39.616Q21.881-39.524 21.799-39.503L19.544-39.503L19.544-39.442Q19.544-38.854 19.827-38.471Q20.111-38.088 20.678-38.088Q21-38.088 21.268-38.281Q21.536-38.474 21.625-38.789Q21.632-38.830 21.707-38.844L21.799-38.844Q21.881-38.820 21.881-38.748Q21.881-38.741 21.875-38.714Q21.762-38.317 21.391-38.078Q21.020-37.839 20.596-37.839Q20.159-37.839 19.759-38.047Q19.359-38.256 19.120-38.623Q18.880-38.990 18.880-39.442M19.550-39.712L21.365-39.712Q21.365-39.989 21.268-40.241Q21.170-40.494 20.972-40.650Q20.774-40.805 20.490-40.805Q20.213-40.805 20-40.647Q19.786-40.488 19.668-40.233Q19.550-39.978 19.550-39.712M24.151-37.907L22.517-37.907L22.517-38.187Q22.746-38.187 22.895-38.221Q23.044-38.256 23.044-38.396L23.044-40.245Q23.044-40.515 22.936-40.576Q22.828-40.638 22.517-40.638L22.517-40.918L23.577-40.993L23.577-40.344Q23.748-40.652 24.052-40.823Q24.356-40.993 24.701-40.993Q25.101-40.993 25.378-40.853Q25.655-40.713 25.740-40.365Q25.908-40.658 26.207-40.826Q26.506-40.993 26.851-40.993Q27.357-40.993 27.641-40.770Q27.924-40.546 27.924-40.050L27.924-38.396Q27.924-38.259 28.073-38.223Q28.222-38.187 28.447-38.187L28.447-37.907L26.817-37.907L26.817-38.187Q27.043-38.187 27.193-38.223Q27.343-38.259 27.343-38.396L27.343-40.036Q27.343-40.371 27.224-40.571Q27.104-40.771 26.790-40.771Q26.520-40.771 26.285-40.635Q26.051-40.498 25.913-40.264Q25.774-40.030 25.774-39.756L25.774-38.396Q25.774-38.259 25.923-38.223Q26.072-38.187 26.297-38.187L26.297-37.907L24.667-37.907L24.667-38.187Q24.896-38.187 25.045-38.221Q25.193-38.256 25.193-38.396L25.193-40.036Q25.193-40.371 25.074-40.571Q24.954-40.771 24.640-40.771Q24.370-40.771 24.136-40.635Q23.901-40.498 23.763-40.264Q23.625-40.030 23.625-39.756L23.625-38.396Q23.625-38.259 23.775-38.223Q23.925-38.187 24.151-38.187L24.151-37.907M28.994-39.390Q28.994-39.732 29.129-40.031Q29.264-40.330 29.503-40.554Q29.743-40.778 30.061-40.903Q30.378-41.028 30.710-41.028Q31.154-41.028 31.554-40.812Q31.954-40.597 32.188-40.219Q32.422-39.842 32.422-39.390Q32.422-39.049 32.281-38.765Q32.139-38.481 31.894-38.274Q31.650-38.068 31.341-37.953Q31.031-37.839 30.710-37.839Q30.279-37.839 29.878-38.040Q29.476-38.242 29.235-38.594Q28.994-38.946 28.994-39.390M30.710-38.088Q31.312-38.088 31.535-38.466Q31.759-38.844 31.759-39.476Q31.759-40.088 31.525-40.447Q31.291-40.805 30.710-40.805Q29.657-40.805 29.657-39.476Q29.657-38.844 29.883-38.466Q30.108-38.088 30.710-38.088M34.767-37.907L33.031-37.907L33.031-38.187Q33.260-38.187 33.409-38.221Q33.557-38.256 33.557-38.396L33.557-40.245Q33.557-40.515 33.450-40.576Q33.342-40.638 33.031-40.638L33.031-40.918L34.060-40.993L34.060-40.286Q34.190-40.594 34.432-40.793Q34.675-40.993 34.993-40.993Q35.211-40.993 35.382-40.869Q35.553-40.744 35.553-40.532Q35.553-40.395 35.454-40.296Q35.355-40.197 35.222-40.197Q35.085-40.197 34.986-40.296Q34.887-40.395 34.887-40.532Q34.887-40.672 34.986-40.771Q34.695-40.771 34.495-40.575Q34.295-40.378 34.203-40.084Q34.111-39.790 34.111-39.510L34.111-38.396Q34.111-38.187 34.767-38.187L34.767-37.907M36.473-36.772Q36.603-36.704 36.739-36.704Q36.910-36.704 37.061-36.793Q37.211-36.882 37.322-37.027Q37.433-37.172 37.512-37.340L37.775-37.907L36.606-40.433Q36.531-40.580 36.401-40.612Q36.271-40.645 36.039-40.645L36.039-40.925L37.560-40.925L37.560-40.645Q37.211-40.645 37.211-40.498Q37.214-40.477 37.216-40.460Q37.218-40.443 37.218-40.433L38.076-38.574L38.848-40.245Q38.882-40.313 38.882-40.392Q38.882-40.505 38.799-40.575Q38.715-40.645 38.602-40.645L38.602-40.925L39.798-40.925L39.798-40.645Q39.580-40.645 39.407-40.541Q39.234-40.436 39.142-40.245L37.806-37.340Q37.635-36.970 37.365-36.724Q37.095-36.478 36.739-36.478Q36.469-36.478 36.251-36.644Q36.032-36.810 36.032-37.073Q36.032-37.210 36.124-37.299Q36.216-37.387 36.356-37.387Q36.493-37.387 36.582-37.299Q36.671-37.210 36.671-37.073Q36.671-36.970 36.618-36.892Q36.565-36.813 36.473-36.772\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\">\u003Cg transform=\"translate(6.378 74.555)\">\u003Cpath d=\"M13.657-37.907L11.939-37.907Q11.899-37.907 11.872-37.948Q11.845-37.989 11.845-38.036L11.868-38.137Q11.876-38.188 11.962-38.204Q12.692-38.204 12.817-38.731L13.845-42.829Q13.868-42.899 13.868-42.962Q13.868-43.024 13.802-43.044Q13.657-43.075 13.235-43.075Q13.130-43.106 13.130-43.204L13.161-43.305Q13.173-43.352 13.251-43.372L14.649-43.372Q14.708-43.372 14.745-43.343Q14.782-43.313 14.786-43.259L15.497-38.684L18.497-43.259Q18.575-43.372 18.692-43.372L20.036-43.372Q20.083-43.360 20.110-43.329Q20.138-43.298 20.138-43.251L20.114-43.145Q20.095-43.091 20.021-43.075Q19.579-43.075 19.419-43.036Q19.271-43.001 19.212-42.770L18.130-38.450Q18.114-38.356 18.114-38.313Q18.114-38.255 18.181-38.235Q18.321-38.204 18.747-38.204Q18.845-38.177 18.845-38.083L18.817-37.977Q18.810-37.927 18.732-37.907L16.649-37.907Q16.610-37.907 16.583-37.948Q16.556-37.989 16.556-38.036L16.579-38.137Q16.587-38.188 16.677-38.204Q17.114-38.204 17.273-38.243Q17.431-38.282 17.474-38.509L18.610-43.052L15.314-38.020Q15.247-37.907 15.114-37.907Q14.982-37.907 14.970-38.020L14.196-42.985L13.114-38.677Q13.099-38.575 13.099-38.524Q13.099-38.325 13.263-38.264Q13.427-38.204 13.677-38.204Q13.771-38.177 13.771-38.083L13.747-37.977Q13.739-37.927 13.657-37.907\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 74.555)\">\u003Cpath d=\"M19.960-37.719Q19.960-38.106 20.221-38.377Q20.481-38.648 20.883-38.817L20.710-38.914Q20.461-39.061 20.307-39.279Q20.153-39.497 20.153-39.767Q20.153-40.077 20.339-40.310Q20.525-40.543 20.818-40.665Q21.111-40.786 21.413-40.786Q21.703-40.786 21.995-40.688Q22.286-40.590 22.479-40.385Q22.673-40.180 22.673-39.881Q22.673-39.562 22.463-39.342Q22.254-39.122 21.911-38.961L22.233-38.788Q22.515-38.624 22.689-38.378Q22.863-38.132 22.863-37.827Q22.863-37.464 22.648-37.202Q22.433-36.940 22.096-36.805Q21.759-36.670 21.413-36.670Q21.070-36.670 20.736-36.784Q20.402-36.899 20.181-37.134Q19.960-37.370 19.960-37.719M20.367-37.725Q20.367-37.350 20.697-37.130Q21.026-36.910 21.413-36.910Q21.647-36.910 21.888-36.985Q22.128-37.060 22.292-37.218Q22.456-37.376 22.456-37.619Q22.456-37.789 22.348-37.928Q22.239-38.067 22.078-38.158L21.141-38.674Q20.815-38.536 20.591-38.290Q20.367-38.044 20.367-37.725M20.789-39.579L21.665-39.099Q22.312-39.415 22.312-39.881Q22.312-40.095 22.176-40.252Q22.040-40.408 21.833-40.486Q21.627-40.564 21.413-40.564Q21.091-40.564 20.801-40.424Q20.511-40.285 20.511-39.995Q20.511-39.764 20.789-39.579\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.180\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 74.555)\">\u003Cpath d=\"M25.917-35.907L24.741-35.907L24.741-43.907L25.917-43.907L25.917-43.540L25.108-43.540L25.108-36.274L25.917-36.274\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 74.555)\">\u003Cpath d=\"M28.231-37.829Q27.797-37.829 27.465-38.067Q27.133-38.305 26.913-38.694Q26.692-39.083 26.585-39.520Q26.477-39.958 26.477-40.356Q26.477-40.747 26.587-41.190Q26.696-41.634 26.913-42.014Q27.130-42.395 27.464-42.636Q27.797-42.876 28.231-42.876Q28.786-42.876 29.186-42.477Q29.587-42.079 29.784-41.493Q29.981-40.907 29.981-40.356Q29.981-39.802 29.784-39.214Q29.587-38.626 29.186-38.227Q28.786-37.829 28.231-37.829M28.231-38.387Q28.532-38.387 28.749-38.604Q28.965-38.821 29.092-39.149Q29.219-39.477 29.280-39.823Q29.340-40.169 29.340-40.450Q29.340-40.700 29.278-41.026Q29.215-41.352 29.085-41.643Q28.954-41.934 28.741-42.124Q28.528-42.313 28.231-42.313Q27.856-42.313 27.604-42.001Q27.352-41.688 27.235-41.255Q27.118-40.821 27.118-40.450Q27.118-40.052 27.231-39.571Q27.344-39.091 27.592-38.739Q27.840-38.387 28.231-38.387M30.614-38.145L30.614-38.235Q30.653-38.442 30.860-38.466L31.266-38.466L32.196-39.684L31.325-40.794L30.907-40.794Q30.712-40.813 30.661-41.036L30.661-41.122Q30.712-41.333 30.907-41.356L32.067-41.356Q32.266-41.333 32.317-41.122L32.317-41.036Q32.266-40.817 32.067-40.794L31.958-40.794L32.454-40.137L32.930-40.794L32.813-40.794Q32.614-40.817 32.563-41.036L32.563-41.122Q32.614-41.333 32.813-41.356L33.973-41.356Q34.169-41.337 34.219-41.122L34.219-41.036Q34.169-40.817 33.973-40.794L33.563-40.794L32.715-39.684L33.676-38.466L34.083-38.466Q34.282-38.442 34.333-38.235L34.333-38.145Q34.294-37.930 34.083-37.907L32.930-37.907Q32.723-37.930 32.684-38.145L32.684-38.235Q32.723-38.442 32.930-38.466L33.059-38.466L32.454-39.321L31.868-38.466L32.012-38.466Q32.219-38.442 32.258-38.235L32.258-38.145Q32.219-37.930 32.012-37.907L30.860-37.907Q30.665-37.927 30.614-38.145M34.922-38.145L34.922-38.235Q34.973-38.442 35.169-38.466L36.051-38.466L36.051-40.794L35.196-40.794Q34.997-40.817 34.946-41.036L34.946-41.122Q34.997-41.333 35.196-41.356L36.051-41.356L36.051-41.809Q36.051-42.274 36.458-42.555Q36.864-42.837 37.344-42.837Q37.657-42.837 37.901-42.716Q38.145-42.594 38.145-42.313Q38.145-42.149 38.036-42.032Q37.926-41.915 37.762-41.915Q37.614-41.915 37.493-42.020Q37.372-42.126 37.372-42.274L37.290-42.274Q37.137-42.274 37.001-42.214Q36.864-42.153 36.778-42.038Q36.692-41.923 36.692-41.778L36.692-41.356L37.723-41.356Q37.919-41.337 37.969-41.122L37.969-41.036Q37.919-40.817 37.723-40.794L36.692-40.794L36.692-38.466L37.571-38.466Q37.766-38.442 37.817-38.235L37.817-38.145Q37.766-37.930 37.571-37.907L35.169-37.907Q34.973-37.930 34.922-38.145M39.200-39.321Q39.200-39.606 39.356-39.860Q39.512-40.114 39.762-40.288Q40.012-40.462 40.297-40.548Q40.059-40.622 39.833-40.764Q39.606-40.907 39.464-41.116Q39.321-41.325 39.321-41.571Q39.321-41.969 39.567-42.264Q39.813-42.559 40.196-42.718Q40.579-42.876 40.969-42.876Q41.360-42.876 41.743-42.718Q42.126-42.559 42.372-42.261Q42.618-41.962 42.618-41.571Q42.618-41.325 42.475-41.118Q42.333-40.911 42.106-40.766Q41.880-40.622 41.641-40.548Q42.094-40.411 42.415-40.085Q42.735-39.759 42.735-39.321Q42.735-38.884 42.477-38.540Q42.219-38.196 41.809-38.012Q41.399-37.829 40.969-37.829Q40.540-37.829 40.130-38.011Q39.719-38.192 39.460-38.536Q39.200-38.880 39.200-39.321M39.840-39.321Q39.840-39.048 40.006-38.833Q40.172-38.618 40.434-38.503Q40.696-38.387 40.969-38.387Q41.243-38.387 41.503-38.503Q41.762-38.618 41.928-38.835Q42.094-39.052 42.094-39.321Q42.094-39.598 41.928-39.815Q41.762-40.032 41.503-40.149Q41.243-40.266 40.969-40.266Q40.696-40.266 40.434-40.149Q40.172-40.032 40.006-39.817Q39.840-39.602 39.840-39.321M39.962-41.571Q39.962-41.333 40.118-41.165Q40.274-40.997 40.510-40.913Q40.747-40.829 40.969-40.829Q41.188-40.829 41.426-40.913Q41.665-40.997 41.821-41.167Q41.977-41.337 41.977-41.571Q41.977-41.805 41.821-41.975Q41.665-42.145 41.426-42.229Q41.188-42.313 40.969-42.313Q40.747-42.313 40.510-42.229Q40.274-42.145 40.118-41.977Q39.962-41.809 39.962-41.571\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 74.555)\">\u003Cpath d=\"M44.469-35.907L43.294-35.907L43.294-36.274L44.102-36.274L44.102-43.540L43.294-43.540L43.294-43.907L44.469-43.907\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 74.555)\">\u003Cpath d=\"M53.794-38.884L48.481-38.884Q48.403-38.891 48.354-38.940Q48.306-38.989 48.306-39.067Q48.306-39.137 48.353-39.188Q48.399-39.239 48.481-39.251L53.794-39.251Q53.868-39.239 53.915-39.188Q53.962-39.137 53.962-39.067Q53.962-38.989 53.913-38.940Q53.864-38.891 53.794-38.884M53.794-40.571L48.481-40.571Q48.403-40.579 48.354-40.628Q48.306-40.677 48.306-40.755Q48.306-40.825 48.353-40.876Q48.399-40.927 48.481-40.938L53.794-40.938Q53.868-40.927 53.915-40.876Q53.962-40.825 53.962-40.755Q53.962-40.677 53.913-40.628Q53.864-40.579 53.794-40.571\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 74.555)\">\u003Cpath d=\"M58.926-37.829Q58.492-37.829 58.160-38.067Q57.828-38.305 57.608-38.694Q57.387-39.083 57.280-39.520Q57.172-39.958 57.172-40.356Q57.172-40.747 57.282-41.190Q57.391-41.634 57.608-42.014Q57.825-42.395 58.159-42.636Q58.492-42.876 58.926-42.876Q59.481-42.876 59.881-42.477Q60.282-42.079 60.479-41.493Q60.676-40.907 60.676-40.356Q60.676-39.802 60.479-39.214Q60.282-38.626 59.881-38.227Q59.481-37.829 58.926-37.829M58.926-38.387Q59.227-38.387 59.444-38.604Q59.660-38.821 59.787-39.149Q59.914-39.477 59.975-39.823Q60.035-40.169 60.035-40.450Q60.035-40.700 59.973-41.026Q59.910-41.352 59.780-41.643Q59.649-41.934 59.436-42.124Q59.223-42.313 58.926-42.313Q58.551-42.313 58.299-42.001Q58.047-41.688 57.930-41.255Q57.813-40.821 57.813-40.450Q57.813-40.052 57.926-39.571Q58.039-39.091 58.287-38.739Q58.535-38.387 58.926-38.387M61.309-38.145L61.309-38.235Q61.348-38.442 61.555-38.466L61.961-38.466L62.891-39.684L62.020-40.794L61.602-40.794Q61.407-40.813 61.356-41.036L61.356-41.122Q61.407-41.333 61.602-41.356L62.762-41.356Q62.961-41.333 63.012-41.122L63.012-41.036Q62.961-40.817 62.762-40.794L62.653-40.794L63.149-40.137L63.625-40.794L63.508-40.794Q63.309-40.817 63.258-41.036L63.258-41.122Q63.309-41.333 63.508-41.356L64.668-41.356Q64.864-41.337 64.914-41.122L64.914-41.036Q64.864-40.817 64.668-40.794L64.258-40.794L63.410-39.684L64.371-38.466L64.778-38.466Q64.977-38.442 65.028-38.235L65.028-38.145Q64.989-37.930 64.778-37.907L63.625-37.907Q63.418-37.930 63.379-38.145L63.379-38.235Q63.418-38.442 63.625-38.466L63.754-38.466L63.149-39.321L62.563-38.466L62.707-38.466Q62.914-38.442 62.953-38.235L62.953-38.145Q62.914-37.930 62.707-37.907L61.555-37.907Q61.360-37.927 61.309-38.145M67.418-37.829Q66.985-37.829 66.653-38.067Q66.321-38.305 66.100-38.694Q65.879-39.083 65.772-39.520Q65.664-39.958 65.664-40.356Q65.664-40.747 65.774-41.190Q65.883-41.634 66.100-42.014Q66.317-42.395 66.651-42.636Q66.985-42.876 67.418-42.876Q67.973-42.876 68.373-42.477Q68.774-42.079 68.971-41.493Q69.168-40.907 69.168-40.356Q69.168-39.802 68.971-39.214Q68.774-38.626 68.373-38.227Q67.973-37.829 67.418-37.829M67.418-38.387Q67.719-38.387 67.936-38.604Q68.153-38.821 68.280-39.149Q68.407-39.477 68.467-39.823Q68.528-40.169 68.528-40.450Q68.528-40.700 68.465-41.026Q68.403-41.352 68.272-41.643Q68.141-41.934 67.928-42.124Q67.715-42.313 67.418-42.313Q67.043-42.313 66.791-42.001Q66.539-41.688 66.422-41.255Q66.305-40.821 66.305-40.450Q66.305-40.052 66.418-39.571Q66.532-39.091 66.780-38.739Q67.028-38.387 67.418-38.387M70.399-38.145L70.399-38.235Q70.450-38.442 70.649-38.466L71.465-38.466L71.465-41.649Q71.086-41.341 70.633-41.341Q70.403-41.341 70.352-41.571L70.352-41.661Q70.403-41.876 70.598-41.899Q70.926-41.899 71.180-42.137Q71.434-42.376 71.575-42.723Q71.645-42.852 71.801-42.876L71.856-42.876Q72.051-42.856 72.102-42.641L72.102-38.466L72.918-38.466Q73.118-38.442 73.168-38.235L73.168-38.145Q73.118-37.930 72.918-37.907L70.649-37.907Q70.450-37.930 70.399-38.145M74.141-38.954Q74.141-39.130 74.258-39.251Q74.375-39.372 74.551-39.372Q74.633-39.372 74.709-39.341Q74.785-39.309 74.836-39.259Q74.887-39.208 74.918-39.128Q74.950-39.048 74.950-38.969Q74.950-38.837 74.868-38.723Q75.137-38.387 75.926-38.387Q76.352-38.387 76.694-38.653Q77.035-38.919 77.035-39.333Q77.035-39.606 76.869-39.825Q76.703-40.044 76.444-40.155Q76.184-40.266 75.910-40.266L75.446-40.266Q75.235-40.290 75.203-40.509L75.203-40.594Q75.235-40.798 75.446-40.829L75.973-40.868Q76.188-40.868 76.379-40.991Q76.571-41.114 76.684-41.317Q76.797-41.520 76.797-41.731Q76.797-42.005 76.514-42.159Q76.231-42.313 75.926-42.313Q75.364-42.313 75.125-42.122Q75.188-42.009 75.188-41.899Q75.188-41.727 75.075-41.614Q74.961-41.501 74.789-41.501Q74.614-41.501 74.498-41.624Q74.383-41.747 74.383-41.915Q74.383-42.442 74.856-42.659Q75.328-42.876 75.926-42.876Q76.266-42.876 76.621-42.745Q76.977-42.614 77.207-42.356Q77.438-42.098 77.438-41.731Q77.438-41.387 77.270-41.083Q77.102-40.778 76.805-40.579Q77.176-40.399 77.426-40.063Q77.676-39.727 77.676-39.333Q77.676-38.887 77.422-38.546Q77.168-38.204 76.766-38.016Q76.364-37.829 75.926-37.829Q75.641-37.829 75.336-37.884Q75.032-37.938 74.756-38.065Q74.481-38.192 74.311-38.415Q74.141-38.637 74.141-38.954\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 74.555)\">\u003Cpath d=\"M83.506-35.915Q82.893-36.372 82.491-37.007Q82.088-37.641 81.893-38.387Q81.698-39.134 81.698-39.907Q81.698-40.680 81.893-41.427Q82.088-42.173 82.491-42.807Q82.893-43.442 83.506-43.899Q83.518-43.903 83.526-43.905Q83.534-43.907 83.545-43.907L83.623-43.907Q83.662-43.907 83.688-43.880Q83.713-43.852 83.713-43.809Q83.713-43.759 83.682-43.739Q83.174-43.286 82.852-42.663Q82.530-42.040 82.389-41.344Q82.248-40.649 82.248-39.907Q82.248-39.173 82.387-38.473Q82.526-37.774 82.850-37.149Q83.174-36.524 83.682-36.075Q83.713-36.055 83.713-36.005Q83.713-35.962 83.688-35.934Q83.662-35.907 83.623-35.907L83.545-35.907Q83.537-35.911 83.528-35.913Q83.518-35.915 83.506-35.915M86.018-37.938L84.948-40.794Q84.881-40.973 84.750-41.016Q84.619-41.059 84.362-41.059L84.362-41.356L86.041-41.356L86.041-41.059Q85.592-41.059 85.592-40.860Q85.596-40.844 85.598-40.827Q85.600-40.809 85.600-40.794L86.393-38.700L87.104-40.610Q87.069-40.704 87.069-40.749Q87.069-40.794 87.034-40.794Q86.967-40.973 86.836-41.016Q86.705-41.059 86.451-41.059L86.451-41.356L88.041-41.356L88.041-41.059Q87.592-41.059 87.592-40.860Q87.596-40.841 87.598-40.823Q87.600-40.805 87.600-40.794L88.432-38.579L89.186-40.579Q89.209-40.637 89.209-40.708Q89.209-40.868 89.073-40.964Q88.936-41.059 88.768-41.059L88.768-41.356L90.155-41.356L90.155-41.059Q89.920-41.059 89.743-40.932Q89.565-40.805 89.483-40.579L88.498-37.938Q88.444-37.829 88.330-37.829L88.272-37.829Q88.159-37.829 88.116-37.938L87.256-40.212L86.401-37.938Q86.362-37.829 86.241-37.829L86.186-37.829Q86.073-37.829 86.018-37.938M92.576-37.907L90.596-37.907L90.596-38.204Q90.866-38.204 91.034-38.249Q91.201-38.294 91.201-38.466L91.201-40.602Q91.201-40.817 91.139-40.913Q91.076-41.009 90.959-41.030Q90.842-41.052 90.596-41.052L90.596-41.348L91.764-41.434L91.764-40.649Q91.842-40.860 91.994-41.046Q92.147-41.231 92.346-41.333Q92.545-41.434 92.772-41.434Q93.018-41.434 93.209-41.290Q93.401-41.145 93.401-40.915Q93.401-40.759 93.295-40.649Q93.190-40.540 93.034-40.540Q92.877-40.540 92.768-40.649Q92.659-40.759 92.659-40.915Q92.659-41.075 92.764-41.180Q92.440-41.180 92.225-40.952Q92.010-40.723 91.914-40.384Q91.819-40.044 91.819-39.739L91.819-38.466Q91.819-38.298 92.045-38.251Q92.272-38.204 92.576-38.204L92.576-37.907M95.741-37.907L93.963-37.907L93.963-38.204Q94.237-38.204 94.405-38.251Q94.573-38.298 94.573-38.466L94.573-40.602Q94.573-40.817 94.516-40.913Q94.459-41.009 94.346-41.030Q94.233-41.052 93.987-41.052L93.987-41.348L95.186-41.434L95.186-38.466Q95.186-38.298 95.332-38.251Q95.479-38.204 95.741-38.204L95.741-37.907M94.299-42.829Q94.299-43.020 94.434-43.151Q94.569-43.282 94.764-43.282Q94.885-43.282 94.989-43.219Q95.092-43.157 95.155-43.053Q95.217-42.950 95.217-42.829Q95.217-42.634 95.086-42.499Q94.955-42.364 94.764-42.364Q94.565-42.364 94.432-42.497Q94.299-42.630 94.299-42.829M96.866-38.868L96.866-41.059L96.162-41.059L96.162-41.313Q96.518-41.313 96.760-41.546Q97.002-41.778 97.114-42.126Q97.225-42.473 97.225-42.829L97.506-42.829L97.506-41.356L98.682-41.356L98.682-41.059L97.506-41.059L97.506-38.884Q97.506-38.563 97.625-38.335Q97.744-38.106 98.026-38.106Q98.205-38.106 98.323-38.229Q98.440-38.352 98.493-38.532Q98.545-38.712 98.545-38.884L98.545-39.356L98.826-39.356L98.826-38.868Q98.826-38.614 98.721-38.374Q98.616-38.134 98.418-37.981Q98.221-37.829 97.963-37.829Q97.647-37.829 97.395-37.952Q97.143-38.075 97.004-38.309Q96.866-38.544 96.866-38.868M99.545-39.661Q99.545-40.141 99.778-40.557Q100.010-40.973 100.420-41.223Q100.830-41.473 101.307-41.473Q102.037-41.473 102.436-41.032Q102.834-40.591 102.834-39.860Q102.834-39.755 102.741-39.731L100.291-39.731L100.291-39.661Q100.291-39.251 100.412-38.895Q100.534-38.540 100.805-38.323Q101.076-38.106 101.506-38.106Q101.869-38.106 102.166-38.335Q102.463-38.563 102.565-38.915Q102.573-38.962 102.659-38.977L102.741-38.977Q102.834-38.950 102.834-38.868Q102.834-38.860 102.826-38.829Q102.764-38.602 102.625-38.419Q102.487-38.235 102.295-38.102Q102.104-37.969 101.885-37.899Q101.666-37.829 101.428-37.829Q101.057-37.829 100.719-37.966Q100.381-38.102 100.114-38.354Q99.846-38.606 99.696-38.946Q99.545-39.286 99.545-39.661M100.299-39.969L102.260-39.969Q102.260-40.274 102.159-40.565Q102.057-40.856 101.840-41.038Q101.623-41.219 101.307-41.219Q101.006-41.219 100.776-41.032Q100.545-40.844 100.422-40.553Q100.299-40.262 100.299-39.969\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 74.555)\">\u003Cpath d=\"M107.963-37.938L106.740-40.794Q106.658-40.969 106.514-41.014Q106.369-41.059 106.100-41.059L106.100-41.356L107.811-41.356L107.811-41.059Q107.389-41.059 107.389-40.876Q107.389-40.841 107.404-40.794L108.350-38.602L109.190-40.579Q109.229-40.657 109.229-40.747Q109.229-40.887 109.123-40.973Q109.018-41.059 108.877-41.059L108.877-41.356L110.229-41.356L110.229-41.059Q109.705-41.059 109.490-40.579L108.365-37.938Q108.303-37.829 108.197-37.829L108.131-37.829Q108.018-37.829 107.963-37.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 74.555)\">\u003Cpath d=\"M110.274-38.739Q110.274-39.223 110.676-39.518Q111.079-39.813 111.629-39.932Q112.180-40.052 112.672-40.052L112.672-40.341Q112.672-40.567 112.557-40.774Q112.442-40.981 112.245-41.100Q112.047-41.219 111.817-41.219Q111.391-41.219 111.106-41.114Q111.176-41.087 111.223-41.032Q111.270-40.977 111.295-40.907Q111.321-40.837 111.321-40.762Q111.321-40.657 111.270-40.565Q111.219-40.473 111.127-40.423Q111.036-40.372 110.930-40.372Q110.825-40.372 110.733-40.423Q110.641-40.473 110.590-40.565Q110.540-40.657 110.540-40.762Q110.540-41.180 110.928-41.327Q111.317-41.473 111.817-41.473Q112.149-41.473 112.502-41.343Q112.856-41.212 113.084-40.958Q113.313-40.704 113.313-40.356L113.313-38.555Q113.313-38.423 113.385-38.313Q113.458-38.204 113.586-38.204Q113.711-38.204 113.780-38.309Q113.848-38.415 113.848-38.555L113.848-39.067L114.129-39.067L114.129-38.555Q114.129-38.352 114.012-38.194Q113.895-38.036 113.713-37.952Q113.532-37.868 113.329-37.868Q113.098-37.868 112.946-38.040Q112.793-38.212 112.762-38.442Q112.602-38.161 112.293-37.995Q111.985-37.829 111.633-37.829Q111.122-37.829 110.698-38.052Q110.274-38.274 110.274-38.739M110.961-38.739Q110.961-38.454 111.188-38.268Q111.415-38.083 111.708-38.083Q111.954-38.083 112.178-38.200Q112.403-38.317 112.538-38.520Q112.672-38.723 112.672-38.977L112.672-39.809Q112.407-39.809 112.122-39.755Q111.836-39.700 111.565-39.571Q111.293-39.442 111.127-39.235Q110.961-39.028 110.961-38.739M116.336-37.907L114.504-37.907L114.504-38.204Q114.778-38.204 114.946-38.251Q115.114-38.298 115.114-38.466L115.114-42.626Q115.114-42.841 115.051-42.936Q114.989-43.032 114.870-43.053Q114.751-43.075 114.504-43.075L114.504-43.372L115.727-43.458L115.727-38.466Q115.727-38.298 115.895-38.251Q116.063-38.204 116.336-38.204L116.336-37.907M119.278-37.907L116.895-37.907L116.895-38.204Q117.219-38.204 117.461-38.251Q117.704-38.298 117.704-38.466L117.704-42.809Q117.704-42.981 117.461-43.028Q117.219-43.075 116.895-43.075L116.895-43.372L119.840-43.372Q120.184-43.372 120.540-43.272Q120.895-43.173 121.190-42.981Q121.485-42.790 121.667-42.505Q121.848-42.219 121.848-41.860Q121.848-41.387 121.538-41.052Q121.227-40.716 120.762-40.544Q120.297-40.372 119.840-40.372L118.473-40.372L118.473-38.466Q118.473-38.298 118.715-38.251Q118.958-38.204 119.278-38.204L119.278-37.907M118.446-42.809L118.446-40.641L119.622-40.641Q120.309-40.641 120.647-40.917Q120.985-41.192 120.985-41.860Q120.985-42.524 120.647-42.800Q120.309-43.075 119.622-43.075L118.848-43.075Q118.629-43.075 118.538-43.032Q118.446-42.989 118.446-42.809M122.961-35.907L122.879-35.907Q122.844-35.907 122.819-35.936Q122.793-35.966 122.793-36.005Q122.793-36.055 122.825-36.075Q123.211-36.411 123.495-36.860Q123.778-37.309 123.944-37.809Q124.110-38.309 124.184-38.827Q124.258-39.344 124.258-39.907Q124.258-40.477 124.184-40.993Q124.110-41.509 123.944-42.005Q123.778-42.501 123.499-42.948Q123.219-43.395 122.825-43.739Q122.793-43.759 122.793-43.809Q122.793-43.848 122.819-43.878Q122.844-43.907 122.879-43.907L122.961-43.907Q122.973-43.907 122.983-43.905Q122.993-43.903 123.001-43.899Q123.614-43.442 124.016-42.807Q124.418-42.173 124.614-41.427Q124.809-40.680 124.809-39.907Q124.809-39.134 124.614-38.387Q124.418-37.641 124.016-37.007Q123.614-36.372 123.001-35.915Q122.989-35.915 122.981-35.913Q122.973-35.911 122.961-35.907\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 46.598h236.157\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-47.342 99.17)\">\u003Cpath d=\"M13.812-37.866L12.260-42.197Q12.198-42.340 12.036-42.374Q11.874-42.408 11.621-42.408L11.621-42.689L13.548-42.689L13.548-42.408Q12.967-42.408 12.967-42.234Q12.967-42.214 12.974-42.197L14.198-38.761L15.305-41.848L15.179-42.197Q15.121-42.340 14.955-42.374Q14.789-42.408 14.540-42.408L14.540-42.689L16.467-42.689L16.467-42.408Q15.886-42.408 15.886-42.234L15.886-42.197L17.117-38.761L18.272-42.009Q18.286-42.050 18.286-42.074Q18.286-42.248 18.093-42.328Q17.899-42.408 17.691-42.408L17.691-42.689L19.267-42.689L19.267-42.408Q19.017-42.408 18.826-42.314Q18.634-42.220 18.559-42.009L17.076-37.866Q17.042-37.767 16.942-37.767L16.864-37.767Q16.765-37.767 16.724-37.866L15.445-41.455L14.164-37.866Q14.147-37.822 14.109-37.794Q14.071-37.767 14.023-37.767L13.945-37.767Q13.853-37.767 13.812-37.866\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-47.342 99.17)\">\u003Cpath d=\"M20.893-37.907L19.157-37.907L19.157-38.187Q19.386-38.187 19.535-38.221Q19.683-38.256 19.683-38.396L19.683-40.245Q19.683-40.515 19.576-40.576Q19.468-40.638 19.157-40.638L19.157-40.918L20.186-40.993L20.186-40.286Q20.316-40.594 20.558-40.793Q20.801-40.993 21.119-40.993Q21.338-40.993 21.509-40.869Q21.680-40.744 21.680-40.532Q21.680-40.395 21.580-40.296Q21.481-40.197 21.348-40.197Q21.211-40.197 21.112-40.296Q21.013-40.395 21.013-40.532Q21.013-40.672 21.112-40.771Q20.822-40.771 20.622-40.575Q20.422-40.378 20.329-40.084Q20.237-39.790 20.237-39.510L20.237-38.396Q20.237-38.187 20.893-38.187L20.893-37.907M23.881-37.907L22.329-37.907L22.329-38.187Q22.555-38.187 22.703-38.221Q22.852-38.256 22.852-38.396L22.852-40.245Q22.852-40.433 22.804-40.517Q22.756-40.600 22.659-40.619Q22.561-40.638 22.350-40.638L22.350-40.918L23.406-40.993L23.406-38.396Q23.406-38.256 23.537-38.221Q23.669-38.187 23.881-38.187L23.881-37.907M22.609-42.214Q22.609-42.385 22.732-42.504Q22.855-42.624 23.026-42.624Q23.194-42.624 23.317-42.504Q23.440-42.385 23.440-42.214Q23.440-42.039 23.317-41.916Q23.194-41.793 23.026-41.793Q22.855-41.793 22.732-41.916Q22.609-42.039 22.609-42.214M25.053-38.748L25.053-40.645L24.414-40.645L24.414-40.867Q24.732-40.867 24.949-41.077Q25.166-41.287 25.267-41.597Q25.368-41.906 25.368-42.214L25.634-42.214L25.634-40.925L26.711-40.925L26.711-40.645L25.634-40.645L25.634-38.761Q25.634-38.485 25.738-38.286Q25.843-38.088 26.102-38.088Q26.260-38.088 26.366-38.192Q26.472-38.297 26.521-38.450Q26.571-38.604 26.571-38.761L26.571-39.175L26.837-39.175L26.837-38.748Q26.837-38.522 26.738-38.312Q26.639-38.102 26.454-37.970Q26.270-37.839 26.041-37.839Q25.603-37.839 25.328-38.076Q25.053-38.314 25.053-38.748M27.606-39.442Q27.606-39.763 27.731-40.052Q27.856-40.341 28.081-40.564Q28.307-40.788 28.603-40.908Q28.898-41.028 29.216-41.028Q29.544-41.028 29.806-40.928Q30.067-40.829 30.243-40.647Q30.419-40.464 30.513-40.206Q30.607-39.948 30.607-39.616Q30.607-39.524 30.525-39.503L28.269-39.503L28.269-39.442Q28.269-38.854 28.553-38.471Q28.837-38.088 29.404-38.088Q29.725-38.088 29.994-38.281Q30.262-38.474 30.351-38.789Q30.358-38.830 30.433-38.844L30.525-38.844Q30.607-38.820 30.607-38.748Q30.607-38.741 30.600-38.714Q30.488-38.317 30.117-38.078Q29.746-37.839 29.322-37.839Q28.885-37.839 28.485-38.047Q28.085-38.256 27.846-38.623Q27.606-38.990 27.606-39.442M28.276-39.712L30.091-39.712Q30.091-39.989 29.994-40.241Q29.896-40.494 29.698-40.650Q29.500-40.805 29.216-40.805Q28.939-40.805 28.726-40.647Q28.512-40.488 28.394-40.233Q28.276-39.978 28.276-39.712M33.079-39.161L31.021-39.161L31.021-39.664L33.079-39.664L33.079-39.161M34.688-37.907L34.422-37.907L34.422-42.015Q34.422-42.285 34.314-42.347Q34.206-42.408 33.895-42.408L33.895-42.689L34.975-42.764L34.975-40.594Q35.184-40.785 35.469-40.889Q35.755-40.993 36.052-40.993Q36.370-40.993 36.667-40.872Q36.965-40.751 37.187-40.535Q37.409-40.320 37.536-40.035Q37.662-39.749 37.662-39.418Q37.662-38.973 37.423-38.609Q37.183-38.245 36.790-38.042Q36.397-37.839 35.953-37.839Q35.758-37.839 35.569-37.895Q35.379-37.951 35.218-38.056Q35.058-38.160 34.917-38.321L34.688-37.907M35.003-40.252L35.003-38.635Q35.140-38.375 35.381-38.218Q35.621-38.061 35.898-38.061Q36.192-38.061 36.404-38.168Q36.616-38.276 36.749-38.468Q36.883-38.659 36.941-38.898Q36.999-39.137 36.999-39.418Q36.999-39.777 36.905-40.081Q36.811-40.385 36.584-40.578Q36.356-40.771 35.991-40.771Q35.690-40.771 35.423-40.635Q35.157-40.498 35.003-40.252M38.356-38.635Q38.356-38.967 38.580-39.194Q38.804-39.421 39.147-39.549Q39.491-39.678 39.863-39.730Q40.236-39.783 40.540-39.783L40.540-40.036Q40.540-40.241 40.432-40.421Q40.325-40.600 40.143-40.703Q39.962-40.805 39.754-40.805Q39.347-40.805 39.111-40.713Q39.200-40.676 39.246-40.592Q39.292-40.508 39.292-40.406Q39.292-40.310 39.246-40.231Q39.200-40.153 39.120-40.108Q39.039-40.064 38.951-40.064Q38.800-40.064 38.699-40.161Q38.599-40.259 38.599-40.406Q38.599-41.028 39.754-41.028Q39.966-41.028 40.215-40.964Q40.465-40.901 40.666-40.782Q40.868-40.662 40.995-40.477Q41.121-40.293 41.121-40.050L41.121-38.474Q41.121-38.358 41.183-38.262Q41.244-38.167 41.357-38.167Q41.466-38.167 41.531-38.261Q41.596-38.355 41.596-38.474L41.596-38.922L41.863-38.922L41.863-38.474Q41.863-38.204 41.635-38.039Q41.408-37.873 41.128-37.873Q40.919-37.873 40.783-38.027Q40.646-38.180 40.622-38.396Q40.475-38.129 40.193-37.984Q39.911-37.839 39.586-37.839Q39.309-37.839 39.026-37.914Q38.742-37.989 38.549-38.168Q38.356-38.348 38.356-38.635M38.971-38.635Q38.971-38.461 39.072-38.331Q39.173-38.201 39.328-38.131Q39.484-38.061 39.648-38.061Q39.867-38.061 40.075-38.158Q40.284-38.256 40.412-38.437Q40.540-38.618 40.540-38.844L40.540-39.572Q40.215-39.572 39.850-39.481Q39.484-39.390 39.227-39.178Q38.971-38.967 38.971-38.635M42.280-39.418Q42.280-39.746 42.415-40.047Q42.550-40.347 42.786-40.568Q43.021-40.788 43.326-40.908Q43.630-41.028 43.954-41.028Q44.460-41.028 44.809-40.925Q45.158-40.823 45.158-40.447Q45.158-40.300 45.060-40.199Q44.963-40.098 44.816-40.098Q44.662-40.098 44.563-40.197Q44.464-40.296 44.464-40.447Q44.464-40.635 44.604-40.727Q44.402-40.778 43.961-40.778Q43.606-40.778 43.377-40.582Q43.148-40.385 43.047-40.076Q42.946-39.766 42.946-39.418Q42.946-39.069 43.073-38.763Q43.199-38.457 43.454-38.273Q43.708-38.088 44.064-38.088Q44.286-38.088 44.471-38.172Q44.655-38.256 44.790-38.411Q44.925-38.567 44.983-38.775Q44.997-38.830 45.052-38.830L45.164-38.830Q45.195-38.830 45.217-38.806Q45.240-38.782 45.240-38.748L45.240-38.727Q45.154-38.440 44.966-38.242Q44.778-38.044 44.513-37.941Q44.248-37.839 43.954-37.839Q43.524-37.839 43.136-38.045Q42.748-38.252 42.514-38.615Q42.280-38.977 42.280-39.418\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-47.342 99.17)\">\u003Cpath d=\"M47.247-37.907L45.664-37.907L45.664-38.187Q45.893-38.187 46.042-38.221Q46.190-38.256 46.190-38.396L46.190-42.015Q46.190-42.285 46.083-42.347Q45.975-42.408 45.664-42.408L45.664-42.689L46.744-42.764L46.744-39.476L47.729-40.245Q47.934-40.382 47.934-40.532Q47.934-40.576 47.893-40.611Q47.852-40.645 47.807-40.645L47.807-40.925L49.171-40.925L49.171-40.645Q48.682-40.645 48.163-40.245L47.606-39.811L48.583-38.587Q48.785-38.341 48.918-38.264Q49.051-38.187 49.338-38.187L49.338-37.907L47.906-37.907L47.906-38.187Q48.094-38.187 48.094-38.300Q48.094-38.396 47.940-38.587L47.206-39.496L46.724-39.117L46.724-38.396Q46.724-38.259 46.872-38.223Q47.021-38.187 47.247-38.187\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M14.044-37.907L11.907-37.907Q11.872-37.907 11.841-37.948Q11.810-37.989 11.810-38.036L11.833-38.137Q11.845-38.188 11.931-38.204Q12.372-38.204 12.530-38.243Q12.689-38.282 12.732-38.509L13.810-42.829Q13.833-42.899 13.833-42.962Q13.833-43.024 13.771-43.044Q13.626-43.075 13.204-43.075Q13.099-43.102 13.099-43.204L13.130-43.305Q13.138-43.352 13.220-43.372L15.732-43.372Q16.138-43.372 16.581-43.249Q17.024-43.126 17.329-42.850Q17.634-42.575 17.634-42.153Q17.634-41.766 17.364-41.450Q17.095-41.134 16.696-40.925Q16.298-40.716 15.923-40.626Q16.232-40.501 16.429-40.262Q16.626-40.024 16.626-39.708Q16.626-39.665 16.624-39.637Q16.622-39.610 16.618-39.579L16.540-38.884Q16.509-38.594 16.509-38.473Q16.509-38.259 16.577-38.128Q16.646-37.997 16.853-37.997Q17.107-37.997 17.302-38.221Q17.497-38.446 17.564-38.723Q17.571-38.770 17.657-38.786L17.739-38.786Q17.833-38.759 17.833-38.677Q17.833-38.669 17.825-38.634Q17.774-38.419 17.630-38.208Q17.485-37.997 17.278-37.868Q17.071-37.739 16.845-37.739Q16.540-37.739 16.271-37.825Q16.001-37.911 15.829-38.110Q15.657-38.309 15.657-38.618Q15.657-38.727 15.700-38.907L15.876-39.602Q15.899-39.723 15.899-39.817Q15.899-40.153 15.638-40.335Q15.376-40.516 15.013-40.516L13.962-40.516L13.442-38.450Q13.427-38.356 13.427-38.313Q13.427-38.274 13.440-38.261Q13.454-38.247 13.489-38.235Q13.634-38.204 14.060-38.204Q14.153-38.177 14.153-38.083L14.130-37.977Q14.122-37.927 14.044-37.907M14.524-42.770L14.028-40.770L14.970-40.770Q15.314-40.770 15.630-40.839Q15.946-40.907 16.220-41.075Q16.407-41.200 16.544-41.401Q16.681-41.602 16.749-41.835Q16.817-42.067 16.817-42.290Q16.817-42.747 16.450-42.911Q16.083-43.075 15.548-43.075L14.931-43.075Q14.759-43.075 14.696-43.061Q14.634-43.048 14.601-42.989Q14.567-42.930 14.524-42.770\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M20.038-35.907L18.862-35.907L18.862-43.907L20.038-43.907L20.038-43.540L19.229-43.540L19.229-36.274L20.038-36.274\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M21.416-37.641Q21.416-37.704 21.447-37.747L25.193-43.005Q24.736-42.770 24.169-42.770Q23.517-42.770 22.912-43.091Q23.056-42.743 23.056-42.298Q23.056-41.938 22.935-41.567Q22.814-41.196 22.564-40.940Q22.314-40.684 21.951-40.684Q21.564-40.684 21.281-40.928Q20.998-41.173 20.851-41.546Q20.705-41.919 20.705-42.298Q20.705-42.677 20.851-43.048Q20.998-43.419 21.281-43.663Q21.564-43.907 21.951-43.907Q22.267-43.907 22.537-43.669Q22.873-43.364 23.302-43.192Q23.732-43.020 24.169-43.020Q24.662-43.020 25.080-43.233Q25.498-43.446 25.798-43.844Q25.841-43.907 25.935-43.907Q26.009-43.907 26.064-43.852Q26.119-43.798 26.119-43.723Q26.119-43.661 26.087-43.618L21.744-37.524Q21.697-37.458 21.599-37.458Q21.517-37.458 21.466-37.509Q21.416-37.559 21.416-37.641M21.951-40.938Q22.224-40.938 22.412-41.163Q22.599-41.387 22.687-41.710Q22.775-42.032 22.775-42.298Q22.775-42.555 22.687-42.878Q22.599-43.200 22.412-43.425Q22.224-43.649 21.951-43.649Q21.564-43.649 21.421-43.221Q21.279-42.794 21.279-42.298Q21.279-41.790 21.419-41.364Q21.560-40.938 21.951-40.938M25.728-37.458Q25.341-37.458 25.058-37.704Q24.775-37.950 24.627-38.323Q24.478-38.696 24.478-39.075Q24.478-39.348 24.564-39.636Q24.650-39.923 24.804-40.157Q24.959-40.391 25.195-40.538Q25.431-40.684 25.728-40.684Q26.009-40.684 26.216-40.532Q26.423-40.380 26.562-40.137Q26.701-39.895 26.767-39.614Q26.834-39.333 26.834-39.075Q26.834-38.716 26.712-38.343Q26.591-37.969 26.341-37.714Q26.091-37.458 25.728-37.458M25.728-37.716Q26.002-37.716 26.189-37.940Q26.377-38.165 26.464-38.487Q26.552-38.809 26.552-39.075Q26.552-39.333 26.464-39.655Q26.377-39.977 26.189-40.202Q26.002-40.427 25.728-40.427Q25.337-40.427 25.197-39.997Q25.056-39.567 25.056-39.075Q25.056-38.567 25.193-38.141Q25.330-37.716 25.728-37.716\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M27.538-38.145L27.538-38.235Q27.596-38.442 27.788-38.466L28.499-38.466L28.499-40.794L27.788-40.794Q27.592-40.817 27.538-41.036L27.538-41.122Q27.596-41.333 27.788-41.356L28.889-41.356Q29.088-41.337 29.139-41.122L29.139-40.794Q29.401-41.079 29.756-41.237Q30.112-41.395 30.499-41.395Q30.792-41.395 31.026-41.261Q31.260-41.126 31.260-40.860Q31.260-40.692 31.151-40.575Q31.042-40.458 30.874-40.458Q30.721-40.458 30.606-40.569Q30.491-40.680 30.491-40.837Q30.116-40.837 29.801-40.636Q29.487-40.434 29.313-40.100Q29.139-39.766 29.139-39.387L29.139-38.466L30.085-38.466Q30.292-38.442 30.331-38.235L30.331-38.145Q30.292-37.930 30.085-37.907L27.788-37.907Q27.596-37.930 27.538-38.145M32.147-38.106L32.147-39.020Q32.174-39.227 32.385-39.251L32.553-39.251Q32.717-39.227 32.776-39.067Q32.979-38.427 33.706-38.427Q33.913-38.427 34.141-38.462Q34.370-38.497 34.538-38.612Q34.706-38.727 34.706-38.930Q34.706-39.141 34.483-39.255Q34.260-39.368 33.987-39.411L33.288-39.524Q32.147-39.735 32.147-40.458Q32.147-40.747 32.292-40.936Q32.436-41.126 32.676-41.233Q32.917-41.341 33.172-41.380Q33.428-41.419 33.706-41.419Q33.956-41.419 34.149-41.389Q34.342-41.360 34.506-41.282Q34.585-41.399 34.713-41.419L34.792-41.419Q34.889-41.407 34.952-41.344Q35.014-41.282 35.026-41.188L35.026-40.481Q35.014-40.387 34.952-40.321Q34.889-40.255 34.792-40.243L34.624-40.243Q34.530-40.255 34.463-40.321Q34.397-40.387 34.385-40.481Q34.385-40.860 33.690-40.860Q33.342-40.860 33.024-40.778Q32.706-40.696 32.706-40.450Q32.706-40.184 33.377-40.075L34.081-39.954Q34.565-39.872 34.915-39.624Q35.264-39.376 35.264-38.930Q35.264-38.540 35.028-38.298Q34.792-38.055 34.442-37.962Q34.092-37.868 33.706-37.868Q33.127-37.868 32.729-38.122Q32.659-37.997 32.610-37.940Q32.561-37.884 32.456-37.868L32.385-37.868Q32.170-37.891 32.147-38.106M35.877-36.364L35.877-36.450Q35.920-36.669 36.127-36.692L36.549-36.692L36.549-40.794L36.127-40.794Q35.920-40.817 35.877-41.036L35.877-41.122Q35.924-41.333 36.127-41.356L36.944-41.356Q37.139-41.337 37.190-41.122L37.190-41.052Q37.401-41.219 37.665-41.307Q37.928-41.395 38.198-41.395Q38.538-41.395 38.835-41.251Q39.131-41.106 39.346-40.854Q39.561-40.602 39.676-40.290Q39.792-39.977 39.792-39.634Q39.792-39.169 39.565-38.759Q39.338-38.348 38.952-38.108Q38.565-37.868 38.096-37.868Q37.577-37.868 37.190-38.235L37.190-36.692L37.616-36.692Q37.823-36.669 37.862-36.450L37.862-36.364Q37.823-36.153 37.616-36.130L36.127-36.130Q35.924-36.153 35.877-36.364M38.053-38.427Q38.362-38.427 38.612-38.596Q38.862-38.766 39.006-39.048Q39.151-39.329 39.151-39.634Q39.151-39.923 39.026-40.202Q38.901-40.481 38.669-40.659Q38.436-40.837 38.135-40.837Q37.815-40.837 37.553-40.651Q37.292-40.466 37.190-40.165L37.190-39.313Q37.280-38.946 37.501-38.686Q37.721-38.427 38.053-38.427\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M41.424-35.907L40.249-35.907L40.249-36.274L41.057-36.274L41.057-43.540L40.249-43.540L40.249-43.907L41.424-43.907\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M50.748-38.884L45.435-38.884Q45.357-38.891 45.308-38.940Q45.260-38.989 45.260-39.067Q45.260-39.137 45.307-39.188Q45.353-39.239 45.435-39.251L50.748-39.251Q50.822-39.239 50.869-39.188Q50.916-39.137 50.916-39.067Q50.916-38.989 50.867-38.940Q50.818-38.891 50.748-38.884M50.748-40.571L45.435-40.571Q45.357-40.579 45.308-40.628Q45.260-40.677 45.260-40.755Q45.260-40.825 45.307-40.876Q45.353-40.927 45.435-40.938L50.748-40.938Q50.822-40.927 50.869-40.876Q50.916-40.825 50.916-40.755Q50.916-40.677 50.867-40.628Q50.818-40.579 50.748-40.571\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M55.881-37.829Q55.447-37.829 55.115-38.067Q54.783-38.305 54.563-38.694Q54.342-39.083 54.235-39.520Q54.127-39.958 54.127-40.356Q54.127-40.747 54.237-41.190Q54.346-41.634 54.563-42.014Q54.780-42.395 55.114-42.636Q55.447-42.876 55.881-42.876Q56.436-42.876 56.836-42.477Q57.237-42.079 57.434-41.493Q57.631-40.907 57.631-40.356Q57.631-39.802 57.434-39.214Q57.237-38.626 56.836-38.227Q56.436-37.829 55.881-37.829M55.881-38.387Q56.182-38.387 56.399-38.604Q56.615-38.821 56.742-39.149Q56.869-39.477 56.930-39.823Q56.990-40.169 56.990-40.450Q56.990-40.700 56.928-41.026Q56.865-41.352 56.735-41.643Q56.604-41.934 56.391-42.124Q56.178-42.313 55.881-42.313Q55.506-42.313 55.254-42.001Q55.002-41.688 54.885-41.255Q54.768-40.821 54.768-40.450Q54.768-40.052 54.881-39.571Q54.994-39.091 55.242-38.739Q55.490-38.387 55.881-38.387M58.264-38.145L58.264-38.235Q58.303-38.442 58.510-38.466L58.916-38.466L59.846-39.684L58.975-40.794L58.557-40.794Q58.362-40.813 58.311-41.036L58.311-41.122Q58.362-41.333 58.557-41.356L59.717-41.356Q59.916-41.333 59.967-41.122L59.967-41.036Q59.916-40.817 59.717-40.794L59.608-40.794L60.104-40.137L60.580-40.794L60.463-40.794Q60.264-40.817 60.213-41.036L60.213-41.122Q60.264-41.333 60.463-41.356L61.623-41.356Q61.819-41.337 61.869-41.122L61.869-41.036Q61.819-40.817 61.623-40.794L61.213-40.794L60.365-39.684L61.326-38.466L61.733-38.466Q61.932-38.442 61.983-38.235L61.983-38.145Q61.944-37.930 61.733-37.907L60.580-37.907Q60.373-37.930 60.334-38.145L60.334-38.235Q60.373-38.442 60.580-38.466L60.709-38.466L60.104-39.321L59.518-38.466L59.662-38.466Q59.869-38.442 59.908-38.235L59.908-38.145Q59.869-37.930 59.662-37.907L58.510-37.907Q58.315-37.927 58.264-38.145M62.572-38.145L62.572-38.235Q62.623-38.442 62.819-38.466L63.701-38.466L63.701-40.794L62.846-40.794Q62.647-40.817 62.596-41.036L62.596-41.122Q62.647-41.333 62.846-41.356L63.701-41.356L63.701-41.809Q63.701-42.274 64.108-42.555Q64.514-42.837 64.994-42.837Q65.307-42.837 65.551-42.716Q65.795-42.594 65.795-42.313Q65.795-42.149 65.686-42.032Q65.576-41.915 65.412-41.915Q65.264-41.915 65.143-42.020Q65.022-42.126 65.022-42.274L64.940-42.274Q64.787-42.274 64.651-42.214Q64.514-42.153 64.428-42.038Q64.342-41.923 64.342-41.778L64.342-41.356L65.373-41.356Q65.569-41.337 65.619-41.122L65.619-41.036Q65.569-40.817 65.373-40.794L64.342-40.794L64.342-38.466L65.221-38.466Q65.416-38.442 65.467-38.235L65.467-38.145Q65.416-37.930 65.221-37.907L62.819-37.907Q62.623-37.930 62.572-38.145M66.850-39.321Q66.850-39.606 67.006-39.860Q67.162-40.114 67.412-40.288Q67.662-40.462 67.947-40.548Q67.709-40.622 67.483-40.764Q67.256-40.907 67.114-41.116Q66.971-41.325 66.971-41.571Q66.971-41.969 67.217-42.264Q67.463-42.559 67.846-42.718Q68.229-42.876 68.619-42.876Q69.010-42.876 69.393-42.718Q69.776-42.559 70.022-42.261Q70.268-41.962 70.268-41.571Q70.268-41.325 70.125-41.118Q69.983-40.911 69.756-40.766Q69.530-40.622 69.291-40.548Q69.744-40.411 70.065-40.085Q70.385-39.759 70.385-39.321Q70.385-38.884 70.127-38.540Q69.869-38.196 69.459-38.012Q69.049-37.829 68.619-37.829Q68.190-37.829 67.780-38.011Q67.369-38.192 67.110-38.536Q66.850-38.880 66.850-39.321M67.490-39.321Q67.490-39.048 67.656-38.833Q67.822-38.618 68.084-38.503Q68.346-38.387 68.619-38.387Q68.893-38.387 69.153-38.503Q69.412-38.618 69.578-38.835Q69.744-39.052 69.744-39.321Q69.744-39.598 69.578-39.815Q69.412-40.032 69.153-40.149Q68.893-40.266 68.619-40.266Q68.346-40.266 68.084-40.149Q67.822-40.032 67.656-39.817Q67.490-39.602 67.490-39.321M67.612-41.571Q67.612-41.333 67.768-41.165Q67.924-40.997 68.160-40.913Q68.397-40.829 68.619-40.829Q68.838-40.829 69.076-40.913Q69.315-40.997 69.471-41.167Q69.627-41.337 69.627-41.571Q69.627-41.805 69.471-41.975Q69.315-42.145 69.076-42.229Q68.838-42.313 68.619-42.313Q68.397-42.313 68.160-42.229Q67.924-42.145 67.768-41.977Q67.612-41.809 67.612-41.571\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 70.782h236.157\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-47.133 122.674)\">\u003Cpath d=\"M13.945-37.907L11.812-37.907L11.812-38.187Q12.533-38.187 12.533-38.396L12.533-42.197Q12.533-42.408 11.812-42.408L11.812-42.689L14.478-42.689Q14.888-42.689 15.309-42.535Q15.729-42.381 16.013-42.077Q16.296-41.773 16.296-41.359Q16.296-41.041 16.129-40.795Q15.961-40.549 15.685-40.383Q15.408-40.218 15.086-40.134Q14.765-40.050 14.478-40.050L13.224-40.050L13.224-38.396Q13.224-38.187 13.945-38.187L13.945-37.907M13.196-42.197L13.196-40.300L14.283-40.300Q14.892-40.300 15.206-40.537Q15.521-40.775 15.521-41.359Q15.521-41.752 15.375-41.986Q15.230-42.220 14.958-42.314Q14.687-42.408 14.283-42.408L13.562-42.408Q13.374-42.408 13.285-42.374Q13.196-42.340 13.196-42.197M17.277-40.300Q17.277-40.826 17.494-41.294Q17.711-41.762 18.094-42.108Q18.477-42.453 18.961-42.641Q19.444-42.829 19.974-42.829Q20.377-42.829 20.742-42.672Q21.106-42.514 21.389-42.220L21.813-42.802Q21.847-42.829 21.871-42.829L21.919-42.829Q21.950-42.829 21.974-42.805Q21.998-42.781 21.998-42.750L21.998-40.887Q21.998-40.864 21.972-40.838Q21.946-40.812 21.919-40.812L21.793-40.812Q21.731-40.812 21.717-40.887Q21.687-41.202 21.552-41.506Q21.417-41.810 21.201-42.044Q20.986-42.279 20.697-42.414Q20.408-42.549 20.080-42.549Q19.438-42.549 18.980-42.255Q18.522-41.961 18.289-41.448Q18.057-40.935 18.057-40.300Q18.057-39.828 18.187-39.419Q18.316-39.011 18.576-38.698Q18.836-38.386 19.215-38.216Q19.595-38.047 20.087-38.047Q20.415-38.047 20.709-38.163Q21.003-38.280 21.237-38.495Q21.471-38.710 21.601-38.999Q21.731-39.288 21.731-39.616Q21.731-39.643 21.758-39.667Q21.786-39.691 21.806-39.691L21.919-39.691Q21.957-39.691 21.977-39.666Q21.998-39.640 21.998-39.602Q21.998-39.206 21.832-38.869Q21.666-38.532 21.379-38.285Q21.092-38.037 20.723-37.902Q20.354-37.767 19.974-37.767Q19.455-37.767 18.962-37.957Q18.470-38.146 18.091-38.490Q17.711-38.833 17.494-39.302Q17.277-39.770 17.277-40.300\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-47.133 122.674)\">\u003Cpath d=\"M26.086-38.741L26.086-40.245Q26.086-40.515 25.978-40.576Q25.870-40.638 25.559-40.638L25.559-40.918L26.667-40.993L26.667-38.761L26.667-38.741Q26.667-38.461 26.718-38.317Q26.769-38.174 26.911-38.117Q27.053-38.061 27.340-38.061Q27.593-38.061 27.798-38.201Q28.003-38.341 28.119-38.567Q28.236-38.792 28.236-39.042L28.236-40.245Q28.236-40.515 28.128-40.576Q28.020-40.638 27.709-40.638L27.709-40.918L28.817-40.993L28.817-38.580Q28.817-38.389 28.870-38.307Q28.923-38.225 29.023-38.206Q29.124-38.187 29.340-38.187L29.340-37.907L28.263-37.839L28.263-38.403Q28.154-38.221 28.008-38.098Q27.863-37.975 27.677-37.907Q27.490-37.839 27.289-37.839Q26.086-37.839 26.086-38.741M31.572-36.550L29.941-36.550L29.941-36.830Q30.170-36.830 30.319-36.865Q30.468-36.899 30.468-37.039L30.468-40.385Q30.468-40.556 30.331-40.597Q30.194-40.638 29.941-40.638L29.941-40.918L31.021-40.993L31.021-40.587Q31.243-40.788 31.530-40.891Q31.818-40.993 32.125-40.993Q32.552-40.993 32.916-40.780Q33.280-40.566 33.494-40.202Q33.708-39.838 33.708-39.418Q33.708-38.973 33.468-38.609Q33.229-38.245 32.836-38.042Q32.443-37.839 31.999-37.839Q31.732-37.839 31.484-37.939Q31.237-38.040 31.049-38.221L31.049-37.039Q31.049-36.902 31.197-36.866Q31.346-36.830 31.572-36.830L31.572-36.550M31.049-40.238L31.049-38.628Q31.182-38.375 31.425-38.218Q31.667-38.061 31.944-38.061Q32.272-38.061 32.525-38.262Q32.778-38.464 32.911-38.782Q33.045-39.100 33.045-39.418Q33.045-39.647 32.980-39.876Q32.915-40.105 32.787-40.303Q32.658-40.501 32.464-40.621Q32.269-40.740 32.036-40.740Q31.742-40.740 31.474-40.611Q31.206-40.481 31.049-40.238\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-47.133 122.674)\">\u003Cpath d=\"M34.559-39.418Q34.559-39.756 34.700-40.047Q34.840-40.337 35.084-40.551Q35.328-40.764 35.633-40.879Q35.937-40.993 36.262-40.993Q36.532-40.993 36.795-40.894Q37.058-40.795 37.249-40.617L37.249-42.015Q37.249-42.285 37.142-42.347Q37.034-42.408 36.723-42.408L36.723-42.689L37.800-42.764L37.800-38.580Q37.800-38.392 37.854-38.309Q37.909-38.225 38.010-38.206Q38.111-38.187 38.326-38.187L38.326-37.907L37.219-37.839L37.219-38.256Q36.802-37.839 36.176-37.839Q35.745-37.839 35.373-38.051Q35-38.262 34.780-38.623Q34.559-38.984 34.559-39.418M36.234-38.061Q36.443-38.061 36.629-38.133Q36.815-38.204 36.969-38.341Q37.123-38.478 37.219-38.656L37.219-40.265Q37.133-40.412 36.988-40.532Q36.843-40.652 36.673-40.711Q36.504-40.771 36.323-40.771Q35.763-40.771 35.494-40.382Q35.226-39.992 35.226-39.411Q35.226-38.840 35.460-38.450Q35.694-38.061 36.234-38.061M39.034-38.635Q39.034-38.967 39.257-39.194Q39.481-39.421 39.825-39.549Q40.168-39.678 40.541-39.730Q40.913-39.783 41.218-39.783L41.218-40.036Q41.218-40.241 41.110-40.421Q41.002-40.600 40.821-40.703Q40.640-40.805 40.432-40.805Q40.025-40.805 39.789-40.713Q39.878-40.676 39.924-40.592Q39.970-40.508 39.970-40.406Q39.970-40.310 39.924-40.231Q39.878-40.153 39.797-40.108Q39.717-40.064 39.628-40.064Q39.478-40.064 39.377-40.161Q39.276-40.259 39.276-40.406Q39.276-41.028 40.432-41.028Q40.643-41.028 40.893-40.964Q41.142-40.901 41.344-40.782Q41.546-40.662 41.672-40.477Q41.799-40.293 41.799-40.050L41.799-38.474Q41.799-38.358 41.860-38.262Q41.922-38.167 42.035-38.167Q42.144-38.167 42.209-38.261Q42.274-38.355 42.274-38.474L42.274-38.922L42.540-38.922L42.540-38.474Q42.540-38.204 42.313-38.039Q42.086-37.873 41.806-37.873Q41.597-37.873 41.460-38.027Q41.324-38.180 41.300-38.396Q41.153-38.129 40.871-37.984Q40.589-37.839 40.264-37.839Q39.987-37.839 39.703-37.914Q39.420-37.989 39.227-38.168Q39.034-38.348 39.034-38.635M39.649-38.635Q39.649-38.461 39.750-38.331Q39.850-38.201 40.006-38.131Q40.162-38.061 40.326-38.061Q40.544-38.061 40.753-38.158Q40.961-38.256 41.089-38.437Q41.218-38.618 41.218-38.844L41.218-39.572Q40.893-39.572 40.527-39.481Q40.162-39.390 39.905-39.178Q39.649-38.967 39.649-38.635M43.484-38.748L43.484-40.645L42.845-40.645L42.845-40.867Q43.162-40.867 43.380-41.077Q43.597-41.287 43.697-41.597Q43.798-41.906 43.798-42.214L44.065-42.214L44.065-40.925L45.141-40.925L45.141-40.645L44.065-40.645L44.065-38.761Q44.065-38.485 44.169-38.286Q44.273-38.088 44.533-38.088Q44.690-38.088 44.796-38.192Q44.902-38.297 44.952-38.450Q45.001-38.604 45.001-38.761L45.001-39.175L45.268-39.175L45.268-38.748Q45.268-38.522 45.169-38.312Q45.070-38.102 44.885-37.970Q44.701-37.839 44.472-37.839Q44.034-37.839 43.759-38.076Q43.484-38.314 43.484-38.748M46.037-39.442Q46.037-39.763 46.162-40.052Q46.287-40.341 46.512-40.564Q46.738-40.788 47.033-40.908Q47.329-41.028 47.647-41.028Q47.975-41.028 48.236-40.928Q48.498-40.829 48.674-40.647Q48.850-40.464 48.944-40.206Q49.038-39.948 49.038-39.616Q49.038-39.524 48.956-39.503L46.700-39.503L46.700-39.442Q46.700-38.854 46.984-38.471Q47.267-38.088 47.835-38.088Q48.156-38.088 48.424-38.281Q48.693-38.474 48.782-38.789Q48.788-38.830 48.864-38.844L48.956-38.844Q49.038-38.820 49.038-38.748Q49.038-38.741 49.031-38.714Q48.918-38.317 48.547-38.078Q48.177-37.839 47.753-37.839Q47.315-37.839 46.915-38.047Q46.516-38.256 46.276-38.623Q46.037-38.990 46.037-39.442M46.707-39.712L48.522-39.712Q48.522-39.989 48.424-40.241Q48.327-40.494 48.129-40.650Q47.931-40.805 47.647-40.805Q47.370-40.805 47.156-40.647Q46.943-40.488 46.825-40.233Q46.707-39.978 46.707-39.712\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(6.378 123.702)\">\u003Cpath d=\"M13.587-37.907L11.732-37.907L11.732-38.204Q12.005-38.204 12.173-38.251Q12.341-38.298 12.341-38.466L12.341-40.602Q12.341-40.817 12.278-40.913Q12.216-41.009 12.097-41.030Q11.978-41.052 11.732-41.052L11.732-41.348L12.923-41.434L12.923-40.700Q13.036-40.915 13.230-41.083Q13.423-41.251 13.661-41.343Q13.899-41.434 14.153-41.434Q15.321-41.434 15.321-40.356L15.321-38.466Q15.321-38.298 15.491-38.251Q15.661-38.204 15.931-38.204L15.931-37.907L14.075-37.907L14.075-38.204Q14.349-38.204 14.517-38.251Q14.685-38.298 14.685-38.466L14.685-40.341Q14.685-40.723 14.564-40.952Q14.442-41.180 14.091-41.180Q13.778-41.180 13.524-41.018Q13.271-40.856 13.124-40.587Q12.978-40.317 12.978-40.020L12.978-38.466Q12.978-38.298 13.148-38.251Q13.317-38.204 13.587-38.204L13.587-37.907M16.376-39.661Q16.376-40.141 16.608-40.557Q16.841-40.973 17.251-41.223Q17.661-41.473 18.138-41.473Q18.868-41.473 19.267-41.032Q19.665-40.591 19.665-39.860Q19.665-39.755 19.571-39.731L17.122-39.731L17.122-39.661Q17.122-39.251 17.243-38.895Q17.364-38.540 17.636-38.323Q17.907-38.106 18.337-38.106Q18.700-38.106 18.997-38.335Q19.294-38.563 19.396-38.915Q19.403-38.962 19.489-38.977L19.571-38.977Q19.665-38.950 19.665-38.868Q19.665-38.860 19.657-38.829Q19.595-38.602 19.456-38.419Q19.317-38.235 19.126-38.102Q18.935-37.969 18.716-37.899Q18.497-37.829 18.259-37.829Q17.888-37.829 17.550-37.966Q17.212-38.102 16.944-38.354Q16.677-38.606 16.526-38.946Q16.376-39.286 16.376-39.661M17.130-39.969L19.091-39.969Q19.091-40.274 18.989-40.565Q18.888-40.856 18.671-41.038Q18.454-41.219 18.138-41.219Q17.837-41.219 17.607-41.032Q17.376-40.844 17.253-40.553Q17.130-40.262 17.130-39.969M21.739-37.938L20.669-40.794Q20.603-40.973 20.472-41.016Q20.341-41.059 20.083-41.059L20.083-41.356L21.763-41.356L21.763-41.059Q21.314-41.059 21.314-40.860Q21.317-40.844 21.319-40.827Q21.321-40.809 21.321-40.794L22.114-38.700L22.825-40.610Q22.790-40.704 22.790-40.749Q22.790-40.794 22.755-40.794Q22.689-40.973 22.558-41.016Q22.427-41.059 22.173-41.059L22.173-41.356L23.763-41.356L23.763-41.059Q23.314-41.059 23.314-40.860Q23.317-40.841 23.319-40.823Q23.321-40.805 23.321-40.794L24.153-38.579L24.907-40.579Q24.931-40.637 24.931-40.708Q24.931-40.868 24.794-40.964Q24.657-41.059 24.489-41.059L24.489-41.356L25.876-41.356L25.876-41.059Q25.642-41.059 25.464-40.932Q25.286-40.805 25.204-40.579L24.220-37.938Q24.165-37.829 24.052-37.829L23.993-37.829Q23.880-37.829 23.837-37.938L22.978-40.212L22.122-37.938Q22.083-37.829 21.962-37.829L21.907-37.829Q21.794-37.829 21.739-37.938M28.786-37.907L26.403-37.907L26.403-38.204Q26.728-38.204 26.970-38.251Q27.212-38.298 27.212-38.466L27.212-42.809Q27.212-42.981 26.970-43.028Q26.728-43.075 26.403-43.075L26.403-43.372L29.349-43.372Q29.692-43.372 30.048-43.272Q30.403-43.173 30.698-42.981Q30.993-42.790 31.175-42.505Q31.357-42.219 31.357-41.860Q31.357-41.387 31.046-41.052Q30.735-40.716 30.271-40.544Q29.806-40.372 29.349-40.372L27.982-40.372L27.982-38.466Q27.982-38.298 28.224-38.251Q28.466-38.204 28.786-38.204L28.786-37.907M27.954-42.809L27.954-40.641L29.130-40.641Q29.817-40.641 30.155-40.917Q30.493-41.192 30.493-41.860Q30.493-42.524 30.155-42.800Q29.817-43.075 29.130-43.075L28.357-43.075Q28.138-43.075 28.046-43.032Q27.954-42.989 27.954-42.809M32.302-40.641Q32.302-41.235 32.534-41.766Q32.767-42.298 33.183-42.698Q33.599-43.098 34.132-43.319Q34.665-43.540 35.271-43.540Q35.708-43.540 36.106-43.358Q36.505-43.177 36.814-42.844L37.286-43.509Q37.317-43.540 37.349-43.540L37.396-43.540Q37.423-43.540 37.454-43.509Q37.485-43.477 37.485-43.450L37.485-41.313Q37.485-41.290 37.454-41.259Q37.423-41.227 37.396-41.227L37.278-41.227Q37.251-41.227 37.220-41.259Q37.189-41.290 37.189-41.313Q37.189-41.579 37.046-41.932Q36.903-42.286 36.724-42.524Q36.470-42.856 36.120-43.050Q35.771-43.243 35.364-43.243Q34.860-43.243 34.407-43.024Q33.954-42.805 33.661-42.411Q33.165-41.743 33.165-40.641Q33.165-40.110 33.302-39.643Q33.439-39.177 33.714-38.811Q33.989-38.446 34.409-38.241Q34.829-38.036 35.372-38.036Q35.860-38.036 36.284-38.280Q36.708-38.524 36.956-38.944Q37.204-39.364 37.204-39.860Q37.204-39.895 37.233-39.921Q37.263-39.946 37.294-39.946L37.396-39.946Q37.439-39.946 37.462-39.917Q37.485-39.887 37.485-39.844Q37.485-39.407 37.310-39.018Q37.134-38.630 36.823-38.346Q36.513-38.063 36.103-37.901Q35.692-37.739 35.271-37.739Q34.681-37.739 34.140-37.960Q33.599-38.180 33.183-38.585Q32.767-38.989 32.534-39.518Q32.302-40.048 32.302-40.641M43.927-38.884L38.614-38.884Q38.536-38.891 38.487-38.940Q38.439-38.989 38.439-39.067Q38.439-39.137 38.485-39.188Q38.532-39.239 38.614-39.251L43.927-39.251Q44.001-39.239 44.048-39.188Q44.095-39.137 44.095-39.067Q44.095-38.989 44.046-38.940Q43.997-38.891 43.927-38.884M43.927-40.571L38.614-40.571Q38.536-40.579 38.487-40.628Q38.439-40.677 38.439-40.755Q38.439-40.825 38.485-40.876Q38.532-40.927 38.614-40.938L43.927-40.938Q44.001-40.927 44.048-40.876Q44.095-40.825 44.095-40.755Q44.095-40.677 44.046-40.628Q43.997-40.579 43.927-40.571M46.614-37.938L45.392-40.794Q45.310-40.969 45.165-41.014Q45.021-41.059 44.751-41.059L44.751-41.356L46.462-41.356L46.462-41.059Q46.040-41.059 46.040-40.876Q46.040-40.841 46.056-40.794L47.001-38.602L47.841-40.579Q47.880-40.657 47.880-40.747Q47.880-40.887 47.774-40.973Q47.669-41.059 47.528-41.059L47.528-41.356L48.880-41.356L48.880-41.059Q48.356-41.059 48.142-40.579L47.017-37.938Q46.954-37.829 46.849-37.829L46.782-37.829Q46.669-37.829 46.614-37.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 123.702)\">\u003Cpath d=\"M48.939-38.739Q48.939-39.223 49.341-39.518Q49.744-39.813 50.294-39.932Q50.845-40.052 51.337-40.052L51.337-40.341Q51.337-40.567 51.222-40.774Q51.107-40.981 50.910-41.100Q50.712-41.219 50.482-41.219Q50.056-41.219 49.771-41.114Q49.841-41.087 49.888-41.032Q49.935-40.977 49.960-40.907Q49.986-40.837 49.986-40.762Q49.986-40.657 49.935-40.565Q49.884-40.473 49.792-40.423Q49.701-40.372 49.595-40.372Q49.490-40.372 49.398-40.423Q49.306-40.473 49.255-40.565Q49.205-40.657 49.205-40.762Q49.205-41.180 49.593-41.327Q49.982-41.473 50.482-41.473Q50.814-41.473 51.167-41.343Q51.521-41.212 51.749-40.958Q51.978-40.704 51.978-40.356L51.978-38.555Q51.978-38.423 52.050-38.313Q52.123-38.204 52.251-38.204Q52.376-38.204 52.445-38.309Q52.513-38.415 52.513-38.555L52.513-39.067L52.794-39.067L52.794-38.555Q52.794-38.352 52.677-38.194Q52.560-38.036 52.378-37.952Q52.197-37.868 51.994-37.868Q51.763-37.868 51.611-38.040Q51.458-38.212 51.427-38.442Q51.267-38.161 50.958-37.995Q50.650-37.829 50.298-37.829Q49.787-37.829 49.363-38.052Q48.939-38.274 48.939-38.739M49.626-38.739Q49.626-38.454 49.853-38.268Q50.080-38.083 50.373-38.083Q50.619-38.083 50.843-38.200Q51.068-38.317 51.203-38.520Q51.337-38.723 51.337-38.977L51.337-39.809Q51.072-39.809 50.787-39.755Q50.501-39.700 50.230-39.571Q49.958-39.442 49.792-39.235Q49.626-39.028 49.626-38.739M55.001-37.907L53.169-37.907L53.169-38.204Q53.443-38.204 53.611-38.251Q53.779-38.298 53.779-38.466L53.779-42.626Q53.779-42.841 53.716-42.936Q53.654-43.032 53.535-43.053Q53.416-43.075 53.169-43.075L53.169-43.372L54.392-43.458L54.392-38.466Q54.392-38.298 54.560-38.251Q54.728-38.204 55.001-38.204L55.001-37.907M55.681-40.641Q55.681-41.235 55.914-41.766Q56.146-42.298 56.562-42.698Q56.978-43.098 57.511-43.319Q58.044-43.540 58.650-43.540Q59.087-43.540 59.486-43.358Q59.884-43.177 60.193-42.844L60.666-43.509Q60.697-43.540 60.728-43.540L60.775-43.540Q60.802-43.540 60.833-43.509Q60.865-43.477 60.865-43.450L60.865-41.313Q60.865-41.290 60.833-41.259Q60.802-41.227 60.775-41.227L60.658-41.227Q60.630-41.227 60.599-41.259Q60.568-41.290 60.568-41.313Q60.568-41.579 60.425-41.932Q60.283-42.286 60.103-42.524Q59.849-42.856 59.499-43.050Q59.150-43.243 58.744-43.243Q58.240-43.243 57.787-43.024Q57.333-42.805 57.041-42.411Q56.544-41.743 56.544-40.641Q56.544-40.110 56.681-39.643Q56.818-39.177 57.093-38.811Q57.369-38.446 57.789-38.241Q58.208-38.036 58.751-38.036Q59.240-38.036 59.664-38.280Q60.087-38.524 60.335-38.944Q60.583-39.364 60.583-39.860Q60.583-39.895 60.613-39.921Q60.642-39.946 60.673-39.946L60.775-39.946Q60.818-39.946 60.841-39.917Q60.865-39.887 60.865-39.844Q60.865-39.407 60.689-39.018Q60.513-38.630 60.203-38.346Q59.892-38.063 59.482-37.901Q59.072-37.739 58.650-37.739Q58.060-37.739 57.519-37.960Q56.978-38.180 56.562-38.585Q56.146-38.989 55.914-39.518Q55.681-40.048 55.681-40.641M67.306-38.884L61.994-38.884Q61.916-38.891 61.867-38.940Q61.818-38.989 61.818-39.067Q61.818-39.137 61.865-39.188Q61.912-39.239 61.994-39.251L67.306-39.251Q67.380-39.239 67.427-39.188Q67.474-39.137 67.474-39.067Q67.474-38.989 67.425-38.940Q67.376-38.891 67.306-38.884M67.306-40.571L61.994-40.571Q61.916-40.579 61.867-40.628Q61.818-40.677 61.818-40.755Q61.818-40.825 61.865-40.876Q61.912-40.927 61.994-40.938L67.306-40.938Q67.380-40.927 67.427-40.876Q67.474-40.825 67.474-40.755Q67.474-40.677 67.425-40.628Q67.376-40.579 67.306-40.571M70.076-37.739Q69.373-37.739 68.972-38.139Q68.572-38.540 68.427-39.149Q68.283-39.759 68.283-40.458Q68.283-40.981 68.353-41.444Q68.423-41.907 68.617-42.319Q68.810-42.731 69.167-42.979Q69.525-43.227 70.076-43.227Q70.626-43.227 70.984-42.979Q71.341-42.731 71.533-42.321Q71.724-41.911 71.794-41.442Q71.865-40.973 71.865-40.458Q71.865-39.759 71.722-39.151Q71.580-38.544 71.179-38.141Q70.779-37.739 70.076-37.739M70.076-37.997Q70.548-37.997 70.781-38.432Q71.013-38.868 71.068-39.407Q71.123-39.946 71.123-40.587Q71.123-41.583 70.939-42.276Q70.755-42.969 70.076-42.969Q69.708-42.969 69.488-42.731Q69.267-42.493 69.171-42.136Q69.076-41.778 69.050-41.407Q69.025-41.036 69.025-40.587Q69.025-39.946 69.080-39.407Q69.134-38.868 69.367-38.432Q69.599-37.997 70.076-37.997M73.826-37.907L72.330-37.907L72.330-38.204Q72.962-38.204 73.384-38.684L74.154-39.594L73.162-40.794Q73.005-40.973 72.843-41.016Q72.681-41.059 72.376-41.059L72.376-41.356L74.064-41.356L74.064-41.059Q73.970-41.059 73.894-41.016Q73.818-40.973 73.818-40.884Q73.818-40.841 73.849-40.794L74.505-40.005L74.986-40.579Q75.103-40.716 75.103-40.852Q75.103-40.942 75.052-41.001Q75.001-41.059 74.919-41.059L74.919-41.356L76.408-41.356L76.408-41.059Q75.771-41.059 75.361-40.579L74.681-39.778L75.767-38.466Q75.927-38.290 76.087-38.247Q76.248-38.204 76.552-38.204L76.552-37.907L74.865-37.907L74.865-38.204Q74.955-38.204 75.033-38.247Q75.111-38.290 75.111-38.380Q75.111-38.403 75.080-38.466L74.337-39.372L73.751-38.684Q73.634-38.548 73.634-38.411Q73.634-38.325 73.685-38.264Q73.736-38.204 73.826-38.204L73.826-37.907M78.802-37.739Q78.099-37.739 77.699-38.139Q77.298-38.540 77.154-39.149Q77.009-39.759 77.009-40.458Q77.009-40.981 77.080-41.444Q77.150-41.907 77.343-42.319Q77.537-42.731 77.894-42.979Q78.251-43.227 78.802-43.227Q79.353-43.227 79.710-42.979Q80.068-42.731 80.259-42.321Q80.451-41.911 80.521-41.442Q80.591-40.973 80.591-40.458Q80.591-39.759 80.449-39.151Q80.306-38.544 79.906-38.141Q79.505-37.739 78.802-37.739M78.802-37.997Q79.275-37.997 79.507-38.432Q79.740-38.868 79.794-39.407Q79.849-39.946 79.849-40.587Q79.849-41.583 79.666-42.276Q79.482-42.969 78.802-42.969Q78.435-42.969 78.214-42.731Q77.994-42.493 77.898-42.136Q77.802-41.778 77.777-41.407Q77.751-41.036 77.751-40.587Q77.751-39.946 77.806-39.407Q77.861-38.868 78.093-38.432Q78.326-37.997 78.802-37.997M84.521-37.907L81.728-37.907L81.728-38.204Q82.791-38.204 82.791-38.466L82.791-42.634Q82.361-42.419 81.681-42.419L81.681-42.716Q82.701-42.716 83.216-43.227L83.361-43.227Q83.435-43.208 83.455-43.130L83.455-38.466Q83.455-38.204 84.521-38.204L84.521-37.907M87.654-39.219L85.412-39.219L85.412-39.516L87.982-43.173Q88.021-43.227 88.083-43.227L88.228-43.227Q88.279-43.227 88.310-43.196Q88.341-43.165 88.341-43.114L88.341-39.516L89.173-39.516L89.173-39.219L88.341-39.219L88.341-38.466Q88.341-38.204 89.166-38.204L89.166-37.907L86.830-37.907L86.830-38.204Q87.654-38.204 87.654-38.466L87.654-39.219M87.708-42.321L85.740-39.516L87.708-39.516\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 94.967h236.157\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(205.548 -25.03)\">\u003Cpath d=\"M11.642-38.145L11.642-38.235Q11.700-38.442 11.892-38.466L12.603-38.466L12.603-40.794L11.892-40.794Q11.696-40.817 11.642-41.036L11.642-41.122Q11.700-41.333 11.892-41.356L12.993-41.356Q13.192-41.337 13.243-41.122L13.243-40.794Q13.505-41.079 13.860-41.237Q14.216-41.395 14.603-41.395Q14.896-41.395 15.130-41.261Q15.364-41.126 15.364-40.860Q15.364-40.692 15.255-40.575Q15.146-40.458 14.978-40.458Q14.825-40.458 14.710-40.569Q14.595-40.680 14.595-40.837Q14.220-40.837 13.905-40.636Q13.591-40.434 13.417-40.100Q13.243-39.766 13.243-39.387L13.243-38.466L14.189-38.466Q14.396-38.442 14.435-38.235L14.435-38.145Q14.396-37.930 14.189-37.907L11.892-37.907Q11.700-37.930 11.642-38.145M19.177-39.395L16.735-39.395Q16.790-39.118 16.987-38.895Q17.185-38.673 17.462-38.550Q17.739-38.427 18.024-38.427Q18.497-38.427 18.720-38.716Q18.728-38.727 18.784-38.833Q18.841-38.938 18.890-38.981Q18.939-39.024 19.032-39.036L19.177-39.036Q19.368-39.016 19.427-38.802L19.427-38.747Q19.360-38.446 19.130-38.249Q18.899-38.052 18.587-37.960Q18.274-37.868 17.970-37.868Q17.485-37.868 17.046-38.096Q16.607-38.325 16.339-38.725Q16.071-39.126 16.071-39.618L16.071-39.677Q16.071-40.145 16.317-40.548Q16.564-40.950 16.972-41.184Q17.380-41.419 17.849-41.419Q18.353-41.419 18.706-41.196Q19.060-40.973 19.243-40.585Q19.427-40.196 19.427-39.692L19.427-39.634Q19.368-39.419 19.177-39.395M16.743-39.946L18.771-39.946Q18.724-40.356 18.485-40.608Q18.247-40.860 17.849-40.860Q17.454-40.860 17.148-40.598Q16.841-40.337 16.743-39.946M21.110-39.012L21.110-40.794L20.360-40.794Q20.161-40.817 20.110-41.036L20.110-41.122Q20.161-41.333 20.360-41.356L21.110-41.356L21.110-42.106Q21.161-42.313 21.360-42.341L21.505-42.341Q21.700-42.313 21.751-42.106L21.751-41.356L23.110-41.356Q23.302-41.337 23.360-41.122L23.360-41.036Q23.306-40.817 23.110-40.794L21.751-40.794L21.751-39.044Q21.751-38.427 22.325-38.427Q22.575-38.427 22.739-38.612Q22.903-38.798 22.903-39.044Q22.903-39.137 22.976-39.208Q23.048-39.278 23.149-39.290L23.294-39.290Q23.493-39.266 23.544-39.059L23.544-39.012Q23.544-38.688 23.360-38.425Q23.177-38.161 22.884-38.014Q22.591-37.868 22.271-37.868Q21.759-37.868 21.435-38.178Q21.110-38.489 21.110-39.012\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(205.548 -25.03)\">\u003Cpath d=\"M32.453-35.915Q31.840-36.372 31.438-37.007Q31.035-37.641 30.840-38.387Q30.645-39.134 30.645-39.907Q30.645-40.680 30.840-41.427Q31.035-42.173 31.438-42.807Q31.840-43.442 32.453-43.899Q32.465-43.903 32.473-43.905Q32.481-43.907 32.492-43.907L32.570-43.907Q32.609-43.907 32.635-43.880Q32.660-43.852 32.660-43.809Q32.660-43.759 32.629-43.739Q32.121-43.286 31.799-42.663Q31.477-42.040 31.336-41.344Q31.195-40.649 31.195-39.907Q31.195-39.173 31.334-38.473Q31.473-37.774 31.797-37.149Q32.121-36.524 32.629-36.075Q32.660-36.055 32.660-36.005Q32.660-35.962 32.635-35.934Q32.609-35.907 32.570-35.907L32.492-35.907Q32.484-35.911 32.475-35.913Q32.465-35.915 32.453-35.915M35.875-37.907L33.492-37.907L33.492-38.204Q33.816-38.204 34.059-38.251Q34.301-38.298 34.301-38.466L34.301-42.809Q34.301-42.981 34.059-43.028Q33.816-43.075 33.492-43.075L33.492-43.372L36.438-43.372Q36.781-43.372 37.137-43.272Q37.492-43.173 37.787-42.981Q38.082-42.790 38.264-42.505Q38.445-42.219 38.445-41.860Q38.445-41.387 38.135-41.052Q37.824-40.716 37.359-40.544Q36.895-40.372 36.438-40.372L35.070-40.372L35.070-38.466Q35.070-38.298 35.313-38.251Q35.555-38.204 35.875-38.204L35.875-37.907M35.043-42.809L35.043-40.641L36.219-40.641Q36.906-40.641 37.244-40.917Q37.582-41.192 37.582-41.860Q37.582-42.524 37.244-42.800Q36.906-43.075 36.219-43.075L35.445-43.075Q35.227-43.075 35.135-43.032Q35.043-42.989 35.043-42.809M39.391-40.641Q39.391-41.235 39.623-41.766Q39.856-42.298 40.272-42.698Q40.688-43.098 41.221-43.319Q41.754-43.540 42.359-43.540Q42.797-43.540 43.195-43.358Q43.594-43.177 43.902-42.844L44.375-43.509Q44.406-43.540 44.438-43.540L44.484-43.540Q44.512-43.540 44.543-43.509Q44.574-43.477 44.574-43.450L44.574-41.313Q44.574-41.290 44.543-41.259Q44.512-41.227 44.484-41.227L44.367-41.227Q44.340-41.227 44.309-41.259Q44.277-41.290 44.277-41.313Q44.277-41.579 44.135-41.932Q43.992-42.286 43.813-42.524Q43.559-42.856 43.209-43.050Q42.859-43.243 42.453-43.243Q41.949-43.243 41.496-43.024Q41.043-42.805 40.750-42.411Q40.254-41.743 40.254-40.641Q40.254-40.110 40.391-39.643Q40.527-39.177 40.803-38.811Q41.078-38.446 41.498-38.241Q41.918-38.036 42.461-38.036Q42.949-38.036 43.373-38.280Q43.797-38.524 44.045-38.944Q44.293-39.364 44.293-39.860Q44.293-39.895 44.322-39.921Q44.352-39.946 44.383-39.946L44.484-39.946Q44.527-39.946 44.551-39.917Q44.574-39.887 44.574-39.844Q44.574-39.407 44.398-39.018Q44.223-38.630 43.912-38.346Q43.602-38.063 43.191-37.901Q42.781-37.739 42.359-37.739Q41.770-37.739 41.229-37.960Q40.688-38.180 40.272-38.585Q39.856-38.989 39.623-39.518Q39.391-40.048 39.391-40.641\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(205.548 -25.03)\">\u003Cpath d=\"M53.855-38.884L48.542-38.884Q48.464-38.891 48.415-38.940Q48.367-38.989 48.367-39.067Q48.367-39.137 48.414-39.188Q48.460-39.239 48.542-39.251L53.855-39.251Q53.929-39.239 53.976-39.188Q54.023-39.137 54.023-39.067Q54.023-38.989 53.974-38.940Q53.925-38.891 53.855-38.884M53.855-40.571L48.542-40.571Q48.464-40.579 48.415-40.628Q48.367-40.677 48.367-40.755Q48.367-40.825 48.414-40.876Q48.460-40.927 48.542-40.938L53.855-40.938Q53.929-40.927 53.976-40.876Q54.023-40.825 54.023-40.755Q54.023-40.677 53.974-40.628Q53.925-40.579 53.855-40.571\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(205.548 -25.03)\">\u003Cpath d=\"M59.460-37.829Q59.026-37.829 58.694-38.067Q58.362-38.305 58.142-38.694Q57.921-39.083 57.814-39.520Q57.706-39.958 57.706-40.356Q57.706-40.747 57.816-41.190Q57.925-41.634 58.142-42.014Q58.359-42.395 58.693-42.636Q59.026-42.876 59.460-42.876Q60.015-42.876 60.415-42.477Q60.816-42.079 61.013-41.493Q61.210-40.907 61.210-40.356Q61.210-39.802 61.013-39.214Q60.816-38.626 60.415-38.227Q60.015-37.829 59.460-37.829M59.460-38.387Q59.761-38.387 59.978-38.604Q60.194-38.821 60.321-39.149Q60.448-39.477 60.509-39.823Q60.569-40.169 60.569-40.450Q60.569-40.700 60.507-41.026Q60.444-41.352 60.314-41.643Q60.183-41.934 59.970-42.124Q59.757-42.313 59.460-42.313Q59.085-42.313 58.833-42.001Q58.581-41.688 58.464-41.255Q58.347-40.821 58.347-40.450Q58.347-40.052 58.460-39.571Q58.573-39.091 58.821-38.739Q59.069-38.387 59.460-38.387M61.843-38.145L61.843-38.235Q61.882-38.442 62.089-38.466L62.495-38.466L63.425-39.684L62.554-40.794L62.136-40.794Q61.941-40.813 61.890-41.036L61.890-41.122Q61.941-41.333 62.136-41.356L63.296-41.356Q63.495-41.333 63.546-41.122L63.546-41.036Q63.495-40.817 63.296-40.794L63.187-40.794L63.683-40.137L64.159-40.794L64.042-40.794Q63.843-40.817 63.792-41.036L63.792-41.122Q63.843-41.333 64.042-41.356L65.202-41.356Q65.398-41.337 65.448-41.122L65.448-41.036Q65.398-40.817 65.202-40.794L64.792-40.794L63.944-39.684L64.905-38.466L65.312-38.466Q65.511-38.442 65.562-38.235L65.562-38.145Q65.523-37.930 65.312-37.907L64.159-37.907Q63.952-37.930 63.913-38.145L63.913-38.235Q63.952-38.442 64.159-38.466L64.288-38.466L63.683-39.321L63.097-38.466L63.241-38.466Q63.448-38.442 63.487-38.235L63.487-38.145Q63.448-37.930 63.241-37.907L62.089-37.907Q61.894-37.927 61.843-38.145M67.952-37.829Q67.519-37.829 67.187-38.067Q66.855-38.305 66.634-38.694Q66.413-39.083 66.306-39.520Q66.198-39.958 66.198-40.356Q66.198-40.747 66.308-41.190Q66.417-41.634 66.634-42.014Q66.851-42.395 67.185-42.636Q67.519-42.876 67.952-42.876Q68.507-42.876 68.907-42.477Q69.308-42.079 69.505-41.493Q69.702-40.907 69.702-40.356Q69.702-39.802 69.505-39.214Q69.308-38.626 68.907-38.227Q68.507-37.829 67.952-37.829M67.952-38.387Q68.253-38.387 68.470-38.604Q68.687-38.821 68.814-39.149Q68.941-39.477 69.001-39.823Q69.062-40.169 69.062-40.450Q69.062-40.700 68.999-41.026Q68.937-41.352 68.806-41.643Q68.675-41.934 68.462-42.124Q68.249-42.313 67.952-42.313Q67.577-42.313 67.325-42.001Q67.073-41.688 66.956-41.255Q66.839-40.821 66.839-40.450Q66.839-40.052 66.952-39.571Q67.066-39.091 67.314-38.739Q67.562-38.387 67.952-38.387M70.933-38.145L70.933-38.235Q70.984-38.442 71.183-38.466L71.999-38.466L71.999-41.649Q71.620-41.341 71.167-41.341Q70.937-41.341 70.886-41.571L70.886-41.661Q70.937-41.876 71.132-41.899Q71.460-41.899 71.714-42.137Q71.968-42.376 72.109-42.723Q72.179-42.852 72.335-42.876L72.390-42.876Q72.585-42.856 72.636-42.641L72.636-38.466L73.452-38.466Q73.651-38.442 73.702-38.235L73.702-38.145Q73.651-37.930 73.452-37.907L71.183-37.907Q70.984-37.930 70.933-38.145M77.835-39.395L75.394-39.395Q75.448-39.118 75.646-38.895Q75.843-38.673 76.120-38.550Q76.398-38.427 76.683-38.427Q77.155-38.427 77.378-38.716Q77.386-38.727 77.443-38.833Q77.499-38.938 77.548-38.981Q77.597-39.024 77.691-39.036L77.835-39.036Q78.026-39.016 78.085-38.802L78.085-38.747Q78.019-38.446 77.788-38.249Q77.558-38.052 77.245-37.960Q76.933-37.868 76.628-37.868Q76.144-37.868 75.704-38.096Q75.265-38.325 74.997-38.725Q74.730-39.126 74.730-39.618L74.730-39.677Q74.730-40.145 74.976-40.548Q75.222-40.950 75.630-41.184Q76.038-41.419 76.507-41.419Q77.011-41.419 77.364-41.196Q77.718-40.973 77.901-40.585Q78.085-40.196 78.085-39.692L78.085-39.634Q78.026-39.419 77.835-39.395M75.401-39.946L77.429-39.946Q77.382-40.356 77.144-40.608Q76.905-40.860 76.507-40.860Q76.112-40.860 75.806-40.598Q75.499-40.337 75.401-39.946\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(205.548 -25.03)\">\u003Cpath d=\"M79.230-35.907L79.148-35.907Q79.112-35.907 79.087-35.936Q79.062-35.966 79.062-36.005Q79.062-36.055 79.093-36.075Q79.480-36.411 79.763-36.860Q80.046-37.309 80.212-37.809Q80.378-38.309 80.452-38.827Q80.526-39.344 80.526-39.907Q80.526-40.477 80.452-40.993Q80.378-41.509 80.212-42.005Q80.046-42.501 79.767-42.948Q79.487-43.395 79.093-43.739Q79.062-43.759 79.062-43.809Q79.062-43.848 79.087-43.878Q79.112-43.907 79.148-43.907L79.230-43.907Q79.241-43.907 79.251-43.905Q79.261-43.903 79.269-43.899Q79.882-43.442 80.284-42.807Q80.687-42.173 80.882-41.427Q81.077-40.680 81.077-39.907Q81.077-39.134 80.882-38.387Q80.687-37.641 80.284-37.007Q79.882-36.372 79.269-35.915Q79.257-35.915 79.249-35.913Q79.241-35.911 79.230-35.907\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M213.434-50.71H449.59\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(182.375 2.43)\">\u003Cpath d=\"M14.112-37.907L11.798-37.907L11.798-38.187Q12.520-38.187 12.520-38.396L12.520-42.197Q12.520-42.408 11.798-42.408L11.798-42.689L15.982-42.689L16.194-41.052L15.927-41.052Q15.849-41.663 15.697-41.942Q15.544-42.220 15.240-42.314Q14.936-42.408 14.311-42.408L13.576-42.408Q13.388-42.408 13.299-42.374Q13.210-42.340 13.210-42.197L13.210-40.440L13.764-40.440Q14.133-40.440 14.317-40.494Q14.502-40.549 14.581-40.722Q14.659-40.894 14.659-41.260L14.926-41.260L14.926-39.343L14.659-39.343Q14.659-39.708 14.581-39.881Q14.502-40.053 14.317-40.106Q14.133-40.159 13.764-40.159L13.210-40.159L13.210-38.396Q13.210-38.187 14.112-38.187\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(182.375 2.43)\">\u003Cpath d=\"M16.206-39.442Q16.206-39.763 16.331-40.052Q16.456-40.341 16.682-40.564Q16.907-40.788 17.203-40.908Q17.498-41.028 17.816-41.028Q18.144-41.028 18.406-40.928Q18.667-40.829 18.843-40.647Q19.019-40.464 19.113-40.206Q19.207-39.948 19.207-39.616Q19.207-39.524 19.125-39.503L16.870-39.503L16.870-39.442Q16.870-38.854 17.153-38.471Q17.437-38.088 18.004-38.088Q18.326-38.088 18.594-38.281Q18.862-38.474 18.951-38.789Q18.958-38.830 19.033-38.844L19.125-38.844Q19.207-38.820 19.207-38.748Q19.207-38.741 19.201-38.714Q19.088-38.317 18.717-38.078Q18.346-37.839 17.922-37.839Q17.485-37.839 17.085-38.047Q16.685-38.256 16.446-38.623Q16.206-38.990 16.206-39.442M16.876-39.712L18.691-39.712Q18.691-39.989 18.594-40.241Q18.496-40.494 18.298-40.650Q18.100-40.805 17.816-40.805Q17.539-40.805 17.326-40.647Q17.112-40.488 16.994-40.233Q16.876-39.978 16.876-39.712M20.322-38.748L20.322-40.645L19.683-40.645L19.683-40.867Q20-40.867 20.217-41.077Q20.434-41.287 20.535-41.597Q20.636-41.906 20.636-42.214L20.903-42.214L20.903-40.925L21.979-40.925L21.979-40.645L20.903-40.645L20.903-38.761Q20.903-38.485 21.007-38.286Q21.111-38.088 21.371-38.088Q21.528-38.088 21.634-38.192Q21.740-38.297 21.790-38.450Q21.839-38.604 21.839-38.761L21.839-39.175L22.106-39.175L22.106-38.748Q22.106-38.522 22.007-38.312Q21.908-38.102 21.723-37.970Q21.538-37.839 21.309-37.839Q20.872-37.839 20.597-38.076Q20.322-38.314 20.322-38.748M22.916-39.418Q22.916-39.746 23.051-40.047Q23.186-40.347 23.422-40.568Q23.658-40.788 23.962-40.908Q24.266-41.028 24.591-41.028Q25.097-41.028 25.445-40.925Q25.794-40.823 25.794-40.447Q25.794-40.300 25.696-40.199Q25.599-40.098 25.452-40.098Q25.298-40.098 25.199-40.197Q25.100-40.296 25.100-40.447Q25.100-40.635 25.240-40.727Q25.038-40.778 24.598-40.778Q24.242-40.778 24.013-40.582Q23.784-40.385 23.683-40.076Q23.582-39.766 23.582-39.418Q23.582-39.069 23.709-38.763Q23.835-38.457 24.090-38.273Q24.345-38.088 24.700-38.088Q24.922-38.088 25.107-38.172Q25.291-38.256 25.426-38.411Q25.561-38.567 25.620-38.775Q25.633-38.830 25.688-38.830L25.801-38.830Q25.831-38.830 25.854-38.806Q25.876-38.782 25.876-38.748L25.876-38.727Q25.790-38.440 25.602-38.242Q25.414-38.044 25.150-37.941Q24.885-37.839 24.591-37.839Q24.160-37.839 23.772-38.045Q23.384-38.252 23.150-38.615Q22.916-38.977 22.916-39.418\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(182.375 2.43)\">\u003Cpath d=\"M27.950-37.907L26.316-37.907L26.316-38.187Q26.545-38.187 26.694-38.221Q26.843-38.256 26.843-38.396L26.843-42.015Q26.843-42.285 26.735-42.347Q26.627-42.408 26.316-42.408L26.316-42.689L27.396-42.764L27.396-40.378Q27.502-40.563 27.680-40.705Q27.858-40.846 28.066-40.920Q28.275-40.993 28.500-40.993Q29.006-40.993 29.290-40.770Q29.574-40.546 29.574-40.050L29.574-38.396Q29.574-38.259 29.722-38.223Q29.871-38.187 30.097-38.187L30.097-37.907L28.466-37.907L28.466-38.187Q28.695-38.187 28.844-38.221Q28.993-38.256 28.993-38.396L28.993-40.036Q28.993-40.371 28.873-40.571Q28.753-40.771 28.439-40.771Q28.169-40.771 27.935-40.635Q27.701-40.498 27.562-40.264Q27.424-40.030 27.424-39.756L27.424-38.396Q27.424-38.259 27.574-38.223Q27.725-38.187 27.950-38.187\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(216.929 2)\">\u003Cpath d=\"M13.517-37.907L11.739-37.907L11.739-38.204Q12.013-38.204 12.181-38.251Q12.349-38.298 12.349-38.466L12.349-40.602Q12.349-40.817 12.292-40.913Q12.235-41.009 12.122-41.030Q12.009-41.052 11.763-41.052L11.763-41.348L12.962-41.434L12.962-38.466Q12.962-38.298 13.108-38.251Q13.255-38.204 13.517-38.204L13.517-37.907M12.075-42.829Q12.075-43.020 12.210-43.151Q12.345-43.282 12.540-43.282Q12.661-43.282 12.765-43.219Q12.868-43.157 12.931-43.053Q12.993-42.950 12.993-42.829Q12.993-42.634 12.862-42.499Q12.732-42.364 12.540-42.364Q12.341-42.364 12.208-42.497Q12.075-42.630 12.075-42.829M14.060-39.634Q14.060-40.130 14.310-40.555Q14.560-40.981 14.980-41.227Q15.399-41.473 15.899-41.473Q16.439-41.473 16.829-41.348Q17.220-41.223 17.220-40.809Q17.220-40.704 17.169-40.612Q17.118-40.520 17.026-40.469Q16.935-40.419 16.825-40.419Q16.720-40.419 16.628-40.469Q16.536-40.520 16.485-40.612Q16.435-40.704 16.435-40.809Q16.435-41.032 16.603-41.137Q16.380-41.196 15.907-41.196Q15.610-41.196 15.396-41.057Q15.181-40.919 15.050-40.688Q14.919-40.458 14.860-40.188Q14.802-39.919 14.802-39.634Q14.802-39.239 14.935-38.889Q15.067-38.540 15.339-38.323Q15.610-38.106 16.009-38.106Q16.384-38.106 16.659-38.323Q16.935-38.540 17.036-38.899Q17.052-38.962 17.114-38.962L17.220-38.962Q17.255-38.962 17.280-38.934Q17.306-38.907 17.306-38.868L17.306-38.844Q17.173-38.364 16.788-38.096Q16.403-37.829 15.899-37.829Q15.536-37.829 15.202-37.966Q14.868-38.102 14.608-38.352Q14.349-38.602 14.204-38.938Q14.060-39.274 14.060-39.634M17.794-39.602Q17.794-40.106 18.050-40.538Q18.306-40.969 18.741-41.221Q19.177-41.473 19.677-41.473Q20.064-41.473 20.405-41.329Q20.747-41.184 21.009-40.923Q21.271-40.661 21.413-40.325Q21.556-39.989 21.556-39.602Q21.556-39.110 21.292-38.700Q21.028-38.290 20.599-38.059Q20.169-37.829 19.677-37.829Q19.185-37.829 18.751-38.061Q18.317-38.294 18.056-38.702Q17.794-39.110 17.794-39.602M19.677-38.106Q20.134-38.106 20.386-38.329Q20.638-38.552 20.726-38.903Q20.814-39.255 20.814-39.700Q20.814-40.130 20.720-40.468Q20.626-40.805 20.372-41.012Q20.118-41.219 19.677-41.219Q19.028-41.219 18.784-40.803Q18.540-40.387 18.540-39.700Q18.540-39.255 18.628-38.903Q18.716-38.552 18.968-38.329Q19.220-38.106 19.677-38.106\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 2)\">\u003Cpath d=\"M24.099-37.829Q23.618-37.829 23.210-38.073Q22.802-38.317 22.564-38.731Q22.325-39.145 22.325-39.634Q22.325-40.126 22.583-40.542Q22.841-40.958 23.273-41.196Q23.704-41.434 24.196-41.434Q24.817-41.434 25.267-40.997L25.267-42.626Q25.267-42.841 25.204-42.936Q25.142-43.032 25.024-43.053Q24.907-43.075 24.661-43.075L24.661-43.372L25.884-43.458L25.884-38.649Q25.884-38.438 25.946-38.343Q26.009-38.247 26.126-38.225Q26.243-38.204 26.493-38.204L26.493-37.907L25.243-37.829L25.243-38.313Q24.778-37.829 24.099-37.829M24.165-38.083Q24.505-38.083 24.798-38.274Q25.091-38.466 25.243-38.762L25.243-40.594Q25.095-40.868 24.833-41.024Q24.571-41.180 24.259-41.180Q23.634-41.180 23.351-40.733Q23.067-40.286 23.067-39.626Q23.067-38.981 23.319-38.532Q23.571-38.083 24.165-38.083M27.001-39.661Q27.001-40.141 27.233-40.557Q27.466-40.973 27.876-41.223Q28.286-41.473 28.763-41.473Q29.493-41.473 29.892-41.032Q30.290-40.591 30.290-39.860Q30.290-39.755 30.196-39.731L27.747-39.731L27.747-39.661Q27.747-39.251 27.868-38.895Q27.989-38.540 28.261-38.323Q28.532-38.106 28.962-38.106Q29.325-38.106 29.622-38.335Q29.919-38.563 30.021-38.915Q30.028-38.962 30.114-38.977L30.196-38.977Q30.290-38.950 30.290-38.868Q30.290-38.860 30.282-38.829Q30.220-38.602 30.081-38.419Q29.942-38.235 29.751-38.102Q29.560-37.969 29.341-37.899Q29.122-37.829 28.884-37.829Q28.513-37.829 28.175-37.966Q27.837-38.102 27.569-38.354Q27.302-38.606 27.151-38.946Q27.001-39.286 27.001-39.661M27.755-39.969L29.716-39.969Q29.716-40.274 29.614-40.565Q29.513-40.856 29.296-41.038Q29.079-41.219 28.763-41.219Q28.462-41.219 28.232-41.032Q28.001-40.844 27.878-40.553Q27.755-40.262 27.755-39.969M36.501-38.884L31.189-38.884Q31.110-38.891 31.062-38.940Q31.013-38.989 31.013-39.067Q31.013-39.137 31.060-39.188Q31.107-39.239 31.189-39.251L36.501-39.251Q36.575-39.239 36.622-39.188Q36.669-39.137 36.669-39.067Q36.669-38.989 36.620-38.940Q36.571-38.891 36.501-38.884M36.501-40.571L31.189-40.571Q31.110-40.579 31.062-40.628Q31.013-40.677 31.013-40.755Q31.013-40.825 31.060-40.876Q31.107-40.927 31.189-40.938L36.501-40.938Q36.575-40.927 36.622-40.876Q36.669-40.825 36.669-40.755Q36.669-40.677 36.620-40.628Q36.571-40.579 36.501-40.571M38.142-38.251Q38.372-38.012 38.919-38.012Q39.173-38.012 39.396-38.136Q39.618-38.259 39.788-38.475Q39.958-38.692 40.052-38.923Q40.177-39.235 40.216-39.575Q40.255-39.915 40.255-40.364Q40.087-40.032 39.804-39.837Q39.521-39.641 39.181-39.641Q38.817-39.641 38.505-39.786Q38.192-39.930 37.970-40.182Q37.747-40.434 37.624-40.761Q37.501-41.087 37.501-41.442Q37.501-41.938 37.743-42.348Q37.985-42.759 38.403-42.993Q38.821-43.227 39.317-43.227Q40.274-43.227 40.655-42.397Q41.036-41.567 41.036-40.493Q41.036-39.860 40.786-39.216Q40.536-38.571 40.054-38.155Q39.571-37.739 38.919-37.739Q38.415-37.739 38.065-37.956Q37.716-38.173 37.716-38.641Q37.716-38.809 37.829-38.923Q37.942-39.036 38.110-39.036Q38.216-39.036 38.308-38.985Q38.399-38.934 38.450-38.843Q38.501-38.751 38.501-38.641Q38.501-38.493 38.399-38.372Q38.298-38.251 38.142-38.251M39.220-39.899Q39.552-39.899 39.784-40.110Q40.017-40.321 40.128-40.643Q40.239-40.966 40.239-41.282Q40.239-41.380 40.228-41.434Q40.231-41.442 40.235-41.454Q40.239-41.466 40.239-41.473Q40.239-41.716 40.196-41.979Q40.153-42.243 40.052-42.471Q39.950-42.700 39.769-42.843Q39.587-42.985 39.317-42.985Q38.884-42.985 38.657-42.764Q38.431-42.544 38.358-42.212Q38.286-41.880 38.286-41.442Q38.286-40.997 38.343-40.675Q38.399-40.352 38.605-40.126Q38.810-39.899 39.220-39.899M42.220-36.501Q42.220-36.540 42.243-36.563Q42.517-36.848 42.659-37.212Q42.802-37.575 42.802-37.962Q42.704-37.907 42.579-37.907Q42.388-37.907 42.251-38.040Q42.114-38.173 42.114-38.372Q42.114-38.563 42.251-38.696Q42.388-38.829 42.579-38.829Q43.060-38.829 43.060-37.954Q43.060-37.665 42.987-37.384Q42.915-37.102 42.773-36.848Q42.630-36.594 42.435-36.387Q42.403-36.356 42.364-36.356Q42.317-36.356 42.269-36.401Q42.220-36.446 42.220-36.501M42.114-40.899Q42.114-41.083 42.251-41.219Q42.388-41.356 42.579-41.356Q42.771-41.356 42.903-41.223Q43.036-41.091 43.036-40.899Q43.036-40.700 42.903-40.567Q42.771-40.434 42.579-40.434Q42.388-40.434 42.251-40.571Q42.114-40.708 42.114-40.899\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 2)\">\u003Cpath d=\"M48.639-37.938L47.416-40.794Q47.334-40.969 47.190-41.014Q47.045-41.059 46.776-41.059L46.776-41.356L48.487-41.356L48.487-41.059Q48.065-41.059 48.065-40.876Q48.065-40.841 48.080-40.794L49.026-38.602L49.866-40.579Q49.905-40.657 49.905-40.747Q49.905-40.887 49.799-40.973Q49.694-41.059 49.553-41.059L49.553-41.356L50.905-41.356L50.905-41.059Q50.381-41.059 50.166-40.579L49.041-37.938Q48.979-37.829 48.873-37.829L48.807-37.829Q48.694-37.829 48.639-37.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 2)\">\u003Cpath d=\"M50.950-38.739Q50.950-39.223 51.352-39.518Q51.755-39.813 52.305-39.932Q52.856-40.052 53.348-40.052L53.348-40.341Q53.348-40.567 53.233-40.774Q53.118-40.981 52.921-41.100Q52.723-41.219 52.493-41.219Q52.067-41.219 51.782-41.114Q51.852-41.087 51.899-41.032Q51.946-40.977 51.971-40.907Q51.997-40.837 51.997-40.762Q51.997-40.657 51.946-40.565Q51.895-40.473 51.803-40.423Q51.712-40.372 51.606-40.372Q51.501-40.372 51.409-40.423Q51.317-40.473 51.266-40.565Q51.216-40.657 51.216-40.762Q51.216-41.180 51.604-41.327Q51.993-41.473 52.493-41.473Q52.825-41.473 53.178-41.343Q53.532-41.212 53.760-40.958Q53.989-40.704 53.989-40.356L53.989-38.555Q53.989-38.423 54.061-38.313Q54.134-38.204 54.262-38.204Q54.387-38.204 54.456-38.309Q54.524-38.415 54.524-38.555L54.524-39.067L54.805-39.067L54.805-38.555Q54.805-38.352 54.688-38.194Q54.571-38.036 54.389-37.952Q54.208-37.868 54.005-37.868Q53.774-37.868 53.622-38.040Q53.469-38.212 53.438-38.442Q53.278-38.161 52.969-37.995Q52.661-37.829 52.309-37.829Q51.798-37.829 51.374-38.052Q50.950-38.274 50.950-38.739M51.637-38.739Q51.637-38.454 51.864-38.268Q52.091-38.083 52.384-38.083Q52.630-38.083 52.854-38.200Q53.079-38.317 53.214-38.520Q53.348-38.723 53.348-38.977L53.348-39.809Q53.083-39.809 52.798-39.755Q52.512-39.700 52.241-39.571Q51.969-39.442 51.803-39.235Q51.637-39.028 51.637-38.739M57.012-37.907L55.180-37.907L55.180-38.204Q55.454-38.204 55.622-38.251Q55.790-38.298 55.790-38.466L55.790-42.626Q55.790-42.841 55.727-42.936Q55.665-43.032 55.546-43.053Q55.426-43.075 55.180-43.075L55.180-43.372L56.403-43.458L56.403-38.466Q56.403-38.298 56.571-38.251Q56.739-38.204 57.012-38.204L57.012-37.907M59.954-37.907L57.571-37.907L57.571-38.204Q57.895-38.204 58.137-38.251Q58.380-38.298 58.380-38.466L58.380-42.809Q58.380-42.981 58.137-43.028Q57.895-43.075 57.571-43.075L57.571-43.372L60.516-43.372Q60.860-43.372 61.216-43.272Q61.571-43.173 61.866-42.981Q62.161-42.790 62.343-42.505Q62.524-42.219 62.524-41.860Q62.524-41.387 62.214-41.052Q61.903-40.716 61.438-40.544Q60.973-40.372 60.516-40.372L59.149-40.372L59.149-38.466Q59.149-38.298 59.391-38.251Q59.634-38.204 59.954-38.204L59.954-37.907M59.122-42.809L59.122-40.641L60.298-40.641Q60.985-40.641 61.323-40.917Q61.661-41.192 61.661-41.860Q61.661-42.524 61.323-42.800Q60.985-43.075 60.298-43.075L59.524-43.075Q59.305-43.075 59.214-43.032Q59.122-42.989 59.122-42.809M68.958-38.884L63.645-38.884Q63.567-38.891 63.518-38.940Q63.469-38.989 63.469-39.067Q63.469-39.137 63.516-39.188Q63.563-39.239 63.645-39.251L68.958-39.251Q69.032-39.239 69.079-39.188Q69.126-39.137 69.126-39.067Q69.126-38.989 69.077-38.940Q69.028-38.891 68.958-38.884M68.958-40.571L63.645-40.571Q63.567-40.579 63.518-40.628Q63.469-40.677 63.469-40.755Q63.469-40.825 63.516-40.876Q63.563-40.927 63.645-40.938L68.958-40.938Q69.032-40.927 69.079-40.876Q69.126-40.825 69.126-40.755Q69.126-40.677 69.077-40.628Q69.028-40.579 68.958-40.571M71.727-37.739Q71.024-37.739 70.624-38.139Q70.223-38.540 70.079-39.149Q69.934-39.759 69.934-40.458Q69.934-40.981 70.005-41.444Q70.075-41.907 70.268-42.319Q70.462-42.731 70.819-42.979Q71.177-43.227 71.727-43.227Q72.278-43.227 72.635-42.979Q72.993-42.731 73.184-42.321Q73.376-41.911 73.446-41.442Q73.516-40.973 73.516-40.458Q73.516-39.759 73.374-39.151Q73.231-38.544 72.831-38.141Q72.430-37.739 71.727-37.739M71.727-37.997Q72.200-37.997 72.432-38.432Q72.665-38.868 72.719-39.407Q72.774-39.946 72.774-40.587Q72.774-41.583 72.591-42.276Q72.407-42.969 71.727-42.969Q71.360-42.969 71.139-42.731Q70.919-42.493 70.823-42.136Q70.727-41.778 70.702-41.407Q70.677-41.036 70.677-40.587Q70.677-39.946 70.731-39.407Q70.786-38.868 71.018-38.432Q71.251-37.997 71.727-37.997M75.477-37.907L73.981-37.907L73.981-38.204Q74.614-38.204 75.036-38.684L75.805-39.594L74.813-40.794Q74.657-40.973 74.495-41.016Q74.333-41.059 74.028-41.059L74.028-41.356L75.716-41.356L75.716-41.059Q75.622-41.059 75.546-41.016Q75.469-40.973 75.469-40.884Q75.469-40.841 75.501-40.794L76.157-40.005L76.637-40.579Q76.755-40.716 76.755-40.852Q76.755-40.942 76.704-41.001Q76.653-41.059 76.571-41.059L76.571-41.356L78.059-41.356L78.059-41.059Q77.423-41.059 77.012-40.579L76.333-39.778L77.419-38.466Q77.579-38.290 77.739-38.247Q77.899-38.204 78.204-38.204L78.204-37.907L76.516-37.907L76.516-38.204Q76.606-38.204 76.684-38.247Q76.762-38.290 76.762-38.380Q76.762-38.403 76.731-38.466L75.989-39.372L75.403-38.684Q75.286-38.548 75.286-38.411Q75.286-38.325 75.337-38.264Q75.387-38.204 75.477-38.204L75.477-37.907M80.454-37.739Q79.751-37.739 79.350-38.139Q78.950-38.540 78.805-39.149Q78.661-39.759 78.661-40.458Q78.661-40.981 78.731-41.444Q78.802-41.907 78.995-42.319Q79.188-42.731 79.546-42.979Q79.903-43.227 80.454-43.227Q81.005-43.227 81.362-42.979Q81.719-42.731 81.911-42.321Q82.102-41.911 82.173-41.442Q82.243-40.973 82.243-40.458Q82.243-39.759 82.100-39.151Q81.958-38.544 81.557-38.141Q81.157-37.739 80.454-37.739M80.454-37.997Q80.927-37.997 81.159-38.432Q81.391-38.868 81.446-39.407Q81.501-39.946 81.501-40.587Q81.501-41.583 81.317-42.276Q81.134-42.969 80.454-42.969Q80.087-42.969 79.866-42.731Q79.645-42.493 79.550-42.136Q79.454-41.778 79.428-41.407Q79.403-41.036 79.403-40.587Q79.403-39.946 79.458-39.407Q79.512-38.868 79.745-38.432Q79.977-37.997 80.454-37.997M86.173-37.907L83.380-37.907L83.380-38.204Q84.442-38.204 84.442-38.466L84.442-42.634Q84.012-42.419 83.333-42.419L83.333-42.716Q84.352-42.716 84.868-43.227L85.012-43.227Q85.087-43.208 85.106-43.130L85.106-38.466Q85.106-38.204 86.173-38.204L86.173-37.907M89.130-37.907L87.145-37.907L87.145-38.204Q87.419-38.204 87.587-38.251Q87.755-38.298 87.755-38.466L87.755-41.059L87.114-41.059L87.114-41.356L87.755-41.356L87.755-42.290Q87.755-42.555 87.872-42.792Q87.989-43.028 88.182-43.192Q88.376-43.356 88.624-43.448Q88.872-43.540 89.137-43.540Q89.423-43.540 89.647-43.382Q89.872-43.223 89.872-42.946Q89.872-42.790 89.766-42.680Q89.661-42.571 89.497-42.571Q89.341-42.571 89.231-42.680Q89.122-42.790 89.122-42.946Q89.122-43.153 89.282-43.259Q89.184-43.282 89.091-43.282Q88.860-43.282 88.688-43.126Q88.516-42.969 88.430-42.733Q88.344-42.497 88.344-42.274L88.344-41.356L89.313-41.356L89.313-41.059L88.368-41.059L88.368-38.466Q88.368-38.298 88.594-38.251Q88.821-38.204 89.130-38.204\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 2)\">\u003Cpath d=\"M94.901-35.915Q94.288-36.372 93.886-37.007Q93.483-37.641 93.288-38.387Q93.093-39.134 93.093-39.907Q93.093-40.680 93.288-41.427Q93.483-42.173 93.886-42.807Q94.288-43.442 94.901-43.899Q94.913-43.903 94.921-43.905Q94.929-43.907 94.940-43.907L95.018-43.907Q95.057-43.907 95.083-43.880Q95.108-43.852 95.108-43.809Q95.108-43.759 95.077-43.739Q94.569-43.286 94.247-42.663Q93.925-42.040 93.784-41.344Q93.643-40.649 93.643-39.907Q93.643-39.173 93.782-38.473Q93.921-37.774 94.245-37.149Q94.569-36.524 95.077-36.075Q95.108-36.055 95.108-36.005Q95.108-35.962 95.083-35.934Q95.057-35.907 95.018-35.907L94.940-35.907Q94.932-35.911 94.923-35.913Q94.913-35.915 94.901-35.915M97.643-37.829Q97.163-37.829 96.755-38.073Q96.347-38.317 96.108-38.731Q95.870-39.145 95.870-39.634Q95.870-40.126 96.128-40.542Q96.386-40.958 96.817-41.196Q97.249-41.434 97.741-41.434Q98.362-41.434 98.811-40.997L98.811-42.626Q98.811-42.841 98.749-42.936Q98.686-43.032 98.569-43.053Q98.452-43.075 98.206-43.075L98.206-43.372L99.429-43.458L99.429-38.649Q99.429-38.438 99.491-38.343Q99.554-38.247 99.671-38.225Q99.788-38.204 100.038-38.204L100.038-37.907L98.788-37.829L98.788-38.313Q98.323-37.829 97.643-37.829M97.710-38.083Q98.050-38.083 98.343-38.274Q98.636-38.466 98.788-38.762L98.788-40.594Q98.639-40.868 98.378-41.024Q98.116-41.180 97.804-41.180Q97.179-41.180 96.895-40.733Q96.612-40.286 96.612-39.626Q96.612-38.981 96.864-38.532Q97.116-38.083 97.710-38.083M102.405-37.907L100.628-37.907L100.628-38.204Q100.901-38.204 101.069-38.251Q101.237-38.298 101.237-38.466L101.237-40.602Q101.237-40.817 101.180-40.913Q101.124-41.009 101.011-41.030Q100.897-41.052 100.651-41.052L100.651-41.348L101.850-41.434L101.850-38.466Q101.850-38.298 101.997-38.251Q102.143-38.204 102.405-38.204L102.405-37.907M100.964-42.829Q100.964-43.020 101.098-43.151Q101.233-43.282 101.429-43.282Q101.550-43.282 101.653-43.219Q101.757-43.157 101.819-43.053Q101.882-42.950 101.882-42.829Q101.882-42.634 101.751-42.499Q101.620-42.364 101.429-42.364Q101.229-42.364 101.097-42.497Q100.964-42.630 100.964-42.829M102.948-37.915L102.948-39.137Q102.948-39.165 102.979-39.196Q103.011-39.227 103.034-39.227L103.139-39.227Q103.210-39.227 103.225-39.165Q103.288-38.844 103.427-38.604Q103.565-38.364 103.798-38.223Q104.030-38.083 104.339-38.083Q104.577-38.083 104.786-38.143Q104.995-38.204 105.132-38.352Q105.268-38.501 105.268-38.747Q105.268-39.001 105.057-39.167Q104.847-39.333 104.577-39.387L103.956-39.501Q103.550-39.579 103.249-39.835Q102.948-40.091 102.948-40.466Q102.948-40.833 103.149-41.055Q103.350-41.278 103.675-41.376Q103.999-41.473 104.339-41.473Q104.804-41.473 105.100-41.266L105.323-41.450Q105.347-41.473 105.378-41.473L105.429-41.473Q105.460-41.473 105.487-41.446Q105.514-41.419 105.514-41.387L105.514-40.403Q105.514-40.372 105.489-40.343Q105.464-40.313 105.429-40.313L105.323-40.313Q105.288-40.313 105.261-40.341Q105.233-40.368 105.233-40.403Q105.233-40.802 104.981-41.022Q104.729-41.243 104.331-41.243Q103.975-41.243 103.692-41.120Q103.409-40.997 103.409-40.692Q103.409-40.473 103.610-40.341Q103.811-40.208 104.057-40.165L104.682-40.052Q105.112-39.962 105.421-39.665Q105.729-39.368 105.729-38.954Q105.729-38.384 105.331-38.106Q104.932-37.829 104.339-37.829Q103.788-37.829 103.436-38.165L103.139-37.852Q103.116-37.829 103.081-37.829L103.034-37.829Q103.011-37.829 102.979-37.860Q102.948-37.891 102.948-37.915M106.300-39.634Q106.300-40.130 106.550-40.555Q106.800-40.981 107.220-41.227Q107.639-41.473 108.139-41.473Q108.679-41.473 109.069-41.348Q109.460-41.223 109.460-40.809Q109.460-40.704 109.409-40.612Q109.358-40.520 109.266-40.469Q109.175-40.419 109.065-40.419Q108.960-40.419 108.868-40.469Q108.776-40.520 108.725-40.612Q108.675-40.704 108.675-40.809Q108.675-41.032 108.843-41.137Q108.620-41.196 108.147-41.196Q107.850-41.196 107.636-41.057Q107.421-40.919 107.290-40.688Q107.159-40.458 107.100-40.188Q107.042-39.919 107.042-39.634Q107.042-39.239 107.175-38.889Q107.307-38.540 107.579-38.323Q107.850-38.106 108.249-38.106Q108.624-38.106 108.899-38.323Q109.175-38.540 109.276-38.899Q109.292-38.962 109.354-38.962L109.460-38.962Q109.495-38.962 109.520-38.934Q109.546-38.907 109.546-38.868L109.546-38.844Q109.413-38.364 109.028-38.096Q108.643-37.829 108.139-37.829Q107.776-37.829 107.442-37.966Q107.108-38.102 106.848-38.352Q106.589-38.602 106.444-38.938Q106.300-39.274 106.300-39.634M110.132-38.739Q110.132-39.223 110.534-39.518Q110.936-39.813 111.487-39.932Q112.038-40.052 112.530-40.052L112.530-40.341Q112.530-40.567 112.415-40.774Q112.300-40.981 112.102-41.100Q111.905-41.219 111.675-41.219Q111.249-41.219 110.964-41.114Q111.034-41.087 111.081-41.032Q111.128-40.977 111.153-40.907Q111.179-40.837 111.179-40.762Q111.179-40.657 111.128-40.565Q111.077-40.473 110.985-40.423Q110.893-40.372 110.788-40.372Q110.682-40.372 110.591-40.423Q110.499-40.473 110.448-40.565Q110.397-40.657 110.397-40.762Q110.397-41.180 110.786-41.327Q111.175-41.473 111.675-41.473Q112.007-41.473 112.360-41.343Q112.714-41.212 112.942-40.958Q113.171-40.704 113.171-40.356L113.171-38.555Q113.171-38.423 113.243-38.313Q113.315-38.204 113.444-38.204Q113.569-38.204 113.638-38.309Q113.706-38.415 113.706-38.555L113.706-39.067L113.987-39.067L113.987-38.555Q113.987-38.352 113.870-38.194Q113.753-38.036 113.571-37.952Q113.389-37.868 113.186-37.868Q112.956-37.868 112.804-38.040Q112.651-38.212 112.620-38.442Q112.460-38.161 112.151-37.995Q111.843-37.829 111.491-37.829Q110.979-37.829 110.555-38.052Q110.132-38.274 110.132-38.739M110.819-38.739Q110.819-38.454 111.046-38.268Q111.272-38.083 111.565-38.083Q111.811-38.083 112.036-38.200Q112.261-38.317 112.395-38.520Q112.530-38.723 112.530-38.977L112.530-39.809Q112.264-39.809 111.979-39.755Q111.694-39.700 111.423-39.571Q111.151-39.442 110.985-39.235Q110.819-39.028 110.819-38.739M116.288-37.907L114.307-37.907L114.307-38.204Q114.577-38.204 114.745-38.249Q114.913-38.294 114.913-38.466L114.913-40.602Q114.913-40.817 114.850-40.913Q114.788-41.009 114.671-41.030Q114.554-41.052 114.307-41.052L114.307-41.348L115.475-41.434L115.475-40.649Q115.554-40.860 115.706-41.046Q115.858-41.231 116.057-41.333Q116.257-41.434 116.483-41.434Q116.729-41.434 116.921-41.290Q117.112-41.145 117.112-40.915Q117.112-40.759 117.007-40.649Q116.901-40.540 116.745-40.540Q116.589-40.540 116.479-40.649Q116.370-40.759 116.370-40.915Q116.370-41.075 116.475-41.180Q116.151-41.180 115.936-40.952Q115.722-40.723 115.626-40.384Q115.530-40.044 115.530-39.739L115.530-38.466Q115.530-38.298 115.757-38.251Q115.983-38.204 116.288-38.204L116.288-37.907M119.409-37.829Q118.929-37.829 118.520-38.073Q118.112-38.317 117.874-38.731Q117.636-39.145 117.636-39.634Q117.636-40.126 117.893-40.542Q118.151-40.958 118.583-41.196Q119.014-41.434 119.507-41.434Q120.128-41.434 120.577-40.997L120.577-42.626Q120.577-42.841 120.514-42.936Q120.452-43.032 120.335-43.053Q120.218-43.075 119.972-43.075L119.972-43.372L121.194-43.458L121.194-38.649Q121.194-38.438 121.257-38.343Q121.319-38.247 121.436-38.225Q121.554-38.204 121.804-38.204L121.804-37.907L120.554-37.829L120.554-38.313Q120.089-37.829 119.409-37.829M119.475-38.083Q119.815-38.083 120.108-38.274Q120.401-38.466 120.554-38.762L120.554-40.594Q120.405-40.868 120.143-41.024Q119.882-41.180 119.569-41.180Q118.944-41.180 118.661-40.733Q118.378-40.286 118.378-39.626Q118.378-38.981 118.630-38.532Q118.882-38.083 119.475-38.083M122.311-39.661Q122.311-40.141 122.544-40.557Q122.776-40.973 123.186-41.223Q123.597-41.473 124.073-41.473Q124.804-41.473 125.202-41.032Q125.600-40.591 125.600-39.860Q125.600-39.755 125.507-39.731L123.057-39.731L123.057-39.661Q123.057-39.251 123.179-38.895Q123.300-38.540 123.571-38.323Q123.843-38.106 124.272-38.106Q124.636-38.106 124.932-38.335Q125.229-38.563 125.331-38.915Q125.339-38.962 125.425-38.977L125.507-38.977Q125.600-38.950 125.600-38.868Q125.600-38.860 125.593-38.829Q125.530-38.602 125.391-38.419Q125.253-38.235 125.061-38.102Q124.870-37.969 124.651-37.899Q124.432-37.829 124.194-37.829Q123.823-37.829 123.485-37.966Q123.147-38.102 122.880-38.354Q122.612-38.606 122.462-38.946Q122.311-39.286 122.311-39.661M123.065-39.969L125.026-39.969Q125.026-40.274 124.925-40.565Q124.823-40.856 124.606-41.038Q124.389-41.219 124.073-41.219Q123.772-41.219 123.542-41.032Q123.311-40.844 123.188-40.553Q123.065-40.262 123.065-39.969M127.905-37.829Q127.425-37.829 127.016-38.073Q126.608-38.317 126.370-38.731Q126.132-39.145 126.132-39.634Q126.132-40.126 126.389-40.542Q126.647-40.958 127.079-41.196Q127.511-41.434 128.003-41.434Q128.624-41.434 129.073-40.997L129.073-42.626Q129.073-42.841 129.011-42.936Q128.948-43.032 128.831-43.053Q128.714-43.075 128.468-43.075L128.468-43.372L129.690-43.458L129.690-38.649Q129.690-38.438 129.753-38.343Q129.815-38.247 129.932-38.225Q130.050-38.204 130.300-38.204L130.300-37.907L129.050-37.829L129.050-38.313Q128.585-37.829 127.905-37.829M127.972-38.083Q128.311-38.083 128.604-38.274Q128.897-38.466 129.050-38.762L129.050-40.594Q128.901-40.868 128.639-41.024Q128.378-41.180 128.065-41.180Q127.440-41.180 127.157-40.733Q126.874-40.286 126.874-39.626Q126.874-38.981 127.126-38.532Q127.378-38.083 127.972-38.083M131.210-35.907L131.128-35.907Q131.093-35.907 131.067-35.936Q131.042-35.966 131.042-36.005Q131.042-36.055 131.073-36.075Q131.460-36.411 131.743-36.860Q132.026-37.309 132.192-37.809Q132.358-38.309 132.432-38.827Q132.507-39.344 132.507-39.907Q132.507-40.477 132.432-40.993Q132.358-41.509 132.192-42.005Q132.026-42.501 131.747-42.948Q131.468-43.395 131.073-43.739Q131.042-43.759 131.042-43.809Q131.042-43.848 131.067-43.878Q131.093-43.907 131.128-43.907L131.210-43.907Q131.221-43.907 131.231-43.905Q131.241-43.903 131.249-43.899Q131.862-43.442 132.264-42.807Q132.667-42.173 132.862-41.427Q133.057-40.680 133.057-39.907Q133.057-39.134 132.862-38.387Q132.667-37.641 132.264-37.007Q131.862-36.372 131.249-35.915Q131.237-35.915 131.229-35.913Q131.221-35.911 131.210-35.907\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M213.434-25.957H449.59\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(176.021 26.616)\">\u003Cpath d=\"M14.584-37.907L11.812-37.907L11.812-38.187Q12.533-38.187 12.533-38.396L12.533-42.197Q12.533-42.408 11.812-42.408L11.812-42.689L14.584-42.689Q15.069-42.689 15.505-42.494Q15.941-42.299 16.264-41.957Q16.587-41.615 16.765-41.175Q16.942-40.734 16.942-40.252Q16.942-39.766 16.758-39.343Q16.573-38.919 16.250-38.597Q15.927-38.276 15.495-38.092Q15.063-37.907 14.584-37.907M13.196-42.197L13.196-38.396Q13.196-38.256 13.285-38.221Q13.374-38.187 13.562-38.187L14.386-38.187Q15.011-38.187 15.415-38.449Q15.818-38.710 16.006-39.177Q16.194-39.643 16.194-40.252Q16.194-40.730 16.102-41.123Q16.009-41.516 15.760-41.814Q15.521-42.101 15.157-42.255Q14.793-42.408 14.386-42.408L13.562-42.408Q13.374-42.408 13.285-42.374Q13.196-42.340 13.196-42.197M17.711-39.442Q17.711-39.763 17.836-40.052Q17.961-40.341 18.187-40.564Q18.412-40.788 18.708-40.908Q19.003-41.028 19.321-41.028Q19.649-41.028 19.911-40.928Q20.172-40.829 20.348-40.647Q20.524-40.464 20.618-40.206Q20.712-39.948 20.712-39.616Q20.712-39.524 20.630-39.503L18.375-39.503L18.375-39.442Q18.375-38.854 18.658-38.471Q18.942-38.088 19.509-38.088Q19.831-38.088 20.099-38.281Q20.367-38.474 20.456-38.789Q20.463-38.830 20.538-38.844L20.630-38.844Q20.712-38.820 20.712-38.748Q20.712-38.741 20.706-38.714Q20.593-38.317 20.222-38.078Q19.851-37.839 19.427-37.839Q18.990-37.839 18.590-38.047Q18.190-38.256 17.951-38.623Q17.711-38.990 17.711-39.442M18.381-39.712L20.196-39.712Q20.196-39.989 20.099-40.241Q20.002-40.494 19.803-40.650Q19.605-40.805 19.321-40.805Q19.044-40.805 18.831-40.647Q18.617-40.488 18.499-40.233Q18.381-39.978 18.381-39.712M21.300-39.418Q21.300-39.746 21.435-40.047Q21.570-40.347 21.806-40.568Q22.042-40.788 22.346-40.908Q22.650-41.028 22.975-41.028Q23.481-41.028 23.830-40.925Q24.178-40.823 24.178-40.447Q24.178-40.300 24.081-40.199Q23.983-40.098 23.836-40.098Q23.683-40.098 23.584-40.197Q23.484-40.296 23.484-40.447Q23.484-40.635 23.625-40.727Q23.423-40.778 22.982-40.778Q22.627-40.778 22.398-40.582Q22.169-40.385 22.068-40.076Q21.967-39.766 21.967-39.418Q21.967-39.069 22.093-38.763Q22.220-38.457 22.474-38.273Q22.729-38.088 23.085-38.088Q23.307-38.088 23.491-38.172Q23.676-38.256 23.811-38.411Q23.946-38.567 24.004-38.775Q24.018-38.830 24.072-38.830L24.185-38.830Q24.216-38.830 24.238-38.806Q24.260-38.782 24.260-38.748L24.260-38.727Q24.175-38.440 23.987-38.242Q23.799-38.044 23.534-37.941Q23.269-37.839 22.975-37.839Q22.544-37.839 22.157-38.045Q21.769-38.252 21.534-38.615Q21.300-38.977 21.300-39.418M24.807-39.390Q24.807-39.732 24.942-40.031Q25.077-40.330 25.316-40.554Q25.556-40.778 25.874-40.903Q26.191-41.028 26.523-41.028Q26.967-41.028 27.367-40.812Q27.767-40.597 28.001-40.219Q28.235-39.842 28.235-39.390Q28.235-39.049 28.094-38.765Q27.952-38.481 27.707-38.274Q27.463-38.068 27.154-37.953Q26.844-37.839 26.523-37.839Q26.092-37.839 25.691-38.040Q25.289-38.242 25.048-38.594Q24.807-38.946 24.807-39.390M26.523-38.088Q27.125-38.088 27.348-38.466Q27.572-38.844 27.572-39.476Q27.572-40.088 27.338-40.447Q27.104-40.805 26.523-40.805Q25.470-40.805 25.470-39.476Q25.470-38.844 25.696-38.466Q25.921-38.088 26.523-38.088\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(176.021 26.616)\">\u003Cpath d=\"M29.066-39.418Q29.066-39.756 29.207-40.047Q29.347-40.337 29.591-40.551Q29.835-40.764 30.140-40.879Q30.444-40.993 30.769-40.993Q31.039-40.993 31.302-40.894Q31.565-40.795 31.756-40.617L31.756-42.015Q31.756-42.285 31.649-42.347Q31.541-42.408 31.230-42.408L31.230-42.689L32.307-42.764L32.307-38.580Q32.307-38.392 32.361-38.309Q32.416-38.225 32.517-38.206Q32.618-38.187 32.833-38.187L32.833-37.907L31.726-37.839L31.726-38.256Q31.309-37.839 30.683-37.839Q30.252-37.839 29.880-38.051Q29.507-38.262 29.287-38.623Q29.066-38.984 29.066-39.418M30.741-38.061Q30.950-38.061 31.136-38.133Q31.322-38.204 31.476-38.341Q31.630-38.478 31.726-38.656L31.726-40.265Q31.640-40.412 31.495-40.532Q31.350-40.652 31.180-40.711Q31.011-40.771 30.830-40.771Q30.270-40.771 30.001-40.382Q29.733-39.992 29.733-39.411Q29.733-38.840 29.967-38.450Q30.201-38.061 30.741-38.061M33.441-39.442Q33.441-39.763 33.566-40.052Q33.691-40.341 33.917-40.564Q34.142-40.788 34.438-40.908Q34.733-41.028 35.051-41.028Q35.379-41.028 35.641-40.928Q35.902-40.829 36.078-40.647Q36.254-40.464 36.348-40.206Q36.442-39.948 36.442-39.616Q36.442-39.524 36.360-39.503L34.105-39.503L34.105-39.442Q34.105-38.854 34.388-38.471Q34.672-38.088 35.239-38.088Q35.561-38.088 35.829-38.281Q36.097-38.474 36.186-38.789Q36.193-38.830 36.268-38.844L36.360-38.844Q36.442-38.820 36.442-38.748Q36.442-38.741 36.436-38.714Q36.323-38.317 35.952-38.078Q35.581-37.839 35.157-37.839Q34.720-37.839 34.320-38.047Q33.920-38.256 33.681-38.623Q33.441-38.990 33.441-39.442M34.111-39.712L35.926-39.712Q35.926-39.989 35.829-40.241Q35.731-40.494 35.533-40.650Q35.335-40.805 35.051-40.805Q34.774-40.805 34.561-40.647Q34.347-40.488 34.229-40.233Q34.111-39.978 34.111-39.712\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(216.929 26.185)\">\u003Cpath d=\"M13.458-37.938L12.235-40.794Q12.153-40.969 12.009-41.014Q11.864-41.059 11.595-41.059L11.595-41.356L13.306-41.356L13.306-41.059Q12.884-41.059 12.884-40.876Q12.884-40.841 12.899-40.794L13.845-38.602L14.685-40.579Q14.724-40.657 14.724-40.747Q14.724-40.887 14.618-40.973Q14.513-41.059 14.372-41.059L14.372-41.356L15.724-41.356L15.724-41.059Q15.200-41.059 14.985-40.579L13.860-37.938Q13.798-37.829 13.692-37.829L13.626-37.829Q13.513-37.829 13.458-37.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 26.185)\">\u003Cpath d=\"M15.769-38.739Q15.769-39.223 16.171-39.518Q16.574-39.813 17.124-39.932Q17.675-40.052 18.167-40.052L18.167-40.341Q18.167-40.567 18.052-40.774Q17.937-40.981 17.740-41.100Q17.542-41.219 17.312-41.219Q16.886-41.219 16.601-41.114Q16.671-41.087 16.718-41.032Q16.765-40.977 16.790-40.907Q16.816-40.837 16.816-40.762Q16.816-40.657 16.765-40.565Q16.714-40.473 16.622-40.423Q16.531-40.372 16.425-40.372Q16.320-40.372 16.228-40.423Q16.136-40.473 16.085-40.565Q16.035-40.657 16.035-40.762Q16.035-41.180 16.423-41.327Q16.812-41.473 17.312-41.473Q17.644-41.473 17.997-41.343Q18.351-41.212 18.579-40.958Q18.808-40.704 18.808-40.356L18.808-38.555Q18.808-38.423 18.880-38.313Q18.953-38.204 19.081-38.204Q19.206-38.204 19.275-38.309Q19.343-38.415 19.343-38.555L19.343-39.067L19.624-39.067L19.624-38.555Q19.624-38.352 19.507-38.194Q19.390-38.036 19.208-37.952Q19.027-37.868 18.824-37.868Q18.593-37.868 18.441-38.040Q18.288-38.212 18.257-38.442Q18.097-38.161 17.788-37.995Q17.480-37.829 17.128-37.829Q16.617-37.829 16.193-38.052Q15.769-38.274 15.769-38.739M16.456-38.739Q16.456-38.454 16.683-38.268Q16.910-38.083 17.203-38.083Q17.449-38.083 17.673-38.200Q17.898-38.317 18.033-38.520Q18.167-38.723 18.167-38.977L18.167-39.809Q17.902-39.809 17.617-39.755Q17.331-39.700 17.060-39.571Q16.788-39.442 16.622-39.235Q16.456-39.028 16.456-38.739M21.831-37.907L19.999-37.907L19.999-38.204Q20.273-38.204 20.441-38.251Q20.609-38.298 20.609-38.466L20.609-42.626Q20.609-42.841 20.546-42.936Q20.484-43.032 20.365-43.053Q20.245-43.075 19.999-43.075L19.999-43.372L21.222-43.458L21.222-38.466Q21.222-38.298 21.390-38.251Q21.558-38.204 21.831-38.204L21.831-37.907M24.078-37.907L22.328-37.907L22.328-38.204Q23.027-38.204 23.214-38.684L25.015-43.509Q25.070-43.618 25.183-43.618L25.253-43.618Q25.367-43.618 25.421-43.509L27.312-38.466Q27.390-38.298 27.593-38.251Q27.796-38.204 28.109-38.204L28.109-37.907L25.886-37.907L25.886-38.204Q26.527-38.204 26.527-38.419Q26.527-38.438 26.525-38.448Q26.523-38.458 26.519-38.466L26.054-39.700L23.910-39.700L23.527-38.684Q23.523-38.669 23.517-38.639Q23.511-38.610 23.511-38.587Q23.511-38.446 23.601-38.362Q23.691-38.278 23.824-38.241Q23.956-38.204 24.078-38.204L24.078-37.907M24.984-42.563L24.015-39.997L25.941-39.997L24.984-42.563M34.359-38.884L29.046-38.884Q28.968-38.891 28.919-38.940Q28.870-38.989 28.870-39.067Q28.870-39.137 28.917-39.188Q28.964-39.239 29.046-39.251L34.359-39.251Q34.433-39.239 34.480-39.188Q34.527-39.137 34.527-39.067Q34.527-38.989 34.478-38.940Q34.429-38.891 34.359-38.884M34.359-40.571L29.046-40.571Q28.968-40.579 28.919-40.628Q28.870-40.677 28.870-40.755Q28.870-40.825 28.917-40.876Q28.964-40.927 29.046-40.938L34.359-40.938Q34.433-40.927 34.480-40.876Q34.527-40.825 34.527-40.755Q34.527-40.677 34.478-40.628Q34.429-40.579 34.359-40.571M37.046-37.938L35.824-40.794Q35.742-40.969 35.597-41.014Q35.453-41.059 35.183-41.059L35.183-41.356L36.894-41.356L36.894-41.059Q36.472-41.059 36.472-40.876Q36.472-40.841 36.488-40.794L37.433-38.602L38.273-40.579Q38.312-40.657 38.312-40.747Q38.312-40.887 38.206-40.973Q38.101-41.059 37.960-41.059L37.960-41.356L39.312-41.356L39.312-41.059Q38.788-41.059 38.574-40.579L37.449-37.938Q37.386-37.829 37.281-37.829L37.214-37.829Q37.101-37.829 37.046-37.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 26.185)\">\u003Cpath d=\"M39.372-38.739Q39.372-39.223 39.774-39.518Q40.177-39.813 40.727-39.932Q41.278-40.052 41.770-40.052L41.770-40.341Q41.770-40.567 41.655-40.774Q41.540-40.981 41.343-41.100Q41.145-41.219 40.915-41.219Q40.489-41.219 40.204-41.114Q40.274-41.087 40.321-41.032Q40.368-40.977 40.393-40.907Q40.419-40.837 40.419-40.762Q40.419-40.657 40.368-40.565Q40.317-40.473 40.225-40.423Q40.134-40.372 40.028-40.372Q39.923-40.372 39.831-40.423Q39.739-40.473 39.688-40.565Q39.638-40.657 39.638-40.762Q39.638-41.180 40.026-41.327Q40.415-41.473 40.915-41.473Q41.247-41.473 41.600-41.343Q41.954-41.212 42.182-40.958Q42.411-40.704 42.411-40.356L42.411-38.555Q42.411-38.423 42.483-38.313Q42.556-38.204 42.684-38.204Q42.809-38.204 42.878-38.309Q42.946-38.415 42.946-38.555L42.946-39.067L43.227-39.067L43.227-38.555Q43.227-38.352 43.110-38.194Q42.993-38.036 42.811-37.952Q42.630-37.868 42.427-37.868Q42.196-37.868 42.044-38.040Q41.891-38.212 41.860-38.442Q41.700-38.161 41.391-37.995Q41.083-37.829 40.731-37.829Q40.220-37.829 39.796-38.052Q39.372-38.274 39.372-38.739M40.059-38.739Q40.059-38.454 40.286-38.268Q40.513-38.083 40.806-38.083Q41.052-38.083 41.276-38.200Q41.501-38.317 41.636-38.520Q41.770-38.723 41.770-38.977L41.770-39.809Q41.505-39.809 41.220-39.755Q40.934-39.700 40.663-39.571Q40.391-39.442 40.225-39.235Q40.059-39.028 40.059-38.739M45.434-37.907L43.602-37.907L43.602-38.204Q43.876-38.204 44.044-38.251Q44.212-38.298 44.212-38.466L44.212-42.626Q44.212-42.841 44.149-42.936Q44.087-43.032 43.968-43.053Q43.849-43.075 43.602-43.075L43.602-43.372L44.825-43.458L44.825-38.466Q44.825-38.298 44.993-38.251Q45.161-38.204 45.434-38.204L45.434-37.907M49.290-37.907L46.009-37.907L46.009-38.204Q46.333-38.204 46.575-38.251Q46.817-38.298 46.817-38.466L46.817-42.809Q46.817-42.981 46.575-43.028Q46.333-43.075 46.009-43.075L46.009-43.372L49.056-43.372Q49.481-43.372 49.915-43.218Q50.349-43.063 50.643-42.755Q50.938-42.446 50.938-42.012Q50.938-41.759 50.813-41.542Q50.688-41.325 50.487-41.169Q50.286-41.012 50.054-40.913Q49.821-40.813 49.563-40.762Q49.938-40.727 50.317-40.550Q50.696-40.372 50.936-40.073Q51.177-39.774 51.177-39.380Q51.177-38.927 50.893-38.593Q50.610-38.259 50.175-38.083Q49.739-37.907 49.290-37.907M47.528-40.618L47.528-38.466Q47.528-38.294 47.620-38.249Q47.712-38.204 47.931-38.204L49.056-38.204Q49.294-38.204 49.528-38.292Q49.763-38.380 49.948-38.540Q50.134-38.700 50.235-38.913Q50.337-39.126 50.337-39.380Q50.337-39.700 50.184-39.985Q50.032-40.270 49.763-40.444Q49.493-40.618 49.177-40.618L47.528-40.618M47.528-42.809L47.528-40.876L48.817-40.876Q49.059-40.876 49.298-40.958Q49.536-41.040 49.720-41.186Q49.903-41.333 50.016-41.550Q50.130-41.766 50.130-42.012Q50.130-42.223 50.044-42.425Q49.958-42.626 49.811-42.768Q49.665-42.911 49.470-42.993Q49.274-43.075 49.056-43.075L47.931-43.075Q47.712-43.075 47.620-43.032Q47.528-42.989 47.528-42.809M57.618-38.884L52.306-38.884Q52.227-38.891 52.179-38.940Q52.130-38.989 52.130-39.067Q52.130-39.137 52.177-39.188Q52.224-39.239 52.306-39.251L57.618-39.251Q57.692-39.239 57.739-39.188Q57.786-39.137 57.786-39.067Q57.786-38.989 57.737-38.940Q57.688-38.891 57.618-38.884M57.618-40.571L52.306-40.571Q52.227-40.579 52.179-40.628Q52.130-40.677 52.130-40.755Q52.130-40.825 52.177-40.876Q52.224-40.927 52.306-40.938L57.618-40.938Q57.692-40.927 57.739-40.876Q57.786-40.825 57.786-40.755Q57.786-40.677 57.737-40.628Q57.688-40.579 57.618-40.571\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 26.185)\">\u003Cpath d=\"M63.261-37.907L61.124-37.907Q61.089-37.907 61.058-37.948Q61.027-37.989 61.027-38.036L61.050-38.137Q61.062-38.188 61.148-38.204Q61.589-38.204 61.747-38.243Q61.906-38.282 61.949-38.509L63.027-42.829Q63.050-42.899 63.050-42.962Q63.050-43.024 62.988-43.044Q62.843-43.075 62.421-43.075Q62.316-43.102 62.316-43.204L62.347-43.305Q62.355-43.352 62.437-43.372L64.948-43.372Q65.355-43.372 65.798-43.249Q66.241-43.126 66.546-42.850Q66.851-42.575 66.851-42.153Q66.851-41.766 66.581-41.450Q66.312-41.134 65.913-40.925Q65.515-40.716 65.140-40.626Q65.448-40.501 65.646-40.262Q65.843-40.024 65.843-39.708Q65.843-39.665 65.841-39.637Q65.839-39.610 65.835-39.579L65.757-38.884Q65.726-38.594 65.726-38.473Q65.726-38.259 65.794-38.128Q65.863-37.997 66.070-37.997Q66.323-37.997 66.519-38.221Q66.714-38.446 66.781-38.723Q66.788-38.770 66.874-38.786L66.956-38.786Q67.050-38.759 67.050-38.677Q67.050-38.669 67.042-38.634Q66.991-38.419 66.847-38.208Q66.702-37.997 66.495-37.868Q66.288-37.739 66.062-37.739Q65.757-37.739 65.488-37.825Q65.218-37.911 65.046-38.110Q64.874-38.309 64.874-38.618Q64.874-38.727 64.917-38.907L65.093-39.602Q65.116-39.723 65.116-39.817Q65.116-40.153 64.855-40.335Q64.593-40.516 64.230-40.516L63.179-40.516L62.659-38.450Q62.644-38.356 62.644-38.313Q62.644-38.274 62.657-38.261Q62.671-38.247 62.706-38.235Q62.851-38.204 63.277-38.204Q63.370-38.177 63.370-38.083L63.347-37.977Q63.339-37.927 63.261-37.907M63.741-42.770L63.245-40.770L64.187-40.770Q64.531-40.770 64.847-40.839Q65.163-40.907 65.437-41.075Q65.624-41.200 65.761-41.401Q65.898-41.602 65.966-41.835Q66.034-42.067 66.034-42.290Q66.034-42.747 65.667-42.911Q65.300-43.075 64.765-43.075L64.148-43.075Q63.976-43.075 63.913-43.061Q63.851-43.048 63.818-42.989Q63.784-42.930 63.741-42.770\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 26.185)\">\u003Cpath d=\"M69.256-35.907L68.080-35.907L68.080-43.907L69.256-43.907L69.256-43.540L68.447-43.540L68.447-36.274L69.256-36.274\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 26.185)\">\u003Cpath d=\"M70.633-37.641Q70.633-37.704 70.664-37.747L74.410-43.005Q73.953-42.770 73.386-42.770Q72.734-42.770 72.129-43.091Q72.273-42.743 72.273-42.298Q72.273-41.938 72.152-41.567Q72.031-41.196 71.781-40.940Q71.531-40.684 71.168-40.684Q70.781-40.684 70.498-40.928Q70.215-41.173 70.068-41.546Q69.922-41.919 69.922-42.298Q69.922-42.677 70.068-43.048Q70.215-43.419 70.498-43.663Q70.781-43.907 71.168-43.907Q71.484-43.907 71.754-43.669Q72.090-43.364 72.519-43.192Q72.949-43.020 73.386-43.020Q73.879-43.020 74.297-43.233Q74.715-43.446 75.015-43.844Q75.058-43.907 75.152-43.907Q75.226-43.907 75.281-43.852Q75.336-43.798 75.336-43.723Q75.336-43.661 75.304-43.618L70.961-37.524Q70.914-37.458 70.816-37.458Q70.734-37.458 70.683-37.509Q70.633-37.559 70.633-37.641M71.168-40.938Q71.441-40.938 71.629-41.163Q71.816-41.387 71.904-41.710Q71.992-42.032 71.992-42.298Q71.992-42.555 71.904-42.878Q71.816-43.200 71.629-43.425Q71.441-43.649 71.168-43.649Q70.781-43.649 70.638-43.221Q70.496-42.794 70.496-42.298Q70.496-41.790 70.636-41.364Q70.777-40.938 71.168-40.938M74.945-37.458Q74.558-37.458 74.275-37.704Q73.992-37.950 73.844-38.323Q73.695-38.696 73.695-39.075Q73.695-39.348 73.781-39.636Q73.867-39.923 74.021-40.157Q74.176-40.391 74.412-40.538Q74.648-40.684 74.945-40.684Q75.226-40.684 75.433-40.532Q75.640-40.380 75.779-40.137Q75.918-39.895 75.984-39.614Q76.051-39.333 76.051-39.075Q76.051-38.716 75.929-38.343Q75.808-37.969 75.558-37.714Q75.308-37.458 74.945-37.458M74.945-37.716Q75.219-37.716 75.406-37.940Q75.594-38.165 75.681-38.487Q75.769-38.809 75.769-39.075Q75.769-39.333 75.681-39.655Q75.594-39.977 75.406-40.202Q75.219-40.427 74.945-40.427Q74.554-40.427 74.414-39.997Q74.273-39.567 74.273-39.075Q74.273-38.567 74.410-38.141Q74.547-37.716 74.945-37.716\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 26.185)\">\u003Cpath d=\"M76.755-38.145L76.755-38.235Q76.813-38.442 77.005-38.466L77.716-38.466L77.716-40.794L77.005-40.794Q76.809-40.817 76.755-41.036L76.755-41.122Q76.813-41.333 77.005-41.356L78.106-41.356Q78.305-41.337 78.356-41.122L78.356-40.794Q78.618-41.079 78.973-41.237Q79.329-41.395 79.716-41.395Q80.009-41.395 80.243-41.261Q80.477-41.126 80.477-40.860Q80.477-40.692 80.368-40.575Q80.259-40.458 80.091-40.458Q79.938-40.458 79.823-40.569Q79.708-40.680 79.708-40.837Q79.333-40.837 79.018-40.636Q78.704-40.434 78.530-40.100Q78.356-39.766 78.356-39.387L78.356-38.466L79.302-38.466Q79.509-38.442 79.548-38.235L79.548-38.145Q79.509-37.930 79.302-37.907L77.005-37.907Q76.813-37.930 76.755-38.145M81.364-38.106L81.364-39.020Q81.391-39.227 81.602-39.251L81.770-39.251Q81.934-39.227 81.993-39.067Q82.196-38.427 82.923-38.427Q83.130-38.427 83.358-38.462Q83.587-38.497 83.755-38.612Q83.923-38.727 83.923-38.930Q83.923-39.141 83.700-39.255Q83.477-39.368 83.204-39.411L82.505-39.524Q81.364-39.735 81.364-40.458Q81.364-40.747 81.509-40.936Q81.653-41.126 81.893-41.233Q82.134-41.341 82.389-41.380Q82.645-41.419 82.923-41.419Q83.173-41.419 83.366-41.389Q83.559-41.360 83.723-41.282Q83.802-41.399 83.930-41.419L84.009-41.419Q84.106-41.407 84.169-41.344Q84.231-41.282 84.243-41.188L84.243-40.481Q84.231-40.387 84.169-40.321Q84.106-40.255 84.009-40.243L83.841-40.243Q83.747-40.255 83.680-40.321Q83.614-40.387 83.602-40.481Q83.602-40.860 82.907-40.860Q82.559-40.860 82.241-40.778Q81.923-40.696 81.923-40.450Q81.923-40.184 82.594-40.075L83.298-39.954Q83.782-39.872 84.132-39.624Q84.481-39.376 84.481-38.930Q84.481-38.540 84.245-38.298Q84.009-38.055 83.659-37.962Q83.309-37.868 82.923-37.868Q82.344-37.868 81.946-38.122Q81.876-37.997 81.827-37.940Q81.778-37.884 81.673-37.868L81.602-37.868Q81.387-37.891 81.364-38.106M85.094-36.364L85.094-36.450Q85.137-36.669 85.344-36.692L85.766-36.692L85.766-40.794L85.344-40.794Q85.137-40.817 85.094-41.036L85.094-41.122Q85.141-41.333 85.344-41.356L86.161-41.356Q86.356-41.337 86.407-41.122L86.407-41.052Q86.618-41.219 86.882-41.307Q87.145-41.395 87.415-41.395Q87.755-41.395 88.052-41.251Q88.348-41.106 88.563-40.854Q88.778-40.602 88.893-40.290Q89.009-39.977 89.009-39.634Q89.009-39.169 88.782-38.759Q88.555-38.348 88.169-38.108Q87.782-37.868 87.313-37.868Q86.794-37.868 86.407-38.235L86.407-36.692L86.833-36.692Q87.040-36.669 87.079-36.450L87.079-36.364Q87.040-36.153 86.833-36.130L85.344-36.130Q85.141-36.153 85.094-36.364M87.270-38.427Q87.579-38.427 87.829-38.596Q88.079-38.766 88.223-39.048Q88.368-39.329 88.368-39.634Q88.368-39.923 88.243-40.202Q88.118-40.481 87.886-40.659Q87.653-40.837 87.352-40.837Q87.032-40.837 86.770-40.651Q86.509-40.466 86.407-40.165L86.407-39.313Q86.497-38.946 86.718-38.686Q86.938-38.427 87.270-38.427\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 26.185)\">\u003Cpath d=\"M90.642-35.907L89.467-35.907L89.467-36.274L90.275-36.274L90.275-43.540L89.467-43.540L89.467-43.907L90.642-43.907\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 26.185)\">\u003Cpath d=\"M99.966-38.884L94.653-38.884Q94.575-38.891 94.526-38.940Q94.478-38.989 94.478-39.067Q94.478-39.137 94.525-39.188Q94.571-39.239 94.653-39.251L99.966-39.251Q100.040-39.239 100.087-39.188Q100.134-39.137 100.134-39.067Q100.134-38.989 100.085-38.940Q100.036-38.891 99.966-38.884M99.966-40.571L94.653-40.571Q94.575-40.579 94.526-40.628Q94.478-40.677 94.478-40.755Q94.478-40.825 94.525-40.876Q94.571-40.927 94.653-40.938L99.966-40.938Q100.040-40.927 100.087-40.876Q100.134-40.825 100.134-40.755Q100.134-40.677 100.085-40.628Q100.036-40.579 99.966-40.571M102.735-37.739Q102.032-37.739 101.632-38.139Q101.232-38.540 101.087-39.149Q100.942-39.759 100.942-40.458Q100.942-40.981 101.013-41.444Q101.083-41.907 101.276-42.319Q101.470-42.731 101.827-42.979Q102.185-43.227 102.735-43.227Q103.286-43.227 103.644-42.979Q104.001-42.731 104.192-42.321Q104.384-41.911 104.454-41.442Q104.525-40.973 104.525-40.458Q104.525-39.759 104.382-39.151Q104.239-38.544 103.839-38.141Q103.439-37.739 102.735-37.739M102.735-37.997Q103.208-37.997 103.441-38.432Q103.673-38.868 103.728-39.407Q103.782-39.946 103.782-40.587Q103.782-41.583 103.599-42.276Q103.415-42.969 102.735-42.969Q102.368-42.969 102.148-42.731Q101.927-42.493 101.831-42.136Q101.735-41.778 101.710-41.407Q101.685-41.036 101.685-40.587Q101.685-39.946 101.739-39.407Q101.794-38.868 102.026-38.432Q102.259-37.997 102.735-37.997M106.485-37.907L104.989-37.907L104.989-38.204Q105.622-38.204 106.044-38.684L106.814-39.594L105.821-40.794Q105.665-40.973 105.503-41.016Q105.341-41.059 105.036-41.059L105.036-41.356L106.724-41.356L106.724-41.059Q106.630-41.059 106.554-41.016Q106.478-40.973 106.478-40.884Q106.478-40.841 106.509-40.794L107.165-40.005L107.646-40.579Q107.763-40.716 107.763-40.852Q107.763-40.942 107.712-41.001Q107.661-41.059 107.579-41.059L107.579-41.356L109.067-41.356L109.067-41.059Q108.431-41.059 108.021-40.579L107.341-39.778L108.427-38.466Q108.587-38.290 108.747-38.247Q108.907-38.204 109.212-38.204L109.212-37.907L107.525-37.907L107.525-38.204Q107.614-38.204 107.692-38.247Q107.771-38.290 107.771-38.380Q107.771-38.403 107.739-38.466L106.997-39.372L106.411-38.684Q106.294-38.548 106.294-38.411Q106.294-38.325 106.345-38.264Q106.396-38.204 106.485-38.204L106.485-37.907M111.646-37.907L109.661-37.907L109.661-38.204Q109.935-38.204 110.103-38.251Q110.271-38.298 110.271-38.466L110.271-41.059L109.630-41.059L109.630-41.356L110.271-41.356L110.271-42.290Q110.271-42.555 110.388-42.792Q110.505-43.028 110.698-43.192Q110.892-43.356 111.140-43.448Q111.388-43.540 111.653-43.540Q111.939-43.540 112.163-43.382Q112.388-43.223 112.388-42.946Q112.388-42.790 112.282-42.680Q112.177-42.571 112.013-42.571Q111.857-42.571 111.747-42.680Q111.638-42.790 111.638-42.946Q111.638-43.153 111.798-43.259Q111.700-43.282 111.607-43.282Q111.376-43.282 111.204-43.126Q111.032-42.969 110.946-42.733Q110.860-42.497 110.860-42.274L110.860-41.356L111.829-41.356L111.829-41.059L110.884-41.059L110.884-38.466Q110.884-38.298 111.110-38.251Q111.337-38.204 111.646-38.204L111.646-37.907M112.286-39.130Q112.286-39.626 112.612-39.991Q112.939-40.356 113.462-40.602L113.192-40.762Q112.896-40.946 112.712-41.241Q112.528-41.536 112.528-41.876Q112.528-42.270 112.747-42.581Q112.966-42.891 113.319-43.059Q113.673-43.227 114.056-43.227Q114.329-43.227 114.603-43.149Q114.876-43.071 115.093-42.923Q115.310-42.774 115.446-42.548Q115.583-42.321 115.583-42.028Q115.583-41.622 115.314-41.315Q115.044-41.009 114.622-40.794L115.071-40.524Q115.290-40.387 115.458-40.194Q115.626-40.001 115.724-39.762Q115.821-39.524 115.821-39.266Q115.821-38.927 115.671-38.639Q115.521-38.352 115.275-38.155Q115.028-37.958 114.704-37.848Q114.380-37.739 114.056-37.739Q113.626-37.739 113.220-37.901Q112.814-38.063 112.550-38.382Q112.286-38.700 112.286-39.130M112.775-39.130Q112.775-38.645 113.165-38.329Q113.556-38.012 114.056-38.012Q114.349-38.012 114.648-38.124Q114.946-38.235 115.140-38.454Q115.333-38.673 115.333-38.985Q115.333-39.216 115.192-39.427Q115.052-39.637 114.845-39.755L113.735-40.434Q113.317-40.231 113.046-39.895Q112.775-39.559 112.775-39.130M113.360-41.563L114.349-40.962Q114.696-41.145 114.923-41.415Q115.150-41.684 115.150-42.028Q115.150-42.247 115.058-42.423Q114.966-42.598 114.812-42.721Q114.657-42.844 114.456-42.915Q114.255-42.985 114.056-42.985Q113.650-42.985 113.304-42.774Q112.958-42.563 112.958-42.180Q112.958-41.997 113.069-41.835Q113.181-41.673 113.360-41.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M213.434-1.772H449.59\"\u002F>\u003Cg transform=\"translate(173.542 50.761)\">\u003Cpath d=\"M16.201-37.907L11.798-37.907L11.798-38.187Q12.520-38.187 12.520-38.396L12.520-42.197Q12.520-42.408 11.798-42.408L11.798-42.689L16.088-42.689L16.296-41.052L16.033-41.052Q15.975-41.523 15.873-41.788Q15.770-42.053 15.586-42.186Q15.401-42.320 15.129-42.364Q14.857-42.408 14.358-42.408L13.576-42.408Q13.388-42.408 13.299-42.374Q13.210-42.340 13.210-42.197L13.210-40.532L13.784-40.532Q14.174-40.532 14.357-40.583Q14.540-40.635 14.622-40.807Q14.704-40.980 14.704-41.352L14.967-41.352L14.967-39.431L14.704-39.431Q14.704-39.804 14.622-39.977Q14.540-40.149 14.357-40.200Q14.174-40.252 13.784-40.252L13.210-40.252L13.210-38.396Q13.210-38.256 13.299-38.221Q13.388-38.187 13.576-38.187L14.423-38.187Q14.953-38.187 15.263-38.256Q15.572-38.324 15.760-38.491Q15.948-38.659 16.055-38.961Q16.163-39.264 16.249-39.777L16.515-39.777L16.201-37.907M18.286-37.907L16.963-37.907L16.963-38.187Q17.523-38.187 17.903-38.587L18.617-39.384L17.705-40.433Q17.568-40.580 17.419-40.612Q17.271-40.645 17.004-40.645L17.004-40.925L18.504-40.925L18.504-40.645Q18.313-40.645 18.313-40.511Q18.313-40.481 18.344-40.433L18.939-39.749L19.379-40.245Q19.492-40.375 19.492-40.491Q19.492-40.553 19.455-40.599Q19.417-40.645 19.359-40.645L19.359-40.925L20.675-40.925L20.675-40.645Q20.114-40.645 19.735-40.245L19.113-39.544L20.107-38.396Q20.207-38.297 20.307-38.252Q20.408-38.208 20.519-38.198Q20.630-38.187 20.808-38.187L20.808-37.907L19.315-37.907L19.315-38.187Q19.379-38.187 19.439-38.221Q19.499-38.256 19.499-38.321Q19.499-38.368 19.468-38.396L18.792-39.182L18.258-38.587Q18.146-38.457 18.146-38.341Q18.146-38.276 18.187-38.232Q18.228-38.187 18.286-38.187L18.286-37.907M21.263-39.442Q21.263-39.763 21.388-40.052Q21.512-40.341 21.738-40.564Q21.963-40.788 22.259-40.908Q22.555-41.028 22.873-41.028Q23.201-41.028 23.462-40.928Q23.724-40.829 23.900-40.647Q24.076-40.464 24.170-40.206Q24.264-39.948 24.264-39.616Q24.264-39.524 24.182-39.503L21.926-39.503L21.926-39.442Q21.926-38.854 22.210-38.471Q22.493-38.088 23.061-38.088Q23.382-38.088 23.650-38.281Q23.919-38.474 24.007-38.789Q24.014-38.830 24.089-38.844L24.182-38.844Q24.264-38.820 24.264-38.748Q24.264-38.741 24.257-38.714Q24.144-38.317 23.773-38.078Q23.402-37.839 22.979-37.839Q22.541-37.839 22.141-38.047Q21.741-38.256 21.502-38.623Q21.263-38.990 21.263-39.442M21.933-39.712L23.748-39.712Q23.748-39.989 23.650-40.241Q23.553-40.494 23.355-40.650Q23.156-40.805 22.873-40.805Q22.596-40.805 22.382-40.647Q22.169-40.488 22.051-40.233Q21.933-39.978 21.933-39.712M24.852-39.418Q24.852-39.746 24.987-40.047Q25.122-40.347 25.357-40.568Q25.593-40.788 25.898-40.908Q26.202-41.028 26.526-41.028Q27.032-41.028 27.381-40.925Q27.730-40.823 27.730-40.447Q27.730-40.300 27.632-40.199Q27.535-40.098 27.388-40.098Q27.234-40.098 27.135-40.197Q27.036-40.296 27.036-40.447Q27.036-40.635 27.176-40.727Q26.974-40.778 26.533-40.778Q26.178-40.778 25.949-40.582Q25.720-40.385 25.619-40.076Q25.518-39.766 25.518-39.418Q25.518-39.069 25.645-38.763Q25.771-38.457 26.026-38.273Q26.280-38.088 26.636-38.088Q26.858-38.088 27.043-38.172Q27.227-38.256 27.362-38.411Q27.497-38.567 27.555-38.775Q27.569-38.830 27.624-38.830L27.736-38.830Q27.767-38.830 27.789-38.806Q27.812-38.782 27.812-38.748L27.812-38.727Q27.726-38.440 27.538-38.242Q27.350-38.044 27.085-37.941Q26.820-37.839 26.526-37.839Q26.096-37.839 25.708-38.045Q25.320-38.252 25.086-38.615Q24.852-38.977 24.852-39.418M28.974-38.741L28.974-40.245Q28.974-40.515 28.866-40.576Q28.758-40.638 28.447-40.638L28.447-40.918L29.555-40.993L29.555-38.761L29.555-38.741Q29.555-38.461 29.606-38.317Q29.657-38.174 29.799-38.117Q29.941-38.061 30.228-38.061Q30.481-38.061 30.686-38.201Q30.891-38.341 31.007-38.567Q31.124-38.792 31.124-39.042L31.124-40.245Q31.124-40.515 31.016-40.576Q30.908-40.638 30.597-40.638L30.597-40.918L31.705-40.993L31.705-38.580Q31.705-38.389 31.758-38.307Q31.811-38.225 31.911-38.206Q32.012-38.187 32.228-38.187L32.228-37.907L31.151-37.839L31.151-38.403Q31.042-38.221 30.896-38.098Q30.751-37.975 30.565-37.907Q30.378-37.839 30.177-37.839Q28.974-37.839 28.974-38.741M33.342-38.748L33.342-40.645L32.703-40.645L32.703-40.867Q33.021-40.867 33.238-41.077Q33.455-41.287 33.555-41.597Q33.656-41.906 33.656-42.214L33.923-42.214L33.923-40.925L35-40.925L35-40.645L33.923-40.645L33.923-38.761Q33.923-38.485 34.027-38.286Q34.131-38.088 34.391-38.088Q34.548-38.088 34.654-38.192Q34.760-38.297 34.810-38.450Q34.859-38.604 34.859-38.761L34.859-39.175L35.126-39.175L35.126-38.748Q35.126-38.522 35.027-38.312Q34.928-38.102 34.743-37.970Q34.559-37.839 34.330-37.839Q33.892-37.839 33.617-38.076Q33.342-38.314 33.342-38.748M35.895-39.442Q35.895-39.763 36.020-40.052Q36.145-40.341 36.370-40.564Q36.596-40.788 36.891-40.908Q37.187-41.028 37.505-41.028Q37.833-41.028 38.095-40.928Q38.356-40.829 38.532-40.647Q38.708-40.464 38.802-40.206Q38.896-39.948 38.896-39.616Q38.896-39.524 38.814-39.503L36.558-39.503L36.558-39.442Q36.558-38.854 36.842-38.471Q37.126-38.088 37.693-38.088Q38.014-38.088 38.283-38.281Q38.551-38.474 38.640-38.789Q38.647-38.830 38.722-38.844L38.814-38.844Q38.896-38.820 38.896-38.748Q38.896-38.741 38.889-38.714Q38.776-38.317 38.406-38.078Q38.035-37.839 37.611-37.839Q37.173-37.839 36.773-38.047Q36.374-38.256 36.134-38.623Q35.895-38.990 35.895-39.442M36.565-39.712L38.380-39.712Q38.380-39.989 38.283-40.241Q38.185-40.494 37.987-40.650Q37.789-40.805 37.505-40.805Q37.228-40.805 37.014-40.647Q36.801-40.488 36.683-40.233Q36.565-39.978 36.565-39.712\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(216.929 50.73)\">\u003Cpath d=\"M13.458-37.938L12.235-40.794Q12.153-40.969 12.009-41.014Q11.864-41.059 11.595-41.059L11.595-41.356L13.306-41.356L13.306-41.059Q12.884-41.059 12.884-40.876Q12.884-40.841 12.899-40.794L13.845-38.602L14.685-40.579Q14.724-40.657 14.724-40.747Q14.724-40.887 14.618-40.973Q14.513-41.059 14.372-41.059L14.372-41.356L15.724-41.356L15.724-41.059Q15.200-41.059 14.985-40.579L13.860-37.938Q13.798-37.829 13.692-37.829L13.626-37.829Q13.513-37.829 13.458-37.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 50.73)\">\u003Cpath d=\"M15.769-38.739Q15.769-39.223 16.171-39.518Q16.574-39.813 17.124-39.932Q17.675-40.052 18.167-40.052L18.167-40.341Q18.167-40.567 18.052-40.774Q17.937-40.981 17.740-41.100Q17.542-41.219 17.312-41.219Q16.886-41.219 16.601-41.114Q16.671-41.087 16.718-41.032Q16.765-40.977 16.790-40.907Q16.816-40.837 16.816-40.762Q16.816-40.657 16.765-40.565Q16.714-40.473 16.622-40.423Q16.531-40.372 16.425-40.372Q16.320-40.372 16.228-40.423Q16.136-40.473 16.085-40.565Q16.035-40.657 16.035-40.762Q16.035-41.180 16.423-41.327Q16.812-41.473 17.312-41.473Q17.644-41.473 17.997-41.343Q18.351-41.212 18.579-40.958Q18.808-40.704 18.808-40.356L18.808-38.555Q18.808-38.423 18.880-38.313Q18.953-38.204 19.081-38.204Q19.206-38.204 19.275-38.309Q19.343-38.415 19.343-38.555L19.343-39.067L19.624-39.067L19.624-38.555Q19.624-38.352 19.507-38.194Q19.390-38.036 19.208-37.952Q19.027-37.868 18.824-37.868Q18.593-37.868 18.441-38.040Q18.288-38.212 18.257-38.442Q18.097-38.161 17.788-37.995Q17.480-37.829 17.128-37.829Q16.617-37.829 16.193-38.052Q15.769-38.274 15.769-38.739M16.456-38.739Q16.456-38.454 16.683-38.268Q16.910-38.083 17.203-38.083Q17.449-38.083 17.673-38.200Q17.898-38.317 18.033-38.520Q18.167-38.723 18.167-38.977L18.167-39.809Q17.902-39.809 17.617-39.755Q17.331-39.700 17.060-39.571Q16.788-39.442 16.622-39.235Q16.456-39.028 16.456-38.739M21.831-37.907L19.999-37.907L19.999-38.204Q20.273-38.204 20.441-38.251Q20.609-38.298 20.609-38.466L20.609-42.626Q20.609-42.841 20.546-42.936Q20.484-43.032 20.365-43.053Q20.245-43.075 19.999-43.075L19.999-43.372L21.222-43.458L21.222-38.466Q21.222-38.298 21.390-38.251Q21.558-38.204 21.831-38.204L21.831-37.907M27.222-37.907L22.374-37.907L22.374-38.204Q22.695-38.204 22.939-38.251Q23.183-38.298 23.183-38.466L23.183-42.809Q23.183-42.981 22.939-43.028Q22.695-43.075 22.374-43.075L22.374-43.372L27.109-43.372L27.343-41.524L27.062-41.524Q26.980-42.219 26.804-42.540Q26.628-42.860 26.281-42.968Q25.933-43.075 25.214-43.075L24.351-43.075Q24.132-43.075 24.040-43.032Q23.949-42.989 23.949-42.809L23.949-40.891L24.581-40.891Q25.007-40.891 25.214-40.954Q25.421-41.016 25.509-41.212Q25.597-41.407 25.597-41.829L25.878-41.829L25.878-39.661L25.597-39.661Q25.597-40.083 25.509-40.276Q25.421-40.469 25.214-40.532Q25.007-40.594 24.581-40.594L23.949-40.594L23.949-38.466Q23.949-38.294 24.040-38.249Q24.132-38.204 24.351-38.204L25.277-38.204Q25.859-38.204 26.212-38.286Q26.566-38.368 26.771-38.565Q26.976-38.762 27.089-39.100Q27.203-39.438 27.296-40.020L27.574-40.020L27.222-37.907M33.777-38.884L28.464-38.884Q28.386-38.891 28.337-38.940Q28.288-38.989 28.288-39.067Q28.288-39.137 28.335-39.188Q28.382-39.239 28.464-39.251L33.777-39.251Q33.851-39.239 33.898-39.188Q33.945-39.137 33.945-39.067Q33.945-38.989 33.896-38.940Q33.847-38.891 33.777-38.884M33.777-40.571L28.464-40.571Q28.386-40.579 28.337-40.628Q28.288-40.677 28.288-40.755Q28.288-40.825 28.335-40.876Q28.382-40.927 28.464-40.938L33.777-40.938Q33.851-40.927 33.898-40.876Q33.945-40.825 33.945-40.755Q33.945-40.677 33.896-40.628Q33.847-40.579 33.777-40.571M36.546-37.739Q35.843-37.739 35.443-38.139Q35.042-38.540 34.898-39.149Q34.753-39.759 34.753-40.458Q34.753-40.981 34.824-41.444Q34.894-41.907 35.087-42.319Q35.281-42.731 35.638-42.979Q35.995-43.227 36.546-43.227Q37.097-43.227 37.454-42.979Q37.812-42.731 38.003-42.321Q38.195-41.911 38.265-41.442Q38.335-40.973 38.335-40.458Q38.335-39.759 38.193-39.151Q38.050-38.544 37.650-38.141Q37.249-37.739 36.546-37.739M36.546-37.997Q37.019-37.997 37.251-38.432Q37.484-38.868 37.538-39.407Q37.593-39.946 37.593-40.587Q37.593-41.583 37.410-42.276Q37.226-42.969 36.546-42.969Q36.179-42.969 35.958-42.731Q35.738-42.493 35.642-42.136Q35.546-41.778 35.521-41.407Q35.495-41.036 35.495-40.587Q35.495-39.946 35.550-39.407Q35.605-38.868 35.837-38.432Q36.070-37.997 36.546-37.997M40.296-37.907L38.800-37.907L38.800-38.204Q39.433-38.204 39.855-38.684L40.624-39.594L39.632-40.794Q39.476-40.973 39.314-41.016Q39.152-41.059 38.847-41.059L38.847-41.356L40.535-41.356L40.535-41.059Q40.441-41.059 40.365-41.016Q40.288-40.973 40.288-40.884Q40.288-40.841 40.320-40.794L40.976-40.005L41.456-40.579Q41.574-40.716 41.574-40.852Q41.574-40.942 41.523-41.001Q41.472-41.059 41.390-41.059L41.390-41.356L42.878-41.356L42.878-41.059Q42.242-41.059 41.831-40.579L41.152-39.778L42.238-38.466Q42.398-38.290 42.558-38.247Q42.718-38.204 43.023-38.204L43.023-37.907L41.335-37.907L41.335-38.204Q41.425-38.204 41.503-38.247Q41.581-38.290 41.581-38.380Q41.581-38.403 41.550-38.466L40.808-39.372L40.222-38.684Q40.105-38.548 40.105-38.411Q40.105-38.325 40.156-38.264Q40.206-38.204 40.296-38.204L40.296-37.907M45.456-37.907L43.472-37.907L43.472-38.204Q43.745-38.204 43.913-38.251Q44.081-38.298 44.081-38.466L44.081-41.059L43.441-41.059L43.441-41.356L44.081-41.356L44.081-42.290Q44.081-42.555 44.199-42.792Q44.316-43.028 44.509-43.192Q44.703-43.356 44.951-43.448Q45.199-43.540 45.464-43.540Q45.749-43.540 45.974-43.382Q46.199-43.223 46.199-42.946Q46.199-42.790 46.093-42.680Q45.988-42.571 45.824-42.571Q45.667-42.571 45.558-42.680Q45.449-42.790 45.449-42.946Q45.449-43.153 45.609-43.259Q45.511-43.282 45.417-43.282Q45.187-43.282 45.015-43.126Q44.843-42.969 44.757-42.733Q44.671-42.497 44.671-42.274L44.671-41.356L45.640-41.356L45.640-41.059L44.695-41.059L44.695-38.466Q44.695-38.298 44.921-38.251Q45.148-38.204 45.456-38.204L45.456-37.907M46.097-39.130Q46.097-39.626 46.423-39.991Q46.749-40.356 47.273-40.602L47.003-40.762Q46.706-40.946 46.523-41.241Q46.339-41.536 46.339-41.876Q46.339-42.270 46.558-42.581Q46.777-42.891 47.130-43.059Q47.484-43.227 47.867-43.227Q48.140-43.227 48.413-43.149Q48.687-43.071 48.904-42.923Q49.120-42.774 49.257-42.548Q49.394-42.321 49.394-42.028Q49.394-41.622 49.124-41.315Q48.855-41.009 48.433-40.794L48.882-40.524Q49.101-40.387 49.269-40.194Q49.437-40.001 49.535-39.762Q49.632-39.524 49.632-39.266Q49.632-38.927 49.482-38.639Q49.331-38.352 49.085-38.155Q48.839-37.958 48.515-37.848Q48.191-37.739 47.867-37.739Q47.437-37.739 47.031-37.901Q46.624-38.063 46.361-38.382Q46.097-38.700 46.097-39.130M46.585-39.130Q46.585-38.645 46.976-38.329Q47.367-38.012 47.867-38.012Q48.160-38.012 48.458-38.124Q48.757-38.235 48.951-38.454Q49.144-38.673 49.144-38.985Q49.144-39.216 49.003-39.427Q48.863-39.637 48.656-39.755L47.546-40.434Q47.128-40.231 46.857-39.895Q46.585-39.559 46.585-39.130M47.171-41.563L48.160-40.962Q48.507-41.145 48.734-41.415Q48.960-41.684 48.960-42.028Q48.960-42.247 48.869-42.423Q48.777-42.598 48.622-42.721Q48.468-42.844 48.267-42.915Q48.066-42.985 47.867-42.985Q47.460-42.985 47.115-42.774Q46.769-42.563 46.769-42.180Q46.769-41.997 46.880-41.835Q46.992-41.673 47.171-41.563M53.113-39.723L50.640-39.723Q50.562-39.735 50.513-39.784Q50.464-39.833 50.464-39.907Q50.464-39.981 50.513-40.030Q50.562-40.079 50.640-40.091L53.113-40.091L53.113-42.571Q53.140-42.739 53.296-42.739Q53.370-42.739 53.419-42.690Q53.468-42.641 53.480-42.571L53.480-40.091L55.953-40.091Q56.120-40.059 56.120-39.907Q56.120-39.755 55.953-39.723L53.480-39.723L53.480-37.243Q53.468-37.173 53.419-37.124Q53.370-37.075 53.296-37.075Q53.140-37.075 53.113-37.243L53.113-39.723M56.953-39.130Q56.953-39.626 57.279-39.991Q57.605-40.356 58.128-40.602L57.859-40.762Q57.562-40.946 57.378-41.241Q57.195-41.536 57.195-41.876Q57.195-42.270 57.413-42.581Q57.632-42.891 57.986-43.059Q58.339-43.227 58.722-43.227Q58.995-43.227 59.269-43.149Q59.542-43.071 59.759-42.923Q59.976-42.774 60.113-42.548Q60.249-42.321 60.249-42.028Q60.249-41.622 59.980-41.315Q59.710-41.009 59.288-40.794L59.738-40.524Q59.956-40.387 60.124-40.194Q60.292-40.001 60.390-39.762Q60.488-39.524 60.488-39.266Q60.488-38.927 60.337-38.639Q60.187-38.352 59.941-38.155Q59.695-37.958 59.370-37.848Q59.046-37.739 58.722-37.739Q58.292-37.739 57.886-37.901Q57.480-38.063 57.216-38.382Q56.953-38.700 56.953-39.130M57.441-39.130Q57.441-38.645 57.831-38.329Q58.222-38.012 58.722-38.012Q59.015-38.012 59.314-38.124Q59.613-38.235 59.806-38.454Q59.999-38.673 59.999-38.985Q59.999-39.216 59.859-39.427Q59.718-39.637 59.511-39.755L58.402-40.434Q57.984-40.231 57.712-39.895Q57.441-39.559 57.441-39.130M58.027-41.563L59.015-40.962Q59.363-41.145 59.589-41.415Q59.816-41.684 59.816-42.028Q59.816-42.247 59.724-42.423Q59.632-42.598 59.478-42.721Q59.324-42.844 59.122-42.915Q58.921-42.985 58.722-42.985Q58.316-42.985 57.970-42.774Q57.624-42.563 57.624-42.180Q57.624-41.997 57.736-41.835Q57.847-41.673 58.027-41.563M66.808-38.884L61.495-38.884Q61.417-38.891 61.369-38.940Q61.320-38.989 61.320-39.067Q61.320-39.137 61.367-39.188Q61.413-39.239 61.495-39.251L66.808-39.251Q66.882-39.239 66.929-39.188Q66.976-39.137 66.976-39.067Q66.976-38.989 66.927-38.940Q66.878-38.891 66.808-38.884M66.808-40.571L61.495-40.571Q61.417-40.579 61.369-40.628Q61.320-40.677 61.320-40.755Q61.320-40.825 61.367-40.876Q61.413-40.927 61.495-40.938L66.808-40.938Q66.882-40.927 66.929-40.876Q66.976-40.825 66.976-40.755Q66.976-40.677 66.927-40.628Q66.878-40.579 66.808-40.571M69.578-37.739Q68.874-37.739 68.474-38.139Q68.074-38.540 67.929-39.149Q67.785-39.759 67.785-40.458Q67.785-40.981 67.855-41.444Q67.925-41.907 68.119-42.319Q68.312-42.731 68.669-42.979Q69.027-43.227 69.578-43.227Q70.128-43.227 70.486-42.979Q70.843-42.731 71.035-42.321Q71.226-41.911 71.296-41.442Q71.367-40.973 71.367-40.458Q71.367-39.759 71.224-39.151Q71.081-38.544 70.681-38.141Q70.281-37.739 69.578-37.739M69.578-37.997Q70.050-37.997 70.283-38.432Q70.515-38.868 70.570-39.407Q70.624-39.946 70.624-40.587Q70.624-41.583 70.441-42.276Q70.257-42.969 69.578-42.969Q69.210-42.969 68.990-42.731Q68.769-42.493 68.673-42.136Q68.578-41.778 68.552-41.407Q68.527-41.036 68.527-40.587Q68.527-39.946 68.581-39.407Q68.636-38.868 68.869-38.432Q69.101-37.997 69.578-37.997M73.328-37.907L71.831-37.907L71.831-38.204Q72.464-38.204 72.886-38.684L73.656-39.594L72.663-40.794Q72.507-40.973 72.345-41.016Q72.183-41.059 71.878-41.059L71.878-41.356L73.566-41.356L73.566-41.059Q73.472-41.059 73.396-41.016Q73.320-40.973 73.320-40.884Q73.320-40.841 73.351-40.794L74.007-40.005L74.488-40.579Q74.605-40.716 74.605-40.852Q74.605-40.942 74.554-41.001Q74.503-41.059 74.421-41.059L74.421-41.356L75.910-41.356L75.910-41.059Q75.273-41.059 74.863-40.579L74.183-39.778L75.269-38.466Q75.429-38.290 75.589-38.247Q75.749-38.204 76.054-38.204L76.054-37.907L74.367-37.907L74.367-38.204Q74.456-38.204 74.535-38.247Q74.613-38.290 74.613-38.380Q74.613-38.403 74.581-38.466L73.839-39.372L73.253-38.684Q73.136-38.548 73.136-38.411Q73.136-38.325 73.187-38.264Q73.238-38.204 73.328-38.204L73.328-37.907M79.777-37.907L76.984-37.907L76.984-38.204Q78.046-38.204 78.046-38.466L78.046-42.634Q77.617-42.419 76.937-42.419L76.937-42.716Q77.956-42.716 78.472-43.227L78.617-43.227Q78.691-43.208 78.710-43.130L78.710-38.466Q78.710-38.204 79.777-38.204L79.777-37.907M82.550-37.739Q81.847-37.739 81.447-38.139Q81.046-38.540 80.902-39.149Q80.757-39.759 80.757-40.458Q80.757-40.981 80.828-41.444Q80.898-41.907 81.091-42.319Q81.285-42.731 81.642-42.979Q81.999-43.227 82.550-43.227Q83.101-43.227 83.458-42.979Q83.816-42.731 84.007-42.321Q84.199-41.911 84.269-41.442Q84.339-40.973 84.339-40.458Q84.339-39.759 84.197-39.151Q84.054-38.544 83.654-38.141Q83.253-37.739 82.550-37.739M82.550-37.997Q83.023-37.997 83.255-38.432Q83.488-38.868 83.542-39.407Q83.597-39.946 83.597-40.587Q83.597-41.583 83.413-42.276Q83.230-42.969 82.550-42.969Q82.183-42.969 81.962-42.731Q81.742-42.493 81.646-42.136Q81.550-41.778 81.525-41.407Q81.499-41.036 81.499-40.587Q81.499-39.946 81.554-39.407Q81.609-38.868 81.841-38.432Q82.074-37.997 82.550-37.997M86.796-37.739Q86.093-37.739 85.693-38.139Q85.292-38.540 85.148-39.149Q85.003-39.759 85.003-40.458Q85.003-40.981 85.074-41.444Q85.144-41.907 85.337-42.319Q85.531-42.731 85.888-42.979Q86.245-43.227 86.796-43.227Q87.347-43.227 87.704-42.979Q88.062-42.731 88.253-42.321Q88.445-41.911 88.515-41.442Q88.585-40.973 88.585-40.458Q88.585-39.759 88.443-39.151Q88.300-38.544 87.900-38.141Q87.499-37.739 86.796-37.739M86.796-37.997Q87.269-37.997 87.501-38.432Q87.734-38.868 87.788-39.407Q87.843-39.946 87.843-40.587Q87.843-41.583 87.660-42.276Q87.476-42.969 86.796-42.969Q86.429-42.969 86.208-42.731Q85.988-42.493 85.892-42.136Q85.796-41.778 85.771-41.407Q85.745-41.036 85.745-40.587Q85.745-39.946 85.800-39.407Q85.855-38.868 86.087-38.432Q86.320-37.997 86.796-37.997\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M213.434 22.413H449.59\"\u002F>\u003Cg transform=\"translate(172.695 74.266)\">\u003Cpath d=\"M13.576-37.907L11.839-37.907L11.839-38.187Q12.561-38.187 12.561-38.587L12.561-42.197Q12.561-42.408 11.839-42.408L11.839-42.689L13.196-42.689Q13.292-42.689 13.343-42.590L15.018-38.615L16.690-42.590Q16.737-42.689 16.836-42.689L18.187-42.689L18.187-42.408Q17.465-42.408 17.465-42.197L17.465-38.396Q17.465-38.187 18.187-38.187L18.187-37.907L16.129-37.907L16.129-38.187Q16.850-38.187 16.850-38.396L16.850-42.408L14.998-38.006Q14.950-37.907 14.840-37.907Q14.728-37.907 14.680-38.006L12.855-42.337L12.855-38.587Q12.855-38.187 13.576-38.187L13.576-37.907M18.880-39.442Q18.880-39.763 19.005-40.052Q19.130-40.341 19.356-40.564Q19.581-40.788 19.877-40.908Q20.172-41.028 20.490-41.028Q20.818-41.028 21.080-40.928Q21.341-40.829 21.517-40.647Q21.693-40.464 21.787-40.206Q21.881-39.948 21.881-39.616Q21.881-39.524 21.799-39.503L19.544-39.503L19.544-39.442Q19.544-38.854 19.827-38.471Q20.111-38.088 20.678-38.088Q21-38.088 21.268-38.281Q21.536-38.474 21.625-38.789Q21.632-38.830 21.707-38.844L21.799-38.844Q21.881-38.820 21.881-38.748Q21.881-38.741 21.875-38.714Q21.762-38.317 21.391-38.078Q21.020-37.839 20.596-37.839Q20.159-37.839 19.759-38.047Q19.359-38.256 19.120-38.623Q18.880-38.990 18.880-39.442M19.550-39.712L21.365-39.712Q21.365-39.989 21.268-40.241Q21.170-40.494 20.972-40.650Q20.774-40.805 20.490-40.805Q20.213-40.805 20-40.647Q19.786-40.488 19.668-40.233Q19.550-39.978 19.550-39.712M24.151-37.907L22.517-37.907L22.517-38.187Q22.746-38.187 22.895-38.221Q23.044-38.256 23.044-38.396L23.044-40.245Q23.044-40.515 22.936-40.576Q22.828-40.638 22.517-40.638L22.517-40.918L23.577-40.993L23.577-40.344Q23.748-40.652 24.052-40.823Q24.356-40.993 24.701-40.993Q25.101-40.993 25.378-40.853Q25.655-40.713 25.740-40.365Q25.908-40.658 26.207-40.826Q26.506-40.993 26.851-40.993Q27.357-40.993 27.641-40.770Q27.924-40.546 27.924-40.050L27.924-38.396Q27.924-38.259 28.073-38.223Q28.222-38.187 28.447-38.187L28.447-37.907L26.817-37.907L26.817-38.187Q27.043-38.187 27.193-38.223Q27.343-38.259 27.343-38.396L27.343-40.036Q27.343-40.371 27.224-40.571Q27.104-40.771 26.790-40.771Q26.520-40.771 26.285-40.635Q26.051-40.498 25.913-40.264Q25.774-40.030 25.774-39.756L25.774-38.396Q25.774-38.259 25.923-38.223Q26.072-38.187 26.297-38.187L26.297-37.907L24.667-37.907L24.667-38.187Q24.896-38.187 25.045-38.221Q25.193-38.256 25.193-38.396L25.193-40.036Q25.193-40.371 25.074-40.571Q24.954-40.771 24.640-40.771Q24.370-40.771 24.136-40.635Q23.901-40.498 23.763-40.264Q23.625-40.030 23.625-39.756L23.625-38.396Q23.625-38.259 23.775-38.223Q23.925-38.187 24.151-38.187L24.151-37.907M28.994-39.390Q28.994-39.732 29.129-40.031Q29.264-40.330 29.503-40.554Q29.743-40.778 30.061-40.903Q30.378-41.028 30.710-41.028Q31.154-41.028 31.554-40.812Q31.954-40.597 32.188-40.219Q32.422-39.842 32.422-39.390Q32.422-39.049 32.281-38.765Q32.139-38.481 31.894-38.274Q31.650-38.068 31.341-37.953Q31.031-37.839 30.710-37.839Q30.279-37.839 29.878-38.040Q29.476-38.242 29.235-38.594Q28.994-38.946 28.994-39.390M30.710-38.088Q31.312-38.088 31.535-38.466Q31.759-38.844 31.759-39.476Q31.759-40.088 31.525-40.447Q31.291-40.805 30.710-40.805Q29.657-40.805 29.657-39.476Q29.657-38.844 29.883-38.466Q30.108-38.088 30.710-38.088M34.767-37.907L33.031-37.907L33.031-38.187Q33.260-38.187 33.409-38.221Q33.557-38.256 33.557-38.396L33.557-40.245Q33.557-40.515 33.450-40.576Q33.342-40.638 33.031-40.638L33.031-40.918L34.060-40.993L34.060-40.286Q34.190-40.594 34.432-40.793Q34.675-40.993 34.993-40.993Q35.211-40.993 35.382-40.869Q35.553-40.744 35.553-40.532Q35.553-40.395 35.454-40.296Q35.355-40.197 35.222-40.197Q35.085-40.197 34.986-40.296Q34.887-40.395 34.887-40.532Q34.887-40.672 34.986-40.771Q34.695-40.771 34.495-40.575Q34.295-40.378 34.203-40.084Q34.111-39.790 34.111-39.510L34.111-38.396Q34.111-38.187 34.767-38.187L34.767-37.907M36.473-36.772Q36.603-36.704 36.739-36.704Q36.910-36.704 37.061-36.793Q37.211-36.882 37.322-37.027Q37.433-37.172 37.512-37.340L37.775-37.907L36.606-40.433Q36.531-40.580 36.401-40.612Q36.271-40.645 36.039-40.645L36.039-40.925L37.560-40.925L37.560-40.645Q37.211-40.645 37.211-40.498Q37.214-40.477 37.216-40.460Q37.218-40.443 37.218-40.433L38.076-38.574L38.848-40.245Q38.882-40.313 38.882-40.392Q38.882-40.505 38.799-40.575Q38.715-40.645 38.602-40.645L38.602-40.925L39.798-40.925L39.798-40.645Q39.580-40.645 39.407-40.541Q39.234-40.436 39.142-40.245L37.806-37.340Q37.635-36.970 37.365-36.724Q37.095-36.478 36.739-36.478Q36.469-36.478 36.251-36.644Q36.032-36.810 36.032-37.073Q36.032-37.210 36.124-37.299Q36.216-37.387 36.356-37.387Q36.493-37.387 36.582-37.299Q36.671-37.210 36.671-37.073Q36.671-36.970 36.618-36.892Q36.565-36.813 36.473-36.772\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\">\u003Cg transform=\"translate(216.929 74.555)\">\u003Cpath d=\"M13.458-37.938L12.235-40.794Q12.153-40.969 12.009-41.014Q11.864-41.059 11.595-41.059L11.595-41.356L13.306-41.356L13.306-41.059Q12.884-41.059 12.884-40.876Q12.884-40.841 12.899-40.794L13.845-38.602L14.685-40.579Q14.724-40.657 14.724-40.747Q14.724-40.887 14.618-40.973Q14.513-41.059 14.372-41.059L14.372-41.356L15.724-41.356L15.724-41.059Q15.200-41.059 14.985-40.579L13.860-37.938Q13.798-37.829 13.692-37.829L13.626-37.829Q13.513-37.829 13.458-37.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 74.555)\">\u003Cpath d=\"M15.769-38.739Q15.769-39.223 16.171-39.518Q16.574-39.813 17.124-39.932Q17.675-40.052 18.167-40.052L18.167-40.341Q18.167-40.567 18.052-40.774Q17.937-40.981 17.740-41.100Q17.542-41.219 17.312-41.219Q16.886-41.219 16.601-41.114Q16.671-41.087 16.718-41.032Q16.765-40.977 16.790-40.907Q16.816-40.837 16.816-40.762Q16.816-40.657 16.765-40.565Q16.714-40.473 16.622-40.423Q16.531-40.372 16.425-40.372Q16.320-40.372 16.228-40.423Q16.136-40.473 16.085-40.565Q16.035-40.657 16.035-40.762Q16.035-41.180 16.423-41.327Q16.812-41.473 17.312-41.473Q17.644-41.473 17.997-41.343Q18.351-41.212 18.579-40.958Q18.808-40.704 18.808-40.356L18.808-38.555Q18.808-38.423 18.880-38.313Q18.953-38.204 19.081-38.204Q19.206-38.204 19.275-38.309Q19.343-38.415 19.343-38.555L19.343-39.067L19.624-39.067L19.624-38.555Q19.624-38.352 19.507-38.194Q19.390-38.036 19.208-37.952Q19.027-37.868 18.824-37.868Q18.593-37.868 18.441-38.040Q18.288-38.212 18.257-38.442Q18.097-38.161 17.788-37.995Q17.480-37.829 17.128-37.829Q16.617-37.829 16.193-38.052Q15.769-38.274 15.769-38.739M16.456-38.739Q16.456-38.454 16.683-38.268Q16.910-38.083 17.203-38.083Q17.449-38.083 17.673-38.200Q17.898-38.317 18.033-38.520Q18.167-38.723 18.167-38.977L18.167-39.809Q17.902-39.809 17.617-39.755Q17.331-39.700 17.060-39.571Q16.788-39.442 16.622-39.235Q16.456-39.028 16.456-38.739M21.831-37.907L19.999-37.907L19.999-38.204Q20.273-38.204 20.441-38.251Q20.609-38.298 20.609-38.466L20.609-42.626Q20.609-42.841 20.546-42.936Q20.484-43.032 20.365-43.053Q20.245-43.075 19.999-43.075L19.999-43.372L21.222-43.458L21.222-38.466Q21.222-38.298 21.390-38.251Q21.558-38.204 21.831-38.204L21.831-37.907M24.335-37.907L22.413-37.907L22.413-38.204Q23.222-38.204 23.222-38.684L23.222-42.809Q23.222-42.981 22.980-43.028Q22.738-43.075 22.413-43.075L22.413-43.372L23.910-43.372Q24.019-43.372 24.078-43.259L25.925-38.716L27.765-43.259Q27.828-43.372 27.933-43.372L29.437-43.372L29.437-43.075Q29.117-43.075 28.874-43.028Q28.632-42.981 28.632-42.809L28.632-38.466Q28.632-38.298 28.874-38.251Q29.117-38.204 29.437-38.204L29.437-37.907L27.136-37.907L27.136-38.204Q27.941-38.204 27.941-38.466L27.941-43.059L25.894-38.020Q25.859-37.907 25.726-37.907Q25.585-37.907 25.550-38.020L23.527-42.997L23.527-38.684Q23.527-38.204 24.335-38.204L24.335-37.907M35.777-38.884L30.464-38.884Q30.386-38.891 30.337-38.940Q30.288-38.989 30.288-39.067Q30.288-39.137 30.335-39.188Q30.382-39.239 30.464-39.251L35.777-39.251Q35.851-39.239 35.898-39.188Q35.945-39.137 35.945-39.067Q35.945-38.989 35.896-38.940Q35.847-38.891 35.777-38.884M35.777-40.571L30.464-40.571Q30.386-40.579 30.337-40.628Q30.288-40.677 30.288-40.755Q30.288-40.825 30.335-40.876Q30.382-40.927 30.464-40.938L35.777-40.938Q35.851-40.927 35.898-40.876Q35.945-40.825 35.945-40.755Q35.945-40.677 35.896-40.628Q35.847-40.579 35.777-40.571\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 74.555)\">\u003Cpath d=\"M41.038-37.907L39.320-37.907Q39.280-37.907 39.253-37.948Q39.226-37.989 39.226-38.036L39.249-38.137Q39.257-38.188 39.343-38.204Q40.073-38.204 40.198-38.731L41.226-42.829Q41.249-42.899 41.249-42.962Q41.249-43.024 41.183-43.044Q41.038-43.075 40.616-43.075Q40.511-43.106 40.511-43.204L40.542-43.305Q40.554-43.352 40.632-43.372L42.030-43.372Q42.089-43.372 42.126-43.343Q42.163-43.313 42.167-43.259L42.878-38.684L45.878-43.259Q45.956-43.372 46.073-43.372L47.417-43.372Q47.464-43.360 47.491-43.329Q47.519-43.298 47.519-43.251L47.495-43.145Q47.476-43.091 47.402-43.075Q46.960-43.075 46.800-43.036Q46.652-43.001 46.593-42.770L45.511-38.450Q45.495-38.356 45.495-38.313Q45.495-38.255 45.562-38.235Q45.702-38.204 46.128-38.204Q46.226-38.177 46.226-38.083L46.198-37.977Q46.191-37.927 46.112-37.907L44.030-37.907Q43.991-37.907 43.964-37.948Q43.937-37.989 43.937-38.036L43.960-38.137Q43.968-38.188 44.058-38.204Q44.495-38.204 44.654-38.243Q44.812-38.282 44.855-38.509L45.991-43.052L42.695-38.020Q42.628-37.907 42.495-37.907Q42.362-37.907 42.351-38.020L41.577-42.985L40.495-38.677Q40.480-38.575 40.480-38.524Q40.480-38.325 40.644-38.264Q40.808-38.204 41.058-38.204Q41.152-38.177 41.152-38.083L41.128-37.977Q41.120-37.927 41.038-37.907\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 74.555)\">\u003Cpath d=\"M47.341-37.719Q47.341-38.106 47.602-38.377Q47.862-38.648 48.264-38.817L48.091-38.914Q47.842-39.061 47.688-39.279Q47.534-39.497 47.534-39.767Q47.534-40.077 47.720-40.310Q47.906-40.543 48.199-40.665Q48.492-40.786 48.794-40.786Q49.084-40.786 49.376-40.688Q49.667-40.590 49.860-40.385Q50.054-40.180 50.054-39.881Q50.054-39.562 49.844-39.342Q49.635-39.122 49.292-38.961L49.614-38.788Q49.896-38.624 50.070-38.378Q50.244-38.132 50.244-37.827Q50.244-37.464 50.029-37.202Q49.814-36.940 49.477-36.805Q49.140-36.670 48.794-36.670Q48.451-36.670 48.117-36.784Q47.783-36.899 47.562-37.134Q47.341-37.370 47.341-37.719M47.748-37.725Q47.748-37.350 48.078-37.130Q48.407-36.910 48.794-36.910Q49.028-36.910 49.269-36.985Q49.509-37.060 49.673-37.218Q49.837-37.376 49.837-37.619Q49.837-37.789 49.729-37.928Q49.620-38.067 49.459-38.158L48.522-38.674Q48.196-38.536 47.972-38.290Q47.748-38.044 47.748-37.725M48.170-39.579L49.046-39.099Q49.693-39.415 49.693-39.881Q49.693-40.095 49.557-40.252Q49.421-40.408 49.214-40.486Q49.008-40.564 48.794-40.564Q48.472-40.564 48.182-40.424Q47.892-40.285 47.892-39.995Q47.892-39.764 48.170-39.579\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.180\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 74.555)\">\u003Cpath d=\"M53.298-35.907L52.122-35.907L52.122-43.907L53.298-43.907L53.298-43.540L52.489-43.540L52.489-36.274L53.298-36.274\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 74.555)\">\u003Cpath d=\"M55.612-37.829Q55.178-37.829 54.846-38.067Q54.514-38.305 54.294-38.694Q54.073-39.083 53.966-39.520Q53.858-39.958 53.858-40.356Q53.858-40.747 53.968-41.190Q54.077-41.634 54.294-42.014Q54.511-42.395 54.845-42.636Q55.178-42.876 55.612-42.876Q56.167-42.876 56.567-42.477Q56.968-42.079 57.165-41.493Q57.362-40.907 57.362-40.356Q57.362-39.802 57.165-39.214Q56.968-38.626 56.567-38.227Q56.167-37.829 55.612-37.829M55.612-38.387Q55.913-38.387 56.130-38.604Q56.346-38.821 56.473-39.149Q56.600-39.477 56.661-39.823Q56.721-40.169 56.721-40.450Q56.721-40.700 56.659-41.026Q56.596-41.352 56.466-41.643Q56.335-41.934 56.122-42.124Q55.909-42.313 55.612-42.313Q55.237-42.313 54.985-42.001Q54.733-41.688 54.616-41.255Q54.499-40.821 54.499-40.450Q54.499-40.052 54.612-39.571Q54.725-39.091 54.973-38.739Q55.221-38.387 55.612-38.387M57.995-38.145L57.995-38.235Q58.034-38.442 58.241-38.466L58.647-38.466L59.577-39.684L58.706-40.794L58.288-40.794Q58.093-40.813 58.042-41.036L58.042-41.122Q58.093-41.333 58.288-41.356L59.448-41.356Q59.647-41.333 59.698-41.122L59.698-41.036Q59.647-40.817 59.448-40.794L59.339-40.794L59.835-40.137L60.311-40.794L60.194-40.794Q59.995-40.817 59.944-41.036L59.944-41.122Q59.995-41.333 60.194-41.356L61.354-41.356Q61.550-41.337 61.600-41.122L61.600-41.036Q61.550-40.817 61.354-40.794L60.944-40.794L60.096-39.684L61.057-38.466L61.464-38.466Q61.663-38.442 61.714-38.235L61.714-38.145Q61.675-37.930 61.464-37.907L60.311-37.907Q60.104-37.930 60.065-38.145L60.065-38.235Q60.104-38.442 60.311-38.466L60.440-38.466L59.835-39.321L59.249-38.466L59.393-38.466Q59.600-38.442 59.639-38.235L59.639-38.145Q59.600-37.930 59.393-37.907L58.241-37.907Q58.046-37.927 57.995-38.145M62.303-38.145L62.303-38.235Q62.354-38.442 62.550-38.466L63.432-38.466L63.432-40.794L62.577-40.794Q62.378-40.817 62.327-41.036L62.327-41.122Q62.378-41.333 62.577-41.356L63.432-41.356L63.432-41.809Q63.432-42.274 63.839-42.555Q64.245-42.837 64.725-42.837Q65.038-42.837 65.282-42.716Q65.526-42.594 65.526-42.313Q65.526-42.149 65.417-42.032Q65.307-41.915 65.143-41.915Q64.995-41.915 64.874-42.020Q64.753-42.126 64.753-42.274L64.671-42.274Q64.518-42.274 64.382-42.214Q64.245-42.153 64.159-42.038Q64.073-41.923 64.073-41.778L64.073-41.356L65.104-41.356Q65.300-41.337 65.350-41.122L65.350-41.036Q65.300-40.817 65.104-40.794L64.073-40.794L64.073-38.466L64.952-38.466Q65.147-38.442 65.198-38.235L65.198-38.145Q65.147-37.930 64.952-37.907L62.550-37.907Q62.354-37.930 62.303-38.145M66.581-39.321Q66.581-39.606 66.737-39.860Q66.893-40.114 67.143-40.288Q67.393-40.462 67.678-40.548Q67.440-40.622 67.214-40.764Q66.987-40.907 66.845-41.116Q66.702-41.325 66.702-41.571Q66.702-41.969 66.948-42.264Q67.194-42.559 67.577-42.718Q67.960-42.876 68.350-42.876Q68.741-42.876 69.124-42.718Q69.507-42.559 69.753-42.261Q69.999-41.962 69.999-41.571Q69.999-41.325 69.856-41.118Q69.714-40.911 69.487-40.766Q69.261-40.622 69.022-40.548Q69.475-40.411 69.796-40.085Q70.116-39.759 70.116-39.321Q70.116-38.884 69.858-38.540Q69.600-38.196 69.190-38.012Q68.780-37.829 68.350-37.829Q67.921-37.829 67.511-38.011Q67.100-38.192 66.841-38.536Q66.581-38.880 66.581-39.321M67.221-39.321Q67.221-39.048 67.387-38.833Q67.553-38.618 67.815-38.503Q68.077-38.387 68.350-38.387Q68.624-38.387 68.884-38.503Q69.143-38.618 69.309-38.835Q69.475-39.052 69.475-39.321Q69.475-39.598 69.309-39.815Q69.143-40.032 68.884-40.149Q68.624-40.266 68.350-40.266Q68.077-40.266 67.815-40.149Q67.553-40.032 67.387-39.817Q67.221-39.602 67.221-39.321M67.343-41.571Q67.343-41.333 67.499-41.165Q67.655-40.997 67.891-40.913Q68.128-40.829 68.350-40.829Q68.569-40.829 68.807-40.913Q69.046-40.997 69.202-41.167Q69.358-41.337 69.358-41.571Q69.358-41.805 69.202-41.975Q69.046-42.145 68.807-42.229Q68.569-42.313 68.350-42.313Q68.128-42.313 67.891-42.229Q67.655-42.145 67.499-41.977Q67.343-41.809 67.343-41.571\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 74.555)\">\u003Cpath d=\"M71.850-35.907L70.675-35.907L70.675-36.274L71.483-36.274L71.483-43.540L70.675-43.540L70.675-43.907L71.850-43.907\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 74.555)\">\u003Cpath d=\"M81.175-38.884L75.862-38.884Q75.784-38.891 75.735-38.940Q75.687-38.989 75.687-39.067Q75.687-39.137 75.734-39.188Q75.780-39.239 75.862-39.251L81.175-39.251Q81.249-39.239 81.296-39.188Q81.343-39.137 81.343-39.067Q81.343-38.989 81.294-38.940Q81.245-38.891 81.175-38.884M81.175-40.571L75.862-40.571Q75.784-40.579 75.735-40.628Q75.687-40.677 75.687-40.755Q75.687-40.825 75.734-40.876Q75.780-40.927 75.862-40.938L81.175-40.938Q81.249-40.927 81.296-40.876Q81.343-40.825 81.343-40.755Q81.343-40.677 81.294-40.628Q81.245-40.579 81.175-40.571\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 74.555)\">\u003Cpath d=\"M86.779-37.739Q86.076-37.739 85.676-38.139Q85.275-38.540 85.131-39.149Q84.986-39.759 84.986-40.458Q84.986-40.981 85.056-41.444Q85.127-41.907 85.320-42.319Q85.513-42.731 85.871-42.979Q86.228-43.227 86.779-43.227Q87.330-43.227 87.687-42.979Q88.045-42.731 88.236-42.321Q88.428-41.911 88.498-41.442Q88.568-40.973 88.568-40.458Q88.568-39.759 88.426-39.151Q88.283-38.544 87.883-38.141Q87.482-37.739 86.779-37.739M86.779-37.997Q87.252-37.997 87.484-38.432Q87.717-38.868 87.771-39.407Q87.826-39.946 87.826-40.587Q87.826-41.583 87.642-42.276Q87.459-42.969 86.779-42.969Q86.412-42.969 86.191-42.731Q85.971-42.493 85.875-42.136Q85.779-41.778 85.754-41.407Q85.728-41.036 85.728-40.587Q85.728-39.946 85.783-39.407Q85.838-38.868 86.070-38.432Q86.303-37.997 86.779-37.997M90.529-37.907L89.033-37.907L89.033-38.204Q89.666-38.204 90.088-38.684L90.857-39.594L89.865-40.794Q89.709-40.973 89.547-41.016Q89.385-41.059 89.080-41.059L89.080-41.356L90.767-41.356L90.767-41.059Q90.674-41.059 90.597-41.016Q90.521-40.973 90.521-40.884Q90.521-40.841 90.553-40.794L91.209-40.005L91.689-40.579Q91.806-40.716 91.806-40.852Q91.806-40.942 91.756-41.001Q91.705-41.059 91.623-41.059L91.623-41.356L93.111-41.356L93.111-41.059Q92.474-41.059 92.064-40.579L91.385-39.778L92.471-38.466Q92.631-38.290 92.791-38.247Q92.951-38.204 93.256-38.204L93.256-37.907L91.568-37.907L91.568-38.204Q91.658-38.204 91.736-38.247Q91.814-38.290 91.814-38.380Q91.814-38.403 91.783-38.466L91.041-39.372L90.455-38.684Q90.338-38.548 90.338-38.411Q90.338-38.325 90.388-38.264Q90.439-38.204 90.529-38.204L90.529-37.907M95.506-37.739Q94.803-37.739 94.402-38.139Q94.002-38.540 93.857-39.149Q93.713-39.759 93.713-40.458Q93.713-40.981 93.783-41.444Q93.853-41.907 94.047-42.319Q94.240-42.731 94.597-42.979Q94.955-43.227 95.506-43.227Q96.056-43.227 96.414-42.979Q96.771-42.731 96.963-42.321Q97.154-41.911 97.224-41.442Q97.295-40.973 97.295-40.458Q97.295-39.759 97.152-39.151Q97.010-38.544 96.609-38.141Q96.209-37.739 95.506-37.739M95.506-37.997Q95.978-37.997 96.211-38.432Q96.443-38.868 96.498-39.407Q96.553-39.946 96.553-40.587Q96.553-41.583 96.369-42.276Q96.185-42.969 95.506-42.969Q95.138-42.969 94.918-42.731Q94.697-42.493 94.601-42.136Q94.506-41.778 94.480-41.407Q94.455-41.036 94.455-40.587Q94.455-39.946 94.510-39.407Q94.564-38.868 94.797-38.432Q95.029-37.997 95.506-37.997M101.224-37.907L98.431-37.907L98.431-38.204Q99.494-38.204 99.494-38.466L99.494-42.634Q99.064-42.419 98.385-42.419L98.385-42.716Q99.404-42.716 99.920-43.227L100.064-43.227Q100.138-43.208 100.158-43.130L100.158-38.466Q100.158-38.204 101.224-38.204L101.224-37.907M102.670-38.540Q102.861-38.266 103.217-38.139Q103.572-38.012 103.955-38.012Q104.291-38.012 104.500-38.198Q104.709-38.384 104.804-38.677Q104.900-38.969 104.900-39.282Q104.900-39.606 104.803-39.901Q104.705-40.196 104.492-40.380Q104.279-40.563 103.947-40.563L103.381-40.563Q103.349-40.563 103.320-40.593Q103.291-40.622 103.291-40.649L103.291-40.731Q103.291-40.766 103.320-40.792Q103.349-40.817 103.381-40.817L103.861-40.852Q104.146-40.852 104.344-41.057Q104.541-41.262 104.637-41.557Q104.732-41.852 104.732-42.130Q104.732-42.509 104.533-42.747Q104.334-42.985 103.955-42.985Q103.635-42.985 103.346-42.878Q103.056-42.770 102.892-42.548Q103.072-42.548 103.195-42.421Q103.318-42.294 103.318-42.122Q103.318-41.950 103.193-41.825Q103.068-41.700 102.892-41.700Q102.721-41.700 102.596-41.825Q102.471-41.950 102.471-42.122Q102.471-42.489 102.695-42.737Q102.920-42.985 103.260-43.106Q103.599-43.227 103.955-43.227Q104.303-43.227 104.666-43.106Q105.029-42.985 105.277-42.735Q105.525-42.485 105.525-42.130Q105.525-41.645 105.207-41.262Q104.888-40.880 104.412-40.708Q104.963-40.598 105.363-40.212Q105.763-39.825 105.763-39.290Q105.763-38.833 105.500-38.477Q105.236-38.122 104.814-37.930Q104.392-37.739 103.955-37.739Q103.545-37.739 103.152-37.874Q102.760-38.009 102.494-38.294Q102.228-38.579 102.228-38.997Q102.228-39.192 102.361-39.321Q102.494-39.450 102.685-39.450Q102.810-39.450 102.914-39.391Q103.017-39.333 103.080-39.227Q103.142-39.122 103.142-38.997Q103.142-38.802 103.008-38.671Q102.873-38.540 102.670-38.540\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 74.555)\">\u003Cpath d=\"M111.595-35.915Q110.982-36.372 110.580-37.007Q110.177-37.641 109.982-38.387Q109.787-39.134 109.787-39.907Q109.787-40.680 109.982-41.427Q110.177-42.173 110.580-42.807Q110.982-43.442 111.595-43.899Q111.607-43.903 111.615-43.905Q111.623-43.907 111.634-43.907L111.712-43.907Q111.751-43.907 111.777-43.880Q111.802-43.852 111.802-43.809Q111.802-43.759 111.771-43.739Q111.263-43.286 110.941-42.663Q110.619-42.040 110.478-41.344Q110.337-40.649 110.337-39.907Q110.337-39.173 110.476-38.473Q110.615-37.774 110.939-37.149Q111.263-36.524 111.771-36.075Q111.802-36.055 111.802-36.005Q111.802-35.962 111.777-35.934Q111.751-35.907 111.712-35.907L111.634-35.907Q111.626-35.911 111.617-35.913Q111.607-35.915 111.595-35.915M114.529-37.907L112.548-37.907L112.548-38.204Q112.818-38.204 112.986-38.249Q113.154-38.294 113.154-38.466L113.154-40.602Q113.154-40.817 113.091-40.913Q113.029-41.009 112.912-41.030Q112.794-41.052 112.548-41.052L112.548-41.348L113.716-41.434L113.716-40.649Q113.794-40.860 113.947-41.046Q114.099-41.231 114.298-41.333Q114.498-41.434 114.724-41.434Q114.970-41.434 115.162-41.290Q115.353-41.145 115.353-40.915Q115.353-40.759 115.248-40.649Q115.142-40.540 114.986-40.540Q114.830-40.540 114.720-40.649Q114.611-40.759 114.611-40.915Q114.611-41.075 114.716-41.180Q114.392-41.180 114.177-40.952Q113.962-40.723 113.867-40.384Q113.771-40.044 113.771-39.739L113.771-38.466Q113.771-38.298 113.998-38.251Q114.224-38.204 114.529-38.204L114.529-37.907M115.833-39.661Q115.833-40.141 116.066-40.557Q116.298-40.973 116.708-41.223Q117.119-41.473 117.595-41.473Q118.326-41.473 118.724-41.032Q119.123-40.591 119.123-39.860Q119.123-39.755 119.029-39.731L116.580-39.731L116.580-39.661Q116.580-39.251 116.701-38.895Q116.822-38.540 117.093-38.323Q117.365-38.106 117.794-38.106Q118.158-38.106 118.455-38.335Q118.751-38.563 118.853-38.915Q118.861-38.962 118.947-38.977L119.029-38.977Q119.123-38.950 119.123-38.868Q119.123-38.860 119.115-38.829Q119.052-38.602 118.914-38.419Q118.775-38.235 118.583-38.102Q118.392-37.969 118.173-37.899Q117.955-37.829 117.716-37.829Q117.345-37.829 117.007-37.966Q116.669-38.102 116.402-38.354Q116.134-38.606 115.984-38.946Q115.833-39.286 115.833-39.661M116.587-39.969L118.548-39.969Q118.548-40.274 118.447-40.565Q118.345-40.856 118.128-41.038Q117.912-41.219 117.595-41.219Q117.294-41.219 117.064-41.032Q116.833-40.844 116.710-40.553Q116.587-40.262 116.587-39.969M119.708-38.739Q119.708-39.223 120.111-39.518Q120.513-39.813 121.064-39.932Q121.615-40.052 122.107-40.052L122.107-40.341Q122.107-40.567 121.992-40.774Q121.876-40.981 121.679-41.100Q121.482-41.219 121.251-41.219Q120.826-41.219 120.540-41.114Q120.611-41.087 120.658-41.032Q120.705-40.977 120.730-40.907Q120.755-40.837 120.755-40.762Q120.755-40.657 120.705-40.565Q120.654-40.473 120.562-40.423Q120.470-40.372 120.365-40.372Q120.259-40.372 120.167-40.423Q120.076-40.473 120.025-40.565Q119.974-40.657 119.974-40.762Q119.974-41.180 120.363-41.327Q120.751-41.473 121.251-41.473Q121.583-41.473 121.937-41.343Q122.290-41.212 122.519-40.958Q122.748-40.704 122.748-40.356L122.748-38.555Q122.748-38.423 122.820-38.313Q122.892-38.204 123.021-38.204Q123.146-38.204 123.214-38.309Q123.283-38.415 123.283-38.555L123.283-39.067L123.564-39.067L123.564-38.555Q123.564-38.352 123.447-38.194Q123.330-38.036 123.148-37.952Q122.966-37.868 122.763-37.868Q122.533-37.868 122.380-38.040Q122.228-38.212 122.197-38.442Q122.037-38.161 121.728-37.995Q121.419-37.829 121.068-37.829Q120.556-37.829 120.132-38.052Q119.708-38.274 119.708-38.739M120.396-38.739Q120.396-38.454 120.623-38.268Q120.849-38.083 121.142-38.083Q121.388-38.083 121.613-38.200Q121.837-38.317 121.972-38.520Q122.107-38.723 122.107-38.977L122.107-39.809Q121.841-39.809 121.556-39.755Q121.271-39.700 120.999-39.571Q120.728-39.442 120.562-39.235Q120.396-39.028 120.396-38.739M125.673-37.829Q125.193-37.829 124.785-38.073Q124.376-38.317 124.138-38.731Q123.900-39.145 123.900-39.634Q123.900-40.126 124.158-40.542Q124.415-40.958 124.847-41.196Q125.279-41.434 125.771-41.434Q126.392-41.434 126.841-40.997L126.841-42.626Q126.841-42.841 126.779-42.936Q126.716-43.032 126.599-43.053Q126.482-43.075 126.236-43.075L126.236-43.372L127.458-43.458L127.458-38.649Q127.458-38.438 127.521-38.343Q127.583-38.247 127.701-38.225Q127.818-38.204 128.068-38.204L128.068-37.907L126.818-37.829L126.818-38.313Q126.353-37.829 125.673-37.829M125.740-38.083Q126.080-38.083 126.373-38.274Q126.665-38.466 126.818-38.762L126.818-40.594Q126.669-40.868 126.408-41.024Q126.146-41.180 125.833-41.180Q125.208-41.180 124.925-40.733Q124.642-40.286 124.642-39.626Q124.642-38.981 124.894-38.532Q125.146-38.083 125.740-38.083\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 74.555)\">\u003Cpath d=\"M131.516-38.739Q131.516-39.223 131.918-39.518Q132.321-39.813 132.871-39.932Q133.422-40.052 133.914-40.052L133.914-40.341Q133.914-40.567 133.799-40.774Q133.684-40.981 133.487-41.100Q133.289-41.219 133.059-41.219Q132.633-41.219 132.348-41.114Q132.418-41.087 132.465-41.032Q132.512-40.977 132.537-40.907Q132.563-40.837 132.563-40.762Q132.563-40.657 132.512-40.565Q132.461-40.473 132.369-40.423Q132.278-40.372 132.172-40.372Q132.067-40.372 131.975-40.423Q131.883-40.473 131.832-40.565Q131.782-40.657 131.782-40.762Q131.782-41.180 132.170-41.327Q132.559-41.473 133.059-41.473Q133.391-41.473 133.744-41.343Q134.098-41.212 134.326-40.958Q134.555-40.704 134.555-40.356L134.555-38.555Q134.555-38.423 134.627-38.313Q134.700-38.204 134.828-38.204Q134.953-38.204 135.022-38.309Q135.090-38.415 135.090-38.555L135.090-39.067L135.371-39.067L135.371-38.555Q135.371-38.352 135.254-38.194Q135.137-38.036 134.955-37.952Q134.774-37.868 134.571-37.868Q134.340-37.868 134.188-38.040Q134.035-38.212 134.004-38.442Q133.844-38.161 133.535-37.995Q133.227-37.829 132.875-37.829Q132.364-37.829 131.940-38.052Q131.516-38.274 131.516-38.739M132.203-38.739Q132.203-38.454 132.430-38.268Q132.657-38.083 132.950-38.083Q133.196-38.083 133.420-38.200Q133.645-38.317 133.780-38.520Q133.914-38.723 133.914-38.977L133.914-39.809Q133.649-39.809 133.364-39.755Q133.078-39.700 132.807-39.571Q132.535-39.442 132.369-39.235Q132.203-39.028 132.203-38.739M136.289-38.868L136.289-41.059L135.586-41.059L135.586-41.313Q135.942-41.313 136.184-41.546Q136.426-41.778 136.537-42.126Q136.649-42.473 136.649-42.829L136.930-42.829L136.930-41.356L138.106-41.356L138.106-41.059L136.930-41.059L136.930-38.884Q136.930-38.563 137.049-38.335Q137.168-38.106 137.450-38.106Q137.629-38.106 137.746-38.229Q137.864-38.352 137.916-38.532Q137.969-38.712 137.969-38.884L137.969-39.356L138.250-39.356L138.250-38.868Q138.250-38.614 138.145-38.374Q138.039-38.134 137.842-37.981Q137.645-37.829 137.387-37.829Q137.071-37.829 136.819-37.952Q136.567-38.075 136.428-38.309Q136.289-38.544 136.289-38.868\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 74.555)\">\u003Cpath d=\"M143.608-37.938L142.385-40.794Q142.303-40.969 142.159-41.014Q142.014-41.059 141.745-41.059L141.745-41.356L143.456-41.356L143.456-41.059Q143.034-41.059 143.034-40.876Q143.034-40.841 143.049-40.794L143.995-38.602L144.835-40.579Q144.874-40.657 144.874-40.747Q144.874-40.887 144.768-40.973Q144.663-41.059 144.522-41.059L144.522-41.356L145.874-41.356L145.874-41.059Q145.350-41.059 145.135-40.579L144.010-37.938Q143.948-37.829 143.842-37.829L143.776-37.829Q143.663-37.829 143.608-37.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 74.555)\">\u003Cpath d=\"M145.919-38.739Q145.919-39.223 146.321-39.518Q146.724-39.813 147.274-39.932Q147.825-40.052 148.317-40.052L148.317-40.341Q148.317-40.567 148.202-40.774Q148.087-40.981 147.890-41.100Q147.692-41.219 147.462-41.219Q147.036-41.219 146.751-41.114Q146.821-41.087 146.868-41.032Q146.915-40.977 146.940-40.907Q146.966-40.837 146.966-40.762Q146.966-40.657 146.915-40.565Q146.864-40.473 146.772-40.423Q146.681-40.372 146.575-40.372Q146.470-40.372 146.378-40.423Q146.286-40.473 146.235-40.565Q146.185-40.657 146.185-40.762Q146.185-41.180 146.573-41.327Q146.962-41.473 147.462-41.473Q147.794-41.473 148.147-41.343Q148.501-41.212 148.729-40.958Q148.958-40.704 148.958-40.356L148.958-38.555Q148.958-38.423 149.030-38.313Q149.103-38.204 149.231-38.204Q149.356-38.204 149.425-38.309Q149.493-38.415 149.493-38.555L149.493-39.067L149.774-39.067L149.774-38.555Q149.774-38.352 149.657-38.194Q149.540-38.036 149.358-37.952Q149.177-37.868 148.974-37.868Q148.743-37.868 148.591-38.040Q148.438-38.212 148.407-38.442Q148.247-38.161 147.938-37.995Q147.630-37.829 147.278-37.829Q146.767-37.829 146.343-38.052Q145.919-38.274 145.919-38.739M146.606-38.739Q146.606-38.454 146.833-38.268Q147.060-38.083 147.353-38.083Q147.599-38.083 147.823-38.200Q148.048-38.317 148.183-38.520Q148.317-38.723 148.317-38.977L148.317-39.809Q148.052-39.809 147.767-39.755Q147.481-39.700 147.210-39.571Q146.938-39.442 146.772-39.235Q146.606-39.028 146.606-38.739M151.981-37.907L150.149-37.907L150.149-38.204Q150.423-38.204 150.591-38.251Q150.759-38.298 150.759-38.466L150.759-42.626Q150.759-42.841 150.696-42.936Q150.634-43.032 150.515-43.053Q150.395-43.075 150.149-43.075L150.149-43.372L151.372-43.458L151.372-38.466Q151.372-38.298 151.540-38.251Q151.708-38.204 151.981-38.204L151.981-37.907M154.228-37.907L152.478-37.907L152.478-38.204Q153.177-38.204 153.364-38.684L155.165-43.509Q155.220-43.618 155.333-43.618L155.403-43.618Q155.517-43.618 155.571-43.509L157.462-38.466Q157.540-38.298 157.743-38.251Q157.946-38.204 158.259-38.204L158.259-37.907L156.036-37.907L156.036-38.204Q156.677-38.204 156.677-38.419Q156.677-38.438 156.675-38.448Q156.673-38.458 156.669-38.466L156.204-39.700L154.060-39.700L153.677-38.684Q153.673-38.669 153.667-38.639Q153.661-38.610 153.661-38.587Q153.661-38.446 153.751-38.362Q153.841-38.278 153.974-38.241Q154.106-38.204 154.228-38.204L154.228-37.907M155.134-42.563L154.165-39.997L156.091-39.997L155.134-42.563M159.188-35.907L159.106-35.907Q159.071-35.907 159.046-35.936Q159.020-35.966 159.020-36.005Q159.020-36.055 159.052-36.075Q159.438-36.411 159.722-36.860Q160.005-37.309 160.171-37.809Q160.337-38.309 160.411-38.827Q160.485-39.344 160.485-39.907Q160.485-40.477 160.411-40.993Q160.337-41.509 160.171-42.005Q160.005-42.501 159.726-42.948Q159.446-43.395 159.052-43.739Q159.020-43.759 159.020-43.809Q159.020-43.848 159.046-43.878Q159.071-43.907 159.106-43.907L159.188-43.907Q159.200-43.907 159.210-43.905Q159.220-43.903 159.228-43.899Q159.841-43.442 160.243-42.807Q160.645-42.173 160.841-41.427Q161.036-40.680 161.036-39.907Q161.036-39.134 160.841-38.387Q160.645-37.641 160.243-37.007Q159.841-36.372 159.228-35.915Q159.216-35.915 159.208-35.913Q159.200-35.911 159.188-35.907\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M213.434 46.598H449.59\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(163.208 99.17)\">\u003Cpath d=\"M13.812-37.866L12.260-42.197Q12.198-42.340 12.036-42.374Q11.874-42.408 11.621-42.408L11.621-42.689L13.548-42.689L13.548-42.408Q12.967-42.408 12.967-42.234Q12.967-42.214 12.974-42.197L14.198-38.761L15.305-41.848L15.179-42.197Q15.121-42.340 14.955-42.374Q14.789-42.408 14.540-42.408L14.540-42.689L16.467-42.689L16.467-42.408Q15.886-42.408 15.886-42.234L15.886-42.197L17.117-38.761L18.272-42.009Q18.286-42.050 18.286-42.074Q18.286-42.248 18.093-42.328Q17.899-42.408 17.691-42.408L17.691-42.689L19.267-42.689L19.267-42.408Q19.017-42.408 18.826-42.314Q18.634-42.220 18.559-42.009L17.076-37.866Q17.042-37.767 16.942-37.767L16.864-37.767Q16.765-37.767 16.724-37.866L15.445-41.455L14.164-37.866Q14.147-37.822 14.109-37.794Q14.071-37.767 14.023-37.767L13.945-37.767Q13.853-37.767 13.812-37.866\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(163.208 99.17)\">\u003Cpath d=\"M20.893-37.907L19.157-37.907L19.157-38.187Q19.386-38.187 19.535-38.221Q19.683-38.256 19.683-38.396L19.683-40.245Q19.683-40.515 19.576-40.576Q19.468-40.638 19.157-40.638L19.157-40.918L20.186-40.993L20.186-40.286Q20.316-40.594 20.558-40.793Q20.801-40.993 21.119-40.993Q21.338-40.993 21.509-40.869Q21.680-40.744 21.680-40.532Q21.680-40.395 21.580-40.296Q21.481-40.197 21.348-40.197Q21.211-40.197 21.112-40.296Q21.013-40.395 21.013-40.532Q21.013-40.672 21.112-40.771Q20.822-40.771 20.622-40.575Q20.422-40.378 20.329-40.084Q20.237-39.790 20.237-39.510L20.237-38.396Q20.237-38.187 20.893-38.187L20.893-37.907M23.881-37.907L22.329-37.907L22.329-38.187Q22.555-38.187 22.703-38.221Q22.852-38.256 22.852-38.396L22.852-40.245Q22.852-40.433 22.804-40.517Q22.756-40.600 22.659-40.619Q22.561-40.638 22.350-40.638L22.350-40.918L23.406-40.993L23.406-38.396Q23.406-38.256 23.537-38.221Q23.669-38.187 23.881-38.187L23.881-37.907M22.609-42.214Q22.609-42.385 22.732-42.504Q22.855-42.624 23.026-42.624Q23.194-42.624 23.317-42.504Q23.440-42.385 23.440-42.214Q23.440-42.039 23.317-41.916Q23.194-41.793 23.026-41.793Q22.855-41.793 22.732-41.916Q22.609-42.039 22.609-42.214M25.053-38.748L25.053-40.645L24.414-40.645L24.414-40.867Q24.732-40.867 24.949-41.077Q25.166-41.287 25.267-41.597Q25.368-41.906 25.368-42.214L25.634-42.214L25.634-40.925L26.711-40.925L26.711-40.645L25.634-40.645L25.634-38.761Q25.634-38.485 25.738-38.286Q25.843-38.088 26.102-38.088Q26.260-38.088 26.366-38.192Q26.472-38.297 26.521-38.450Q26.571-38.604 26.571-38.761L26.571-39.175L26.837-39.175L26.837-38.748Q26.837-38.522 26.738-38.312Q26.639-38.102 26.454-37.970Q26.270-37.839 26.041-37.839Q25.603-37.839 25.328-38.076Q25.053-38.314 25.053-38.748M27.606-39.442Q27.606-39.763 27.731-40.052Q27.856-40.341 28.081-40.564Q28.307-40.788 28.603-40.908Q28.898-41.028 29.216-41.028Q29.544-41.028 29.806-40.928Q30.067-40.829 30.243-40.647Q30.419-40.464 30.513-40.206Q30.607-39.948 30.607-39.616Q30.607-39.524 30.525-39.503L28.269-39.503L28.269-39.442Q28.269-38.854 28.553-38.471Q28.837-38.088 29.404-38.088Q29.725-38.088 29.994-38.281Q30.262-38.474 30.351-38.789Q30.358-38.830 30.433-38.844L30.525-38.844Q30.607-38.820 30.607-38.748Q30.607-38.741 30.600-38.714Q30.488-38.317 30.117-38.078Q29.746-37.839 29.322-37.839Q28.885-37.839 28.485-38.047Q28.085-38.256 27.846-38.623Q27.606-38.990 27.606-39.442M28.276-39.712L30.091-39.712Q30.091-39.989 29.994-40.241Q29.896-40.494 29.698-40.650Q29.500-40.805 29.216-40.805Q28.939-40.805 28.726-40.647Q28.512-40.488 28.394-40.233Q28.276-39.978 28.276-39.712M33.079-39.161L31.021-39.161L31.021-39.664L33.079-39.664L33.079-39.161M34.688-37.907L34.422-37.907L34.422-42.015Q34.422-42.285 34.314-42.347Q34.206-42.408 33.895-42.408L33.895-42.689L34.975-42.764L34.975-40.594Q35.184-40.785 35.469-40.889Q35.755-40.993 36.052-40.993Q36.370-40.993 36.667-40.872Q36.965-40.751 37.187-40.535Q37.409-40.320 37.536-40.035Q37.662-39.749 37.662-39.418Q37.662-38.973 37.423-38.609Q37.183-38.245 36.790-38.042Q36.397-37.839 35.953-37.839Q35.758-37.839 35.569-37.895Q35.379-37.951 35.218-38.056Q35.058-38.160 34.917-38.321L34.688-37.907M35.003-40.252L35.003-38.635Q35.140-38.375 35.381-38.218Q35.621-38.061 35.898-38.061Q36.192-38.061 36.404-38.168Q36.616-38.276 36.749-38.468Q36.883-38.659 36.941-38.898Q36.999-39.137 36.999-39.418Q36.999-39.777 36.905-40.081Q36.811-40.385 36.584-40.578Q36.356-40.771 35.991-40.771Q35.690-40.771 35.423-40.635Q35.157-40.498 35.003-40.252M38.356-38.635Q38.356-38.967 38.580-39.194Q38.804-39.421 39.147-39.549Q39.491-39.678 39.863-39.730Q40.236-39.783 40.540-39.783L40.540-40.036Q40.540-40.241 40.432-40.421Q40.325-40.600 40.143-40.703Q39.962-40.805 39.754-40.805Q39.347-40.805 39.111-40.713Q39.200-40.676 39.246-40.592Q39.292-40.508 39.292-40.406Q39.292-40.310 39.246-40.231Q39.200-40.153 39.120-40.108Q39.039-40.064 38.951-40.064Q38.800-40.064 38.699-40.161Q38.599-40.259 38.599-40.406Q38.599-41.028 39.754-41.028Q39.966-41.028 40.215-40.964Q40.465-40.901 40.666-40.782Q40.868-40.662 40.995-40.477Q41.121-40.293 41.121-40.050L41.121-38.474Q41.121-38.358 41.183-38.262Q41.244-38.167 41.357-38.167Q41.466-38.167 41.531-38.261Q41.596-38.355 41.596-38.474L41.596-38.922L41.863-38.922L41.863-38.474Q41.863-38.204 41.635-38.039Q41.408-37.873 41.128-37.873Q40.919-37.873 40.783-38.027Q40.646-38.180 40.622-38.396Q40.475-38.129 40.193-37.984Q39.911-37.839 39.586-37.839Q39.309-37.839 39.026-37.914Q38.742-37.989 38.549-38.168Q38.356-38.348 38.356-38.635M38.971-38.635Q38.971-38.461 39.072-38.331Q39.173-38.201 39.328-38.131Q39.484-38.061 39.648-38.061Q39.867-38.061 40.075-38.158Q40.284-38.256 40.412-38.437Q40.540-38.618 40.540-38.844L40.540-39.572Q40.215-39.572 39.850-39.481Q39.484-39.390 39.227-39.178Q38.971-38.967 38.971-38.635M42.280-39.418Q42.280-39.746 42.415-40.047Q42.550-40.347 42.786-40.568Q43.021-40.788 43.326-40.908Q43.630-41.028 43.954-41.028Q44.460-41.028 44.809-40.925Q45.158-40.823 45.158-40.447Q45.158-40.300 45.060-40.199Q44.963-40.098 44.816-40.098Q44.662-40.098 44.563-40.197Q44.464-40.296 44.464-40.447Q44.464-40.635 44.604-40.727Q44.402-40.778 43.961-40.778Q43.606-40.778 43.377-40.582Q43.148-40.385 43.047-40.076Q42.946-39.766 42.946-39.418Q42.946-39.069 43.073-38.763Q43.199-38.457 43.454-38.273Q43.708-38.088 44.064-38.088Q44.286-38.088 44.471-38.172Q44.655-38.256 44.790-38.411Q44.925-38.567 44.983-38.775Q44.997-38.830 45.052-38.830L45.164-38.830Q45.195-38.830 45.217-38.806Q45.240-38.782 45.240-38.748L45.240-38.727Q45.154-38.440 44.966-38.242Q44.778-38.044 44.513-37.941Q44.248-37.839 43.954-37.839Q43.524-37.839 43.136-38.045Q42.748-38.252 42.514-38.615Q42.280-38.977 42.280-39.418\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(163.208 99.17)\">\u003Cpath d=\"M47.247-37.907L45.664-37.907L45.664-38.187Q45.893-38.187 46.042-38.221Q46.190-38.256 46.190-38.396L46.190-42.015Q46.190-42.285 46.083-42.347Q45.975-42.408 45.664-42.408L45.664-42.689L46.744-42.764L46.744-39.476L47.729-40.245Q47.934-40.382 47.934-40.532Q47.934-40.576 47.893-40.611Q47.852-40.645 47.807-40.645L47.807-40.925L49.171-40.925L49.171-40.645Q48.682-40.645 48.163-40.245L47.606-39.811L48.583-38.587Q48.785-38.341 48.918-38.264Q49.051-38.187 49.338-38.187L49.338-37.907L47.906-37.907L47.906-38.187Q48.094-38.187 48.094-38.300Q48.094-38.396 47.940-38.587L47.206-39.496L46.724-39.117L46.724-38.396Q46.724-38.259 46.872-38.223Q47.021-38.187 47.247-38.187\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(216.929 98.74)\">\u003Cpath d=\"M14.044-37.907L11.907-37.907Q11.872-37.907 11.841-37.948Q11.810-37.989 11.810-38.036L11.833-38.137Q11.845-38.188 11.931-38.204Q12.372-38.204 12.530-38.243Q12.689-38.282 12.732-38.509L13.810-42.829Q13.833-42.899 13.833-42.962Q13.833-43.024 13.771-43.044Q13.626-43.075 13.204-43.075Q13.099-43.102 13.099-43.204L13.130-43.305Q13.138-43.352 13.220-43.372L15.732-43.372Q16.138-43.372 16.581-43.249Q17.024-43.126 17.329-42.850Q17.634-42.575 17.634-42.153Q17.634-41.766 17.364-41.450Q17.095-41.134 16.696-40.925Q16.298-40.716 15.923-40.626Q16.232-40.501 16.429-40.262Q16.626-40.024 16.626-39.708Q16.626-39.665 16.624-39.637Q16.622-39.610 16.618-39.579L16.540-38.884Q16.509-38.594 16.509-38.473Q16.509-38.259 16.577-38.128Q16.646-37.997 16.853-37.997Q17.107-37.997 17.302-38.221Q17.497-38.446 17.564-38.723Q17.571-38.770 17.657-38.786L17.739-38.786Q17.833-38.759 17.833-38.677Q17.833-38.669 17.825-38.634Q17.774-38.419 17.630-38.208Q17.485-37.997 17.278-37.868Q17.071-37.739 16.845-37.739Q16.540-37.739 16.271-37.825Q16.001-37.911 15.829-38.110Q15.657-38.309 15.657-38.618Q15.657-38.727 15.700-38.907L15.876-39.602Q15.899-39.723 15.899-39.817Q15.899-40.153 15.638-40.335Q15.376-40.516 15.013-40.516L13.962-40.516L13.442-38.450Q13.427-38.356 13.427-38.313Q13.427-38.274 13.440-38.261Q13.454-38.247 13.489-38.235Q13.634-38.204 14.060-38.204Q14.153-38.177 14.153-38.083L14.130-37.977Q14.122-37.927 14.044-37.907M14.524-42.770L14.028-40.770L14.970-40.770Q15.314-40.770 15.630-40.839Q15.946-40.907 16.220-41.075Q16.407-41.200 16.544-41.401Q16.681-41.602 16.749-41.835Q16.817-42.067 16.817-42.290Q16.817-42.747 16.450-42.911Q16.083-43.075 15.548-43.075L14.931-43.075Q14.759-43.075 14.696-43.061Q14.634-43.048 14.601-42.989Q14.567-42.930 14.524-42.770\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 98.74)\">\u003Cpath d=\"M20.038-35.907L18.862-35.907L18.862-43.907L20.038-43.907L20.038-43.540L19.229-43.540L19.229-36.274L20.038-36.274\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 98.74)\">\u003Cpath d=\"M21.416-37.641Q21.416-37.704 21.447-37.747L25.193-43.005Q24.736-42.770 24.169-42.770Q23.517-42.770 22.912-43.091Q23.056-42.743 23.056-42.298Q23.056-41.938 22.935-41.567Q22.814-41.196 22.564-40.940Q22.314-40.684 21.951-40.684Q21.564-40.684 21.281-40.928Q20.998-41.173 20.851-41.546Q20.705-41.919 20.705-42.298Q20.705-42.677 20.851-43.048Q20.998-43.419 21.281-43.663Q21.564-43.907 21.951-43.907Q22.267-43.907 22.537-43.669Q22.873-43.364 23.302-43.192Q23.732-43.020 24.169-43.020Q24.662-43.020 25.080-43.233Q25.498-43.446 25.798-43.844Q25.841-43.907 25.935-43.907Q26.009-43.907 26.064-43.852Q26.119-43.798 26.119-43.723Q26.119-43.661 26.087-43.618L21.744-37.524Q21.697-37.458 21.599-37.458Q21.517-37.458 21.466-37.509Q21.416-37.559 21.416-37.641M21.951-40.938Q22.224-40.938 22.412-41.163Q22.599-41.387 22.687-41.710Q22.775-42.032 22.775-42.298Q22.775-42.555 22.687-42.878Q22.599-43.200 22.412-43.425Q22.224-43.649 21.951-43.649Q21.564-43.649 21.421-43.221Q21.279-42.794 21.279-42.298Q21.279-41.790 21.419-41.364Q21.560-40.938 21.951-40.938M25.728-37.458Q25.341-37.458 25.058-37.704Q24.775-37.950 24.627-38.323Q24.478-38.696 24.478-39.075Q24.478-39.348 24.564-39.636Q24.650-39.923 24.804-40.157Q24.959-40.391 25.195-40.538Q25.431-40.684 25.728-40.684Q26.009-40.684 26.216-40.532Q26.423-40.380 26.562-40.137Q26.701-39.895 26.767-39.614Q26.834-39.333 26.834-39.075Q26.834-38.716 26.712-38.343Q26.591-37.969 26.341-37.714Q26.091-37.458 25.728-37.458M25.728-37.716Q26.002-37.716 26.189-37.940Q26.377-38.165 26.464-38.487Q26.552-38.809 26.552-39.075Q26.552-39.333 26.464-39.655Q26.377-39.977 26.189-40.202Q26.002-40.427 25.728-40.427Q25.337-40.427 25.197-39.997Q25.056-39.567 25.056-39.075Q25.056-38.567 25.193-38.141Q25.330-37.716 25.728-37.716\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 98.74)\">\u003Cpath d=\"M27.538-38.145L27.538-38.235Q27.596-38.442 27.788-38.466L28.499-38.466L28.499-40.794L27.788-40.794Q27.592-40.817 27.538-41.036L27.538-41.122Q27.596-41.333 27.788-41.356L28.889-41.356Q29.088-41.337 29.139-41.122L29.139-40.794Q29.401-41.079 29.756-41.237Q30.112-41.395 30.499-41.395Q30.792-41.395 31.026-41.261Q31.260-41.126 31.260-40.860Q31.260-40.692 31.151-40.575Q31.042-40.458 30.874-40.458Q30.721-40.458 30.606-40.569Q30.491-40.680 30.491-40.837Q30.116-40.837 29.801-40.636Q29.487-40.434 29.313-40.100Q29.139-39.766 29.139-39.387L29.139-38.466L30.085-38.466Q30.292-38.442 30.331-38.235L30.331-38.145Q30.292-37.930 30.085-37.907L27.788-37.907Q27.596-37.930 27.538-38.145M32.147-38.106L32.147-39.020Q32.174-39.227 32.385-39.251L32.553-39.251Q32.717-39.227 32.776-39.067Q32.979-38.427 33.706-38.427Q33.913-38.427 34.141-38.462Q34.370-38.497 34.538-38.612Q34.706-38.727 34.706-38.930Q34.706-39.141 34.483-39.255Q34.260-39.368 33.987-39.411L33.288-39.524Q32.147-39.735 32.147-40.458Q32.147-40.747 32.292-40.936Q32.436-41.126 32.676-41.233Q32.917-41.341 33.172-41.380Q33.428-41.419 33.706-41.419Q33.956-41.419 34.149-41.389Q34.342-41.360 34.506-41.282Q34.585-41.399 34.713-41.419L34.792-41.419Q34.889-41.407 34.952-41.344Q35.014-41.282 35.026-41.188L35.026-40.481Q35.014-40.387 34.952-40.321Q34.889-40.255 34.792-40.243L34.624-40.243Q34.530-40.255 34.463-40.321Q34.397-40.387 34.385-40.481Q34.385-40.860 33.690-40.860Q33.342-40.860 33.024-40.778Q32.706-40.696 32.706-40.450Q32.706-40.184 33.377-40.075L34.081-39.954Q34.565-39.872 34.915-39.624Q35.264-39.376 35.264-38.930Q35.264-38.540 35.028-38.298Q34.792-38.055 34.442-37.962Q34.092-37.868 33.706-37.868Q33.127-37.868 32.729-38.122Q32.659-37.997 32.610-37.940Q32.561-37.884 32.456-37.868L32.385-37.868Q32.170-37.891 32.147-38.106M35.877-36.364L35.877-36.450Q35.920-36.669 36.127-36.692L36.549-36.692L36.549-40.794L36.127-40.794Q35.920-40.817 35.877-41.036L35.877-41.122Q35.924-41.333 36.127-41.356L36.944-41.356Q37.139-41.337 37.190-41.122L37.190-41.052Q37.401-41.219 37.665-41.307Q37.928-41.395 38.198-41.395Q38.538-41.395 38.835-41.251Q39.131-41.106 39.346-40.854Q39.561-40.602 39.676-40.290Q39.792-39.977 39.792-39.634Q39.792-39.169 39.565-38.759Q39.338-38.348 38.952-38.108Q38.565-37.868 38.096-37.868Q37.577-37.868 37.190-38.235L37.190-36.692L37.616-36.692Q37.823-36.669 37.862-36.450L37.862-36.364Q37.823-36.153 37.616-36.130L36.127-36.130Q35.924-36.153 35.877-36.364M38.053-38.427Q38.362-38.427 38.612-38.596Q38.862-38.766 39.006-39.048Q39.151-39.329 39.151-39.634Q39.151-39.923 39.026-40.202Q38.901-40.481 38.669-40.659Q38.436-40.837 38.135-40.837Q37.815-40.837 37.553-40.651Q37.292-40.466 37.190-40.165L37.190-39.313Q37.280-38.946 37.501-38.686Q37.721-38.427 38.053-38.427\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 98.74)\">\u003Cpath d=\"M41.424-35.907L40.249-35.907L40.249-36.274L41.057-36.274L41.057-43.540L40.249-43.540L40.249-43.907L41.424-43.907\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 98.74)\">\u003Cpath d=\"M50.748-38.884L45.435-38.884Q45.357-38.891 45.308-38.940Q45.260-38.989 45.260-39.067Q45.260-39.137 45.307-39.188Q45.353-39.239 45.435-39.251L50.748-39.251Q50.822-39.239 50.869-39.188Q50.916-39.137 50.916-39.067Q50.916-38.989 50.867-38.940Q50.818-38.891 50.748-38.884M50.748-40.571L45.435-40.571Q45.357-40.579 45.308-40.628Q45.260-40.677 45.260-40.755Q45.260-40.825 45.307-40.876Q45.353-40.927 45.435-40.938L50.748-40.938Q50.822-40.927 50.869-40.876Q50.916-40.825 50.916-40.755Q50.916-40.677 50.867-40.628Q50.818-40.579 50.748-40.571\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 98.74)\">\u003Cpath d=\"M55.881-37.829Q55.447-37.829 55.115-38.067Q54.783-38.305 54.563-38.694Q54.342-39.083 54.235-39.520Q54.127-39.958 54.127-40.356Q54.127-40.747 54.237-41.190Q54.346-41.634 54.563-42.014Q54.780-42.395 55.114-42.636Q55.447-42.876 55.881-42.876Q56.436-42.876 56.836-42.477Q57.237-42.079 57.434-41.493Q57.631-40.907 57.631-40.356Q57.631-39.802 57.434-39.214Q57.237-38.626 56.836-38.227Q56.436-37.829 55.881-37.829M55.881-38.387Q56.182-38.387 56.399-38.604Q56.615-38.821 56.742-39.149Q56.869-39.477 56.930-39.823Q56.990-40.169 56.990-40.450Q56.990-40.700 56.928-41.026Q56.865-41.352 56.735-41.643Q56.604-41.934 56.391-42.124Q56.178-42.313 55.881-42.313Q55.506-42.313 55.254-42.001Q55.002-41.688 54.885-41.255Q54.768-40.821 54.768-40.450Q54.768-40.052 54.881-39.571Q54.994-39.091 55.242-38.739Q55.490-38.387 55.881-38.387M58.264-38.145L58.264-38.235Q58.303-38.442 58.510-38.466L58.916-38.466L59.846-39.684L58.975-40.794L58.557-40.794Q58.362-40.813 58.311-41.036L58.311-41.122Q58.362-41.333 58.557-41.356L59.717-41.356Q59.916-41.333 59.967-41.122L59.967-41.036Q59.916-40.817 59.717-40.794L59.608-40.794L60.104-40.137L60.580-40.794L60.463-40.794Q60.264-40.817 60.213-41.036L60.213-41.122Q60.264-41.333 60.463-41.356L61.623-41.356Q61.819-41.337 61.869-41.122L61.869-41.036Q61.819-40.817 61.623-40.794L61.213-40.794L60.365-39.684L61.326-38.466L61.733-38.466Q61.932-38.442 61.983-38.235L61.983-38.145Q61.944-37.930 61.733-37.907L60.580-37.907Q60.373-37.930 60.334-38.145L60.334-38.235Q60.373-38.442 60.580-38.466L60.709-38.466L60.104-39.321L59.518-38.466L59.662-38.466Q59.869-38.442 59.908-38.235L59.908-38.145Q59.869-37.930 59.662-37.907L58.510-37.907Q58.315-37.927 58.264-38.145M63.108-38.145L63.108-38.235Q63.158-38.442 63.358-38.466L64.174-38.466L64.174-41.649Q63.795-41.341 63.342-41.341Q63.112-41.341 63.061-41.571L63.061-41.661Q63.112-41.876 63.307-41.899Q63.635-41.899 63.889-42.137Q64.143-42.376 64.283-42.723Q64.354-42.852 64.510-42.876L64.565-42.876Q64.760-42.856 64.811-42.641L64.811-38.466L65.627-38.466Q65.826-38.442 65.877-38.235L65.877-38.145Q65.826-37.930 65.627-37.907L63.358-37.907Q63.158-37.930 63.108-38.145M68.619-37.829Q68.186-37.829 67.854-38.067Q67.522-38.305 67.301-38.694Q67.080-39.083 66.973-39.520Q66.865-39.958 66.865-40.356Q66.865-40.747 66.975-41.190Q67.084-41.634 67.301-42.014Q67.518-42.395 67.852-42.636Q68.186-42.876 68.619-42.876Q69.174-42.876 69.574-42.477Q69.975-42.079 70.172-41.493Q70.369-40.907 70.369-40.356Q70.369-39.802 70.172-39.214Q69.975-38.626 69.574-38.227Q69.174-37.829 68.619-37.829M68.619-38.387Q68.920-38.387 69.137-38.604Q69.354-38.821 69.481-39.149Q69.608-39.477 69.668-39.823Q69.729-40.169 69.729-40.450Q69.729-40.700 69.666-41.026Q69.604-41.352 69.473-41.643Q69.342-41.934 69.129-42.124Q68.916-42.313 68.619-42.313Q68.244-42.313 67.992-42.001Q67.740-41.688 67.623-41.255Q67.506-40.821 67.506-40.450Q67.506-40.052 67.619-39.571Q67.733-39.091 67.981-38.739Q68.229-38.387 68.619-38.387M72.865-37.829Q72.432-37.829 72.100-38.067Q71.768-38.305 71.547-38.694Q71.326-39.083 71.219-39.520Q71.112-39.958 71.112-40.356Q71.112-40.747 71.221-41.190Q71.330-41.634 71.547-42.014Q71.764-42.395 72.098-42.636Q72.432-42.876 72.865-42.876Q73.420-42.876 73.821-42.477Q74.221-42.079 74.418-41.493Q74.615-40.907 74.615-40.356Q74.615-39.802 74.418-39.214Q74.221-38.626 73.821-38.227Q73.420-37.829 72.865-37.829M72.865-38.387Q73.166-38.387 73.383-38.604Q73.600-38.821 73.727-39.149Q73.854-39.477 73.914-39.823Q73.975-40.169 73.975-40.450Q73.975-40.700 73.912-41.026Q73.850-41.352 73.719-41.643Q73.588-41.934 73.375-42.124Q73.162-42.313 72.865-42.313Q72.490-42.313 72.239-42.001Q71.987-41.688 71.869-41.255Q71.752-40.821 71.752-40.450Q71.752-40.052 71.865-39.571Q71.979-39.091 72.227-38.739Q72.475-38.387 72.865-38.387\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M213.434 70.782H449.59\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(163.417 122.674)\">\u003Cpath d=\"M13.945-37.907L11.812-37.907L11.812-38.187Q12.533-38.187 12.533-38.396L12.533-42.197Q12.533-42.408 11.812-42.408L11.812-42.689L14.478-42.689Q14.888-42.689 15.309-42.535Q15.729-42.381 16.013-42.077Q16.296-41.773 16.296-41.359Q16.296-41.041 16.129-40.795Q15.961-40.549 15.685-40.383Q15.408-40.218 15.086-40.134Q14.765-40.050 14.478-40.050L13.224-40.050L13.224-38.396Q13.224-38.187 13.945-38.187L13.945-37.907M13.196-42.197L13.196-40.300L14.283-40.300Q14.892-40.300 15.206-40.537Q15.521-40.775 15.521-41.359Q15.521-41.752 15.375-41.986Q15.230-42.220 14.958-42.314Q14.687-42.408 14.283-42.408L13.562-42.408Q13.374-42.408 13.285-42.374Q13.196-42.340 13.196-42.197M17.277-40.300Q17.277-40.826 17.494-41.294Q17.711-41.762 18.094-42.108Q18.477-42.453 18.961-42.641Q19.444-42.829 19.974-42.829Q20.377-42.829 20.742-42.672Q21.106-42.514 21.389-42.220L21.813-42.802Q21.847-42.829 21.871-42.829L21.919-42.829Q21.950-42.829 21.974-42.805Q21.998-42.781 21.998-42.750L21.998-40.887Q21.998-40.864 21.972-40.838Q21.946-40.812 21.919-40.812L21.793-40.812Q21.731-40.812 21.717-40.887Q21.687-41.202 21.552-41.506Q21.417-41.810 21.201-42.044Q20.986-42.279 20.697-42.414Q20.408-42.549 20.080-42.549Q19.438-42.549 18.980-42.255Q18.522-41.961 18.289-41.448Q18.057-40.935 18.057-40.300Q18.057-39.828 18.187-39.419Q18.316-39.011 18.576-38.698Q18.836-38.386 19.215-38.216Q19.595-38.047 20.087-38.047Q20.415-38.047 20.709-38.163Q21.003-38.280 21.237-38.495Q21.471-38.710 21.601-38.999Q21.731-39.288 21.731-39.616Q21.731-39.643 21.758-39.667Q21.786-39.691 21.806-39.691L21.919-39.691Q21.957-39.691 21.977-39.666Q21.998-39.640 21.998-39.602Q21.998-39.206 21.832-38.869Q21.666-38.532 21.379-38.285Q21.092-38.037 20.723-37.902Q20.354-37.767 19.974-37.767Q19.455-37.767 18.962-37.957Q18.470-38.146 18.091-38.490Q17.711-38.833 17.494-39.302Q17.277-39.770 17.277-40.300\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(163.417 122.674)\">\u003Cpath d=\"M26.086-38.741L26.086-40.245Q26.086-40.515 25.978-40.576Q25.870-40.638 25.559-40.638L25.559-40.918L26.667-40.993L26.667-38.761L26.667-38.741Q26.667-38.461 26.718-38.317Q26.769-38.174 26.911-38.117Q27.053-38.061 27.340-38.061Q27.593-38.061 27.798-38.201Q28.003-38.341 28.119-38.567Q28.236-38.792 28.236-39.042L28.236-40.245Q28.236-40.515 28.128-40.576Q28.020-40.638 27.709-40.638L27.709-40.918L28.817-40.993L28.817-38.580Q28.817-38.389 28.870-38.307Q28.923-38.225 29.023-38.206Q29.124-38.187 29.340-38.187L29.340-37.907L28.263-37.839L28.263-38.403Q28.154-38.221 28.008-38.098Q27.863-37.975 27.677-37.907Q27.490-37.839 27.289-37.839Q26.086-37.839 26.086-38.741M31.572-36.550L29.941-36.550L29.941-36.830Q30.170-36.830 30.319-36.865Q30.468-36.899 30.468-37.039L30.468-40.385Q30.468-40.556 30.331-40.597Q30.194-40.638 29.941-40.638L29.941-40.918L31.021-40.993L31.021-40.587Q31.243-40.788 31.530-40.891Q31.818-40.993 32.125-40.993Q32.552-40.993 32.916-40.780Q33.280-40.566 33.494-40.202Q33.708-39.838 33.708-39.418Q33.708-38.973 33.468-38.609Q33.229-38.245 32.836-38.042Q32.443-37.839 31.999-37.839Q31.732-37.839 31.484-37.939Q31.237-38.040 31.049-38.221L31.049-37.039Q31.049-36.902 31.197-36.866Q31.346-36.830 31.572-36.830L31.572-36.550M31.049-40.238L31.049-38.628Q31.182-38.375 31.425-38.218Q31.667-38.061 31.944-38.061Q32.272-38.061 32.525-38.262Q32.778-38.464 32.911-38.782Q33.045-39.100 33.045-39.418Q33.045-39.647 32.980-39.876Q32.915-40.105 32.787-40.303Q32.658-40.501 32.464-40.621Q32.269-40.740 32.036-40.740Q31.742-40.740 31.474-40.611Q31.206-40.481 31.049-40.238\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(163.417 122.674)\">\u003Cpath d=\"M34.559-39.418Q34.559-39.756 34.700-40.047Q34.840-40.337 35.084-40.551Q35.328-40.764 35.633-40.879Q35.937-40.993 36.262-40.993Q36.532-40.993 36.795-40.894Q37.058-40.795 37.249-40.617L37.249-42.015Q37.249-42.285 37.142-42.347Q37.034-42.408 36.723-42.408L36.723-42.689L37.800-42.764L37.800-38.580Q37.800-38.392 37.854-38.309Q37.909-38.225 38.010-38.206Q38.111-38.187 38.326-38.187L38.326-37.907L37.219-37.839L37.219-38.256Q36.802-37.839 36.176-37.839Q35.745-37.839 35.373-38.051Q35-38.262 34.780-38.623Q34.559-38.984 34.559-39.418M36.234-38.061Q36.443-38.061 36.629-38.133Q36.815-38.204 36.969-38.341Q37.123-38.478 37.219-38.656L37.219-40.265Q37.133-40.412 36.988-40.532Q36.843-40.652 36.673-40.711Q36.504-40.771 36.323-40.771Q35.763-40.771 35.494-40.382Q35.226-39.992 35.226-39.411Q35.226-38.840 35.460-38.450Q35.694-38.061 36.234-38.061M39.034-38.635Q39.034-38.967 39.257-39.194Q39.481-39.421 39.825-39.549Q40.168-39.678 40.541-39.730Q40.913-39.783 41.218-39.783L41.218-40.036Q41.218-40.241 41.110-40.421Q41.002-40.600 40.821-40.703Q40.640-40.805 40.432-40.805Q40.025-40.805 39.789-40.713Q39.878-40.676 39.924-40.592Q39.970-40.508 39.970-40.406Q39.970-40.310 39.924-40.231Q39.878-40.153 39.797-40.108Q39.717-40.064 39.628-40.064Q39.478-40.064 39.377-40.161Q39.276-40.259 39.276-40.406Q39.276-41.028 40.432-41.028Q40.643-41.028 40.893-40.964Q41.142-40.901 41.344-40.782Q41.546-40.662 41.672-40.477Q41.799-40.293 41.799-40.050L41.799-38.474Q41.799-38.358 41.860-38.262Q41.922-38.167 42.035-38.167Q42.144-38.167 42.209-38.261Q42.274-38.355 42.274-38.474L42.274-38.922L42.540-38.922L42.540-38.474Q42.540-38.204 42.313-38.039Q42.086-37.873 41.806-37.873Q41.597-37.873 41.460-38.027Q41.324-38.180 41.300-38.396Q41.153-38.129 40.871-37.984Q40.589-37.839 40.264-37.839Q39.987-37.839 39.703-37.914Q39.420-37.989 39.227-38.168Q39.034-38.348 39.034-38.635M39.649-38.635Q39.649-38.461 39.750-38.331Q39.850-38.201 40.006-38.131Q40.162-38.061 40.326-38.061Q40.544-38.061 40.753-38.158Q40.961-38.256 41.089-38.437Q41.218-38.618 41.218-38.844L41.218-39.572Q40.893-39.572 40.527-39.481Q40.162-39.390 39.905-39.178Q39.649-38.967 39.649-38.635M43.484-38.748L43.484-40.645L42.845-40.645L42.845-40.867Q43.162-40.867 43.380-41.077Q43.597-41.287 43.697-41.597Q43.798-41.906 43.798-42.214L44.065-42.214L44.065-40.925L45.141-40.925L45.141-40.645L44.065-40.645L44.065-38.761Q44.065-38.485 44.169-38.286Q44.273-38.088 44.533-38.088Q44.690-38.088 44.796-38.192Q44.902-38.297 44.952-38.450Q45.001-38.604 45.001-38.761L45.001-39.175L45.268-39.175L45.268-38.748Q45.268-38.522 45.169-38.312Q45.070-38.102 44.885-37.970Q44.701-37.839 44.472-37.839Q44.034-37.839 43.759-38.076Q43.484-38.314 43.484-38.748M46.037-39.442Q46.037-39.763 46.162-40.052Q46.287-40.341 46.512-40.564Q46.738-40.788 47.033-40.908Q47.329-41.028 47.647-41.028Q47.975-41.028 48.236-40.928Q48.498-40.829 48.674-40.647Q48.850-40.464 48.944-40.206Q49.038-39.948 49.038-39.616Q49.038-39.524 48.956-39.503L46.700-39.503L46.700-39.442Q46.700-38.854 46.984-38.471Q47.267-38.088 47.835-38.088Q48.156-38.088 48.424-38.281Q48.693-38.474 48.782-38.789Q48.788-38.830 48.864-38.844L48.956-38.844Q49.038-38.820 49.038-38.748Q49.038-38.741 49.031-38.714Q48.918-38.317 48.547-38.078Q48.177-37.839 47.753-37.839Q47.315-37.839 46.915-38.047Q46.516-38.256 46.276-38.623Q46.037-38.990 46.037-39.442M46.707-39.712L48.522-39.712Q48.522-39.989 48.424-40.241Q48.327-40.494 48.129-40.650Q47.931-40.805 47.647-40.805Q47.370-40.805 47.156-40.647Q46.943-40.488 46.825-40.233Q46.707-39.978 46.707-39.712\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(216.929 123.702)\">\u003Cpath d=\"M13.587-37.907L11.732-37.907L11.732-38.204Q12.005-38.204 12.173-38.251Q12.341-38.298 12.341-38.466L12.341-40.602Q12.341-40.817 12.278-40.913Q12.216-41.009 12.097-41.030Q11.978-41.052 11.732-41.052L11.732-41.348L12.923-41.434L12.923-40.700Q13.036-40.915 13.230-41.083Q13.423-41.251 13.661-41.343Q13.899-41.434 14.153-41.434Q15.321-41.434 15.321-40.356L15.321-38.466Q15.321-38.298 15.491-38.251Q15.661-38.204 15.931-38.204L15.931-37.907L14.075-37.907L14.075-38.204Q14.349-38.204 14.517-38.251Q14.685-38.298 14.685-38.466L14.685-40.341Q14.685-40.723 14.564-40.952Q14.442-41.180 14.091-41.180Q13.778-41.180 13.524-41.018Q13.271-40.856 13.124-40.587Q12.978-40.317 12.978-40.020L12.978-38.466Q12.978-38.298 13.148-38.251Q13.317-38.204 13.587-38.204L13.587-37.907M16.376-39.661Q16.376-40.141 16.608-40.557Q16.841-40.973 17.251-41.223Q17.661-41.473 18.138-41.473Q18.868-41.473 19.267-41.032Q19.665-40.591 19.665-39.860Q19.665-39.755 19.571-39.731L17.122-39.731L17.122-39.661Q17.122-39.251 17.243-38.895Q17.364-38.540 17.636-38.323Q17.907-38.106 18.337-38.106Q18.700-38.106 18.997-38.335Q19.294-38.563 19.396-38.915Q19.403-38.962 19.489-38.977L19.571-38.977Q19.665-38.950 19.665-38.868Q19.665-38.860 19.657-38.829Q19.595-38.602 19.456-38.419Q19.317-38.235 19.126-38.102Q18.935-37.969 18.716-37.899Q18.497-37.829 18.259-37.829Q17.888-37.829 17.550-37.966Q17.212-38.102 16.944-38.354Q16.677-38.606 16.526-38.946Q16.376-39.286 16.376-39.661M17.130-39.969L19.091-39.969Q19.091-40.274 18.989-40.565Q18.888-40.856 18.671-41.038Q18.454-41.219 18.138-41.219Q17.837-41.219 17.607-41.032Q17.376-40.844 17.253-40.553Q17.130-40.262 17.130-39.969M21.739-37.938L20.669-40.794Q20.603-40.973 20.472-41.016Q20.341-41.059 20.083-41.059L20.083-41.356L21.763-41.356L21.763-41.059Q21.314-41.059 21.314-40.860Q21.317-40.844 21.319-40.827Q21.321-40.809 21.321-40.794L22.114-38.700L22.825-40.610Q22.790-40.704 22.790-40.749Q22.790-40.794 22.755-40.794Q22.689-40.973 22.558-41.016Q22.427-41.059 22.173-41.059L22.173-41.356L23.763-41.356L23.763-41.059Q23.314-41.059 23.314-40.860Q23.317-40.841 23.319-40.823Q23.321-40.805 23.321-40.794L24.153-38.579L24.907-40.579Q24.931-40.637 24.931-40.708Q24.931-40.868 24.794-40.964Q24.657-41.059 24.489-41.059L24.489-41.356L25.876-41.356L25.876-41.059Q25.642-41.059 25.464-40.932Q25.286-40.805 25.204-40.579L24.220-37.938Q24.165-37.829 24.052-37.829L23.993-37.829Q23.880-37.829 23.837-37.938L22.978-40.212L22.122-37.938Q22.083-37.829 21.962-37.829L21.907-37.829Q21.794-37.829 21.739-37.938M28.786-37.907L26.403-37.907L26.403-38.204Q26.728-38.204 26.970-38.251Q27.212-38.298 27.212-38.466L27.212-42.809Q27.212-42.981 26.970-43.028Q26.728-43.075 26.403-43.075L26.403-43.372L29.349-43.372Q29.692-43.372 30.048-43.272Q30.403-43.173 30.698-42.981Q30.993-42.790 31.175-42.505Q31.357-42.219 31.357-41.860Q31.357-41.387 31.046-41.052Q30.735-40.716 30.271-40.544Q29.806-40.372 29.349-40.372L27.982-40.372L27.982-38.466Q27.982-38.298 28.224-38.251Q28.466-38.204 28.786-38.204L28.786-37.907M27.954-42.809L27.954-40.641L29.130-40.641Q29.817-40.641 30.155-40.917Q30.493-41.192 30.493-41.860Q30.493-42.524 30.155-42.800Q29.817-43.075 29.130-43.075L28.357-43.075Q28.138-43.075 28.046-43.032Q27.954-42.989 27.954-42.809M32.302-40.641Q32.302-41.235 32.534-41.766Q32.767-42.298 33.183-42.698Q33.599-43.098 34.132-43.319Q34.665-43.540 35.271-43.540Q35.708-43.540 36.106-43.358Q36.505-43.177 36.814-42.844L37.286-43.509Q37.317-43.540 37.349-43.540L37.396-43.540Q37.423-43.540 37.454-43.509Q37.485-43.477 37.485-43.450L37.485-41.313Q37.485-41.290 37.454-41.259Q37.423-41.227 37.396-41.227L37.278-41.227Q37.251-41.227 37.220-41.259Q37.189-41.290 37.189-41.313Q37.189-41.579 37.046-41.932Q36.903-42.286 36.724-42.524Q36.470-42.856 36.120-43.050Q35.771-43.243 35.364-43.243Q34.860-43.243 34.407-43.024Q33.954-42.805 33.661-42.411Q33.165-41.743 33.165-40.641Q33.165-40.110 33.302-39.643Q33.439-39.177 33.714-38.811Q33.989-38.446 34.409-38.241Q34.829-38.036 35.372-38.036Q35.860-38.036 36.284-38.280Q36.708-38.524 36.956-38.944Q37.204-39.364 37.204-39.860Q37.204-39.895 37.233-39.921Q37.263-39.946 37.294-39.946L37.396-39.946Q37.439-39.946 37.462-39.917Q37.485-39.887 37.485-39.844Q37.485-39.407 37.310-39.018Q37.134-38.630 36.823-38.346Q36.513-38.063 36.103-37.901Q35.692-37.739 35.271-37.739Q34.681-37.739 34.140-37.960Q33.599-38.180 33.183-38.585Q32.767-38.989 32.534-39.518Q32.302-40.048 32.302-40.641M43.927-38.884L38.614-38.884Q38.536-38.891 38.487-38.940Q38.439-38.989 38.439-39.067Q38.439-39.137 38.485-39.188Q38.532-39.239 38.614-39.251L43.927-39.251Q44.001-39.239 44.048-39.188Q44.095-39.137 44.095-39.067Q44.095-38.989 44.046-38.940Q43.997-38.891 43.927-38.884M43.927-40.571L38.614-40.571Q38.536-40.579 38.487-40.628Q38.439-40.677 38.439-40.755Q38.439-40.825 38.485-40.876Q38.532-40.927 38.614-40.938L43.927-40.938Q44.001-40.927 44.048-40.876Q44.095-40.825 44.095-40.755Q44.095-40.677 44.046-40.628Q43.997-40.579 43.927-40.571M46.614-37.938L45.392-40.794Q45.310-40.969 45.165-41.014Q45.021-41.059 44.751-41.059L44.751-41.356L46.462-41.356L46.462-41.059Q46.040-41.059 46.040-40.876Q46.040-40.841 46.056-40.794L47.001-38.602L47.841-40.579Q47.880-40.657 47.880-40.747Q47.880-40.887 47.774-40.973Q47.669-41.059 47.528-41.059L47.528-41.356L48.880-41.356L48.880-41.059Q48.356-41.059 48.142-40.579L47.017-37.938Q46.954-37.829 46.849-37.829L46.782-37.829Q46.669-37.829 46.614-37.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.929 123.702)\">\u003Cpath d=\"M48.939-38.739Q48.939-39.223 49.341-39.518Q49.744-39.813 50.294-39.932Q50.845-40.052 51.337-40.052L51.337-40.341Q51.337-40.567 51.222-40.774Q51.107-40.981 50.910-41.100Q50.712-41.219 50.482-41.219Q50.056-41.219 49.771-41.114Q49.841-41.087 49.888-41.032Q49.935-40.977 49.960-40.907Q49.986-40.837 49.986-40.762Q49.986-40.657 49.935-40.565Q49.884-40.473 49.792-40.423Q49.701-40.372 49.595-40.372Q49.490-40.372 49.398-40.423Q49.306-40.473 49.255-40.565Q49.205-40.657 49.205-40.762Q49.205-41.180 49.593-41.327Q49.982-41.473 50.482-41.473Q50.814-41.473 51.167-41.343Q51.521-41.212 51.749-40.958Q51.978-40.704 51.978-40.356L51.978-38.555Q51.978-38.423 52.050-38.313Q52.123-38.204 52.251-38.204Q52.376-38.204 52.445-38.309Q52.513-38.415 52.513-38.555L52.513-39.067L52.794-39.067L52.794-38.555Q52.794-38.352 52.677-38.194Q52.560-38.036 52.378-37.952Q52.197-37.868 51.994-37.868Q51.763-37.868 51.611-38.040Q51.458-38.212 51.427-38.442Q51.267-38.161 50.958-37.995Q50.650-37.829 50.298-37.829Q49.787-37.829 49.363-38.052Q48.939-38.274 48.939-38.739M49.626-38.739Q49.626-38.454 49.853-38.268Q50.080-38.083 50.373-38.083Q50.619-38.083 50.843-38.200Q51.068-38.317 51.203-38.520Q51.337-38.723 51.337-38.977L51.337-39.809Q51.072-39.809 50.787-39.755Q50.501-39.700 50.230-39.571Q49.958-39.442 49.792-39.235Q49.626-39.028 49.626-38.739M55.001-37.907L53.169-37.907L53.169-38.204Q53.443-38.204 53.611-38.251Q53.779-38.298 53.779-38.466L53.779-42.626Q53.779-42.841 53.716-42.936Q53.654-43.032 53.535-43.053Q53.416-43.075 53.169-43.075L53.169-43.372L54.392-43.458L54.392-38.466Q54.392-38.298 54.560-38.251Q54.728-38.204 55.001-38.204L55.001-37.907M57.505-37.907L55.583-37.907L55.583-38.204Q56.392-38.204 56.392-38.684L56.392-42.809Q56.392-42.981 56.150-43.028Q55.908-43.075 55.583-43.075L55.583-43.372L57.080-43.372Q57.189-43.372 57.248-43.259L59.095-38.716L60.935-43.259Q60.998-43.372 61.103-43.372L62.607-43.372L62.607-43.075Q62.287-43.075 62.044-43.028Q61.802-42.981 61.802-42.809L61.802-38.466Q61.802-38.298 62.044-38.251Q62.287-38.204 62.607-38.204L62.607-37.907L60.306-37.907L60.306-38.204Q61.111-38.204 61.111-38.466L61.111-43.059L59.064-38.020Q59.029-37.907 58.896-37.907Q58.755-37.907 58.720-38.020L56.697-42.997L56.697-38.684Q56.697-38.204 57.505-38.204L57.505-37.907M68.947-38.884L63.634-38.884Q63.556-38.891 63.507-38.940Q63.458-38.989 63.458-39.067Q63.458-39.137 63.505-39.188Q63.552-39.239 63.634-39.251L68.947-39.251Q69.021-39.239 69.068-39.188Q69.115-39.137 69.115-39.067Q69.115-38.989 69.066-38.940Q69.017-38.891 68.947-38.884M68.947-40.571L63.634-40.571Q63.556-40.579 63.507-40.628Q63.458-40.677 63.458-40.755Q63.458-40.825 63.505-40.876Q63.552-40.927 63.634-40.938L68.947-40.938Q69.021-40.927 69.068-40.876Q69.115-40.825 69.115-40.755Q69.115-40.677 69.066-40.628Q69.017-40.579 68.947-40.571M71.716-37.739Q71.013-37.739 70.613-38.139Q70.212-38.540 70.068-39.149Q69.923-39.759 69.923-40.458Q69.923-40.981 69.994-41.444Q70.064-41.907 70.257-42.319Q70.451-42.731 70.808-42.979Q71.166-43.227 71.716-43.227Q72.267-43.227 72.624-42.979Q72.982-42.731 73.173-42.321Q73.365-41.911 73.435-41.442Q73.505-40.973 73.505-40.458Q73.505-39.759 73.363-39.151Q73.220-38.544 72.820-38.141Q72.419-37.739 71.716-37.739M71.716-37.997Q72.189-37.997 72.421-38.432Q72.654-38.868 72.708-39.407Q72.763-39.946 72.763-40.587Q72.763-41.583 72.580-42.276Q72.396-42.969 71.716-42.969Q71.349-42.969 71.128-42.731Q70.908-42.493 70.812-42.136Q70.716-41.778 70.691-41.407Q70.666-41.036 70.666-40.587Q70.666-39.946 70.720-39.407Q70.775-38.868 71.007-38.432Q71.240-37.997 71.716-37.997M75.466-37.907L73.970-37.907L73.970-38.204Q74.603-38.204 75.025-38.684L75.794-39.594L74.802-40.794Q74.646-40.973 74.484-41.016Q74.322-41.059 74.017-41.059L74.017-41.356L75.705-41.356L75.705-41.059Q75.611-41.059 75.535-41.016Q75.458-40.973 75.458-40.884Q75.458-40.841 75.490-40.794L76.146-40.005L76.626-40.579Q76.744-40.716 76.744-40.852Q76.744-40.942 76.693-41.001Q76.642-41.059 76.560-41.059L76.560-41.356L78.048-41.356L78.048-41.059Q77.412-41.059 77.001-40.579L76.322-39.778L77.408-38.466Q77.568-38.290 77.728-38.247Q77.888-38.204 78.193-38.204L78.193-37.907L76.505-37.907L76.505-38.204Q76.595-38.204 76.673-38.247Q76.751-38.290 76.751-38.380Q76.751-38.403 76.720-38.466L75.978-39.372L75.392-38.684Q75.275-38.548 75.275-38.411Q75.275-38.325 75.326-38.264Q75.376-38.204 75.466-38.204L75.466-37.907M80.443-37.739Q79.740-37.739 79.339-38.139Q78.939-38.540 78.794-39.149Q78.650-39.759 78.650-40.458Q78.650-40.981 78.720-41.444Q78.791-41.907 78.984-42.319Q79.177-42.731 79.535-42.979Q79.892-43.227 80.443-43.227Q80.994-43.227 81.351-42.979Q81.708-42.731 81.900-42.321Q82.091-41.911 82.162-41.442Q82.232-40.973 82.232-40.458Q82.232-39.759 82.089-39.151Q81.947-38.544 81.546-38.141Q81.146-37.739 80.443-37.739M80.443-37.997Q80.916-37.997 81.148-38.432Q81.380-38.868 81.435-39.407Q81.490-39.946 81.490-40.587Q81.490-41.583 81.306-42.276Q81.123-42.969 80.443-42.969Q80.076-42.969 79.855-42.731Q79.634-42.493 79.539-42.136Q79.443-41.778 79.417-41.407Q79.392-41.036 79.392-40.587Q79.392-39.946 79.447-39.407Q79.501-38.868 79.734-38.432Q79.966-37.997 80.443-37.997M86.162-37.907L83.369-37.907L83.369-38.204Q84.431-38.204 84.431-38.466L84.431-42.634Q84.001-42.419 83.322-42.419L83.322-42.716Q84.341-42.716 84.857-43.227L85.001-43.227Q85.076-43.208 85.095-43.130L85.095-38.466Q85.095-38.204 86.162-38.204L86.162-37.907M87.607-38.540Q87.798-38.266 88.154-38.139Q88.509-38.012 88.892-38.012Q89.228-38.012 89.437-38.198Q89.646-38.384 89.742-38.677Q89.837-38.969 89.837-39.282Q89.837-39.606 89.740-39.901Q89.642-40.196 89.429-40.380Q89.216-40.563 88.884-40.563L88.318-40.563Q88.287-40.563 88.257-40.593Q88.228-40.622 88.228-40.649L88.228-40.731Q88.228-40.766 88.257-40.792Q88.287-40.817 88.318-40.817L88.798-40.852Q89.083-40.852 89.281-41.057Q89.478-41.262 89.574-41.557Q89.669-41.852 89.669-42.130Q89.669-42.509 89.470-42.747Q89.271-42.985 88.892-42.985Q88.572-42.985 88.283-42.878Q87.994-42.770 87.830-42.548Q88.009-42.548 88.132-42.421Q88.255-42.294 88.255-42.122Q88.255-41.950 88.130-41.825Q88.005-41.700 87.830-41.700Q87.658-41.700 87.533-41.825Q87.408-41.950 87.408-42.122Q87.408-42.489 87.632-42.737Q87.857-42.985 88.197-43.106Q88.537-43.227 88.892-43.227Q89.240-43.227 89.603-43.106Q89.966-42.985 90.214-42.735Q90.462-42.485 90.462-42.130Q90.462-41.645 90.144-41.262Q89.826-40.880 89.349-40.708Q89.900-40.598 90.300-40.212Q90.701-39.825 90.701-39.290Q90.701-38.833 90.437-38.477Q90.173-38.122 89.751-37.930Q89.330-37.739 88.892-37.739Q88.482-37.739 88.089-37.874Q87.697-38.009 87.431-38.294Q87.166-38.579 87.166-38.997Q87.166-39.192 87.298-39.321Q87.431-39.450 87.623-39.450Q87.748-39.450 87.851-39.391Q87.955-39.333 88.017-39.227Q88.080-39.122 88.080-38.997Q88.080-38.802 87.945-38.671Q87.810-38.540 87.607-38.540\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M213.434 94.967H449.59\"\u002F>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">Cycle 2 (call sum3, left) and cycle 4 (ret, right), every stage in hex. call computes valE = 0x100 - 8 = 0xf8, stores the return address 0x013 there, commits %rsp = 0xf8, and jumps to valC = 0x014. ret reads valA = 0xf8, loads valM = 0x013 from it, commits %rsp = 0x100, and jumps to valM.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:427.137px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 320.353 90.420\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" d=\"M-31.797-33.574h85.359v-22.763h-85.359Z\"\u002F>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-31.797-10.812h85.359v-22.762h-85.359Z\"\u002F>\u003Cg transform=\"translate(-10.625 -20.318)\">\u003Cpath d=\"M13.003 0.647Q12.569 0.647 12.237 0.409Q11.905 0.171 11.685-0.218Q11.464-0.607 11.357-1.044Q11.249-1.482 11.249-1.880Q11.249-2.271 11.359-2.714Q11.468-3.158 11.685-3.538Q11.902-3.919 12.236-4.160Q12.569-4.400 13.003-4.400Q13.558-4.400 13.958-4.001Q14.359-3.603 14.556-3.017Q14.753-2.431 14.753-1.880Q14.753-1.326 14.556-0.738Q14.359-0.150 13.958 0.249Q13.558 0.647 13.003 0.647M13.003 0.089Q13.304 0.089 13.521-0.128Q13.737-0.345 13.864-0.673Q13.991-1.001 14.052-1.347Q14.112-1.693 14.112-1.974Q14.112-2.224 14.050-2.550Q13.987-2.876 13.857-3.167Q13.726-3.458 13.513-3.648Q13.300-3.837 13.003-3.837Q12.628-3.837 12.376-3.525Q12.124-3.212 12.007-2.779Q11.890-2.345 11.890-1.974Q11.890-1.576 12.003-1.095Q12.116-0.615 12.364-0.263Q12.612 0.089 13.003 0.089M15.386 0.331L15.386 0.241Q15.425 0.034 15.632 0.010L16.038 0.010L16.968-1.208L16.097-2.318L15.679-2.318Q15.484-2.337 15.433-2.560L15.433-2.646Q15.484-2.857 15.679-2.880L16.839-2.880Q17.038-2.857 17.089-2.646L17.089-2.560Q17.038-2.341 16.839-2.318L16.730-2.318L17.226-1.661L17.702-2.318L17.585-2.318Q17.386-2.341 17.335-2.560L17.335-2.646Q17.386-2.857 17.585-2.880L18.745-2.880Q18.941-2.861 18.991-2.646L18.991-2.560Q18.941-2.341 18.745-2.318L18.335-2.318L17.487-1.208L18.448 0.010L18.855 0.010Q19.054 0.034 19.105 0.241L19.105 0.331Q19.066 0.546 18.855 0.569L17.702 0.569Q17.495 0.546 17.456 0.331L17.456 0.241Q17.495 0.034 17.702 0.010L17.831 0.010L17.226-0.845L16.640 0.010L16.784 0.010Q16.991 0.034 17.030 0.241L17.030 0.331Q16.991 0.546 16.784 0.569L15.632 0.569Q15.437 0.549 15.386 0.331M21.495 0.647Q21.062 0.647 20.730 0.409Q20.398 0.171 20.177-0.218Q19.956-0.607 19.849-1.044Q19.741-1.482 19.741-1.880Q19.741-2.271 19.851-2.714Q19.960-3.158 20.177-3.538Q20.394-3.919 20.728-4.160Q21.062-4.400 21.495-4.400Q22.050-4.400 22.450-4.001Q22.851-3.603 23.048-3.017Q23.245-2.431 23.245-1.880Q23.245-1.326 23.048-0.738Q22.851-0.150 22.450 0.249Q22.050 0.647 21.495 0.647M21.495 0.089Q21.796 0.089 22.013-0.128Q22.230-0.345 22.357-0.673Q22.484-1.001 22.544-1.347Q22.605-1.693 22.605-1.974Q22.605-2.224 22.542-2.550Q22.480-2.876 22.349-3.167Q22.218-3.458 22.005-3.648Q21.792-3.837 21.495-3.837Q21.120-3.837 20.868-3.525Q20.616-3.212 20.499-2.779Q20.382-2.345 20.382-1.974Q20.382-1.576 20.495-1.095Q20.609-0.615 20.857-0.263Q21.105 0.089 21.495 0.089M24.476 0.331L24.476 0.241Q24.527 0.034 24.726 0.010L25.542 0.010L25.542-3.173Q25.163-2.865 24.710-2.865Q24.480-2.865 24.429-3.095L24.429-3.185Q24.480-3.400 24.675-3.423Q25.003-3.423 25.257-3.661Q25.511-3.900 25.652-4.247Q25.722-4.376 25.878-4.400L25.933-4.400Q26.128-4.380 26.179-4.165L26.179 0.010L26.995 0.010Q27.194 0.034 27.245 0.241L27.245 0.331Q27.194 0.546 26.995 0.569L24.726 0.569Q24.527 0.546 24.476 0.331M28.218-0.478Q28.218-0.654 28.335-0.775Q28.452-0.896 28.628-0.896Q28.710-0.896 28.786-0.865Q28.862-0.833 28.913-0.783Q28.964-0.732 28.995-0.652Q29.027-0.572 29.027-0.493Q29.027-0.361 28.944-0.247Q29.214 0.089 30.003 0.089Q30.429 0.089 30.771-0.177Q31.112-0.443 31.112-0.857Q31.112-1.130 30.946-1.349Q30.780-1.568 30.521-1.679Q30.261-1.790 29.987-1.790L29.523-1.790Q29.312-1.814 29.280-2.033L29.280-2.118Q29.312-2.322 29.523-2.353L30.050-2.392Q30.265-2.392 30.456-2.515Q30.648-2.638 30.761-2.841Q30.874-3.044 30.874-3.255Q30.874-3.529 30.591-3.683Q30.308-3.837 30.003-3.837Q29.441-3.837 29.202-3.646Q29.265-3.533 29.265-3.423Q29.265-3.251 29.152-3.138Q29.038-3.025 28.866-3.025Q28.691-3.025 28.575-3.148Q28.460-3.271 28.460-3.439Q28.460-3.966 28.933-4.183Q29.405-4.400 30.003-4.400Q30.343-4.400 30.698-4.269Q31.054-4.138 31.284-3.880Q31.515-3.622 31.515-3.255Q31.515-2.911 31.347-2.607Q31.179-2.302 30.882-2.103Q31.253-1.923 31.503-1.587Q31.753-1.251 31.753-0.857Q31.753-0.411 31.499-0.070Q31.245 0.272 30.843 0.460Q30.441 0.647 30.003 0.647Q29.718 0.647 29.413 0.592Q29.109 0.538 28.833 0.411Q28.558 0.284 28.388 0.061Q28.218-0.161 28.218-0.478\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-31.797 11.95h85.359v-22.762h-85.359Z\"\u002F>\u003Cg transform=\"translate(-73.153 -43.08)\">\u003Cpath d=\"M13.003 0.647Q12.569 0.647 12.237 0.409Q11.905 0.171 11.685-0.218Q11.464-0.607 11.357-1.044Q11.249-1.482 11.249-1.880Q11.249-2.271 11.359-2.714Q11.468-3.158 11.685-3.538Q11.902-3.919 12.236-4.160Q12.569-4.400 13.003-4.400Q13.558-4.400 13.958-4.001Q14.359-3.603 14.556-3.017Q14.753-2.431 14.753-1.880Q14.753-1.326 14.556-0.738Q14.359-0.150 13.958 0.249Q13.558 0.647 13.003 0.647M13.003 0.089Q13.304 0.089 13.521-0.128Q13.737-0.345 13.864-0.673Q13.991-1.001 14.052-1.347Q14.112-1.693 14.112-1.974Q14.112-2.224 14.050-2.550Q13.987-2.876 13.857-3.167Q13.726-3.458 13.513-3.648Q13.300-3.837 13.003-3.837Q12.628-3.837 12.376-3.525Q12.124-3.212 12.007-2.779Q11.890-2.345 11.890-1.974Q11.890-1.576 12.003-1.095Q12.116-0.615 12.364-0.263Q12.612 0.089 13.003 0.089M15.386 0.331L15.386 0.241Q15.425 0.034 15.632 0.010L16.038 0.010L16.968-1.208L16.097-2.318L15.679-2.318Q15.484-2.337 15.433-2.560L15.433-2.646Q15.484-2.857 15.679-2.880L16.839-2.880Q17.038-2.857 17.089-2.646L17.089-2.560Q17.038-2.341 16.839-2.318L16.730-2.318L17.226-1.661L17.702-2.318L17.585-2.318Q17.386-2.341 17.335-2.560L17.335-2.646Q17.386-2.857 17.585-2.880L18.745-2.880Q18.941-2.861 18.991-2.646L18.991-2.560Q18.941-2.341 18.745-2.318L18.335-2.318L17.487-1.208L18.448 0.010L18.855 0.010Q19.054 0.034 19.105 0.241L19.105 0.331Q19.066 0.546 18.855 0.569L17.702 0.569Q17.495 0.546 17.456 0.331L17.456 0.241Q17.495 0.034 17.702 0.010L17.831 0.010L17.226-0.845L16.640 0.010L16.784 0.010Q16.991 0.034 17.030 0.241L17.030 0.331Q16.991 0.546 16.784 0.569L15.632 0.569Q15.437 0.549 15.386 0.331M20.230 0.331L20.230 0.241Q20.280 0.034 20.480 0.010L21.296 0.010L21.296-3.173Q20.917-2.865 20.464-2.865Q20.234-2.865 20.183-3.095L20.183-3.185Q20.234-3.400 20.429-3.423Q20.757-3.423 21.011-3.661Q21.265-3.900 21.405-4.247Q21.476-4.376 21.632-4.400L21.687-4.400Q21.882-4.380 21.933-4.165L21.933 0.010L22.749 0.010Q22.948 0.034 22.999 0.241L22.999 0.331Q22.948 0.546 22.749 0.569L20.480 0.569Q20.280 0.546 20.230 0.331M25.741 0.647Q25.308 0.647 24.976 0.409Q24.644 0.171 24.423-0.218Q24.202-0.607 24.095-1.044Q23.987-1.482 23.987-1.880Q23.987-2.271 24.097-2.714Q24.206-3.158 24.423-3.538Q24.640-3.919 24.974-4.160Q25.308-4.400 25.741-4.400Q26.296-4.400 26.696-4.001Q27.097-3.603 27.294-3.017Q27.491-2.431 27.491-1.880Q27.491-1.326 27.294-0.738Q27.097-0.150 26.696 0.249Q26.296 0.647 25.741 0.647M25.741 0.089Q26.042 0.089 26.259-0.128Q26.476-0.345 26.603-0.673Q26.730-1.001 26.790-1.347Q26.851-1.693 26.851-1.974Q26.851-2.224 26.788-2.550Q26.726-2.876 26.595-3.167Q26.464-3.458 26.251-3.648Q26.038-3.837 25.741-3.837Q25.366-3.837 25.114-3.525Q24.862-3.212 24.745-2.779Q24.628-2.345 24.628-1.974Q24.628-1.576 24.741-1.095Q24.855-0.615 25.103-0.263Q25.351 0.089 25.741 0.089M29.987 0.647Q29.554 0.647 29.222 0.409Q28.890 0.171 28.669-0.218Q28.448-0.607 28.341-1.044Q28.234-1.482 28.234-1.880Q28.234-2.271 28.343-2.714Q28.452-3.158 28.669-3.538Q28.886-3.919 29.220-4.160Q29.554-4.400 29.987-4.400Q30.542-4.400 30.943-4.001Q31.343-3.603 31.540-3.017Q31.737-2.431 31.737-1.880Q31.737-1.326 31.540-0.738Q31.343-0.150 30.943 0.249Q30.542 0.647 29.987 0.647M29.987 0.089Q30.288 0.089 30.505-0.128Q30.722-0.345 30.849-0.673Q30.976-1.001 31.036-1.347Q31.097-1.693 31.097-1.974Q31.097-2.224 31.034-2.550Q30.972-2.876 30.841-3.167Q30.710-3.458 30.497-3.648Q30.284-3.837 29.987-3.837Q29.612-3.837 29.361-3.525Q29.109-3.212 28.991-2.779Q28.874-2.345 28.874-1.974Q28.874-1.576 28.987-1.095Q29.101-0.615 29.349-0.263Q29.597 0.089 29.987 0.089\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-73.153 -20.318)\">\u003Cpath d=\"M13.003 0.647Q12.569 0.647 12.237 0.409Q11.905 0.171 11.685-0.218Q11.464-0.607 11.357-1.044Q11.249-1.482 11.249-1.880Q11.249-2.271 11.359-2.714Q11.468-3.158 11.685-3.538Q11.902-3.919 12.236-4.160Q12.569-4.400 13.003-4.400Q13.558-4.400 13.958-4.001Q14.359-3.603 14.556-3.017Q14.753-2.431 14.753-1.880Q14.753-1.326 14.556-0.738Q14.359-0.150 13.958 0.249Q13.558 0.647 13.003 0.647M13.003 0.089Q13.304 0.089 13.521-0.128Q13.737-0.345 13.864-0.673Q13.991-1.001 14.052-1.347Q14.112-1.693 14.112-1.974Q14.112-2.224 14.050-2.550Q13.987-2.876 13.857-3.167Q13.726-3.458 13.513-3.648Q13.300-3.837 13.003-3.837Q12.628-3.837 12.376-3.525Q12.124-3.212 12.007-2.779Q11.890-2.345 11.890-1.974Q11.890-1.576 12.003-1.095Q12.116-0.615 12.364-0.263Q12.612 0.089 13.003 0.089M15.386 0.331L15.386 0.241Q15.425 0.034 15.632 0.010L16.038 0.010L16.968-1.208L16.097-2.318L15.679-2.318Q15.484-2.337 15.433-2.560L15.433-2.646Q15.484-2.857 15.679-2.880L16.839-2.880Q17.038-2.857 17.089-2.646L17.089-2.560Q17.038-2.341 16.839-2.318L16.730-2.318L17.226-1.661L17.702-2.318L17.585-2.318Q17.386-2.341 17.335-2.560L17.335-2.646Q17.386-2.857 17.585-2.880L18.745-2.880Q18.941-2.861 18.991-2.646L18.991-2.560Q18.941-2.341 18.745-2.318L18.335-2.318L17.487-1.208L18.448 0.010L18.855 0.010Q19.054 0.034 19.105 0.241L19.105 0.331Q19.066 0.546 18.855 0.569L17.702 0.569Q17.495 0.546 17.456 0.331L17.456 0.241Q17.495 0.034 17.702 0.010L17.831 0.010L17.226-0.845L16.640 0.010L16.784 0.010Q16.991 0.034 17.030 0.241L17.030 0.331Q16.991 0.546 16.784 0.569L15.632 0.569Q15.437 0.549 15.386 0.331M21.495 0.647Q21.062 0.647 20.730 0.409Q20.398 0.171 20.177-0.218Q19.956-0.607 19.849-1.044Q19.741-1.482 19.741-1.880Q19.741-2.271 19.851-2.714Q19.960-3.158 20.177-3.538Q20.394-3.919 20.728-4.160Q21.062-4.400 21.495-4.400Q22.050-4.400 22.450-4.001Q22.851-3.603 23.048-3.017Q23.245-2.431 23.245-1.880Q23.245-1.326 23.048-0.738Q22.851-0.150 22.450 0.249Q22.050 0.647 21.495 0.647M21.495 0.089Q21.796 0.089 22.013-0.128Q22.230-0.345 22.357-0.673Q22.484-1.001 22.544-1.347Q22.605-1.693 22.605-1.974Q22.605-2.224 22.542-2.550Q22.480-2.876 22.349-3.167Q22.218-3.458 22.005-3.648Q21.792-3.837 21.495-3.837Q21.120-3.837 20.868-3.525Q20.616-3.212 20.499-2.779Q20.382-2.345 20.382-1.974Q20.382-1.576 20.495-1.095Q20.609-0.615 20.857-0.263Q21.105 0.089 21.495 0.089M23.941 0.331L23.941 0.241Q23.991 0.034 24.187 0.010L25.069 0.010L25.069-2.318L24.214-2.318Q24.015-2.341 23.964-2.560L23.964-2.646Q24.015-2.857 24.214-2.880L25.069-2.880L25.069-3.333Q25.069-3.798 25.476-4.079Q25.882-4.361 26.362-4.361Q26.675-4.361 26.919-4.240Q27.163-4.118 27.163-3.837Q27.163-3.673 27.054-3.556Q26.944-3.439 26.780-3.439Q26.632-3.439 26.511-3.544Q26.390-3.650 26.390-3.798L26.308-3.798Q26.155-3.798 26.019-3.738Q25.882-3.677 25.796-3.562Q25.710-3.447 25.710-3.302L25.710-2.880L26.741-2.880Q26.937-2.861 26.987-2.646L26.987-2.560Q26.937-2.341 26.741-2.318L25.710-2.318L25.710 0.010L26.589 0.010Q26.784 0.034 26.835 0.241L26.835 0.331Q26.784 0.546 26.589 0.569L24.187 0.569Q23.991 0.546 23.941 0.331M28.218-0.845Q28.218-1.130 28.374-1.384Q28.530-1.638 28.780-1.812Q29.030-1.986 29.316-2.072Q29.077-2.146 28.851-2.288Q28.624-2.431 28.482-2.640Q28.339-2.849 28.339-3.095Q28.339-3.493 28.585-3.788Q28.831-4.083 29.214-4.242Q29.597-4.400 29.987-4.400Q30.378-4.400 30.761-4.242Q31.144-4.083 31.390-3.785Q31.636-3.486 31.636-3.095Q31.636-2.849 31.493-2.642Q31.351-2.435 31.124-2.290Q30.898-2.146 30.659-2.072Q31.112-1.935 31.433-1.609Q31.753-1.283 31.753-0.845Q31.753-0.408 31.495-0.064Q31.237 0.280 30.827 0.464Q30.417 0.647 29.987 0.647Q29.558 0.647 29.148 0.465Q28.737 0.284 28.478-0.060Q28.218-0.404 28.218-0.845M28.859-0.845Q28.859-0.572 29.025-0.357Q29.191-0.142 29.452-0.027Q29.714 0.089 29.987 0.089Q30.261 0.089 30.521-0.027Q30.780-0.142 30.946-0.359Q31.112-0.576 31.112-0.845Q31.112-1.122 30.946-1.339Q30.780-1.556 30.521-1.673Q30.261-1.790 29.987-1.790Q29.714-1.790 29.452-1.673Q29.191-1.556 29.025-1.341Q28.859-1.126 28.859-0.845M28.980-3.095Q28.980-2.857 29.136-2.689Q29.292-2.521 29.528-2.437Q29.765-2.353 29.987-2.353Q30.206-2.353 30.444-2.437Q30.683-2.521 30.839-2.691Q30.995-2.861 30.995-3.095Q30.995-3.329 30.839-3.499Q30.683-3.669 30.444-3.753Q30.206-3.837 29.987-3.837Q29.765-3.837 29.528-3.753Q29.292-3.669 29.136-3.501Q28.980-3.333 28.980-3.095\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-73.153 2.444)\">\u003Cpath d=\"M13.003 0.647Q12.569 0.647 12.237 0.409Q11.905 0.171 11.685-0.218Q11.464-0.607 11.357-1.044Q11.249-1.482 11.249-1.880Q11.249-2.271 11.359-2.714Q11.468-3.158 11.685-3.538Q11.902-3.919 12.236-4.160Q12.569-4.400 13.003-4.400Q13.558-4.400 13.958-4.001Q14.359-3.603 14.556-3.017Q14.753-2.431 14.753-1.880Q14.753-1.326 14.556-0.738Q14.359-0.150 13.958 0.249Q13.558 0.647 13.003 0.647M13.003 0.089Q13.304 0.089 13.521-0.128Q13.737-0.345 13.864-0.673Q13.991-1.001 14.052-1.347Q14.112-1.693 14.112-1.974Q14.112-2.224 14.050-2.550Q13.987-2.876 13.857-3.167Q13.726-3.458 13.513-3.648Q13.300-3.837 13.003-3.837Q12.628-3.837 12.376-3.525Q12.124-3.212 12.007-2.779Q11.890-2.345 11.890-1.974Q11.890-1.576 12.003-1.095Q12.116-0.615 12.364-0.263Q12.612 0.089 13.003 0.089M15.386 0.331L15.386 0.241Q15.425 0.034 15.632 0.010L16.038 0.010L16.968-1.208L16.097-2.318L15.679-2.318Q15.484-2.337 15.433-2.560L15.433-2.646Q15.484-2.857 15.679-2.880L16.839-2.880Q17.038-2.857 17.089-2.646L17.089-2.560Q17.038-2.341 16.839-2.318L16.730-2.318L17.226-1.661L17.702-2.318L17.585-2.318Q17.386-2.341 17.335-2.560L17.335-2.646Q17.386-2.857 17.585-2.880L18.745-2.880Q18.941-2.861 18.991-2.646L18.991-2.560Q18.941-2.341 18.745-2.318L18.335-2.318L17.487-1.208L18.448 0.010L18.855 0.010Q19.054 0.034 19.105 0.241L19.105 0.331Q19.066 0.546 18.855 0.569L17.702 0.569Q17.495 0.546 17.456 0.331L17.456 0.241Q17.495 0.034 17.702 0.010L17.831 0.010L17.226-0.845L16.640 0.010L16.784 0.010Q16.991 0.034 17.030 0.241L17.030 0.331Q16.991 0.546 16.784 0.569L15.632 0.569Q15.437 0.549 15.386 0.331M21.495 0.647Q21.062 0.647 20.730 0.409Q20.398 0.171 20.177-0.218Q19.956-0.607 19.849-1.044Q19.741-1.482 19.741-1.880Q19.741-2.271 19.851-2.714Q19.960-3.158 20.177-3.538Q20.394-3.919 20.728-4.160Q21.062-4.400 21.495-4.400Q22.050-4.400 22.450-4.001Q22.851-3.603 23.048-3.017Q23.245-2.431 23.245-1.880Q23.245-1.326 23.048-0.738Q22.851-0.150 22.450 0.249Q22.050 0.647 21.495 0.647M21.495 0.089Q21.796 0.089 22.013-0.128Q22.230-0.345 22.357-0.673Q22.484-1.001 22.544-1.347Q22.605-1.693 22.605-1.974Q22.605-2.224 22.542-2.550Q22.480-2.876 22.349-3.167Q22.218-3.458 22.005-3.648Q21.792-3.837 21.495-3.837Q21.120-3.837 20.868-3.525Q20.616-3.212 20.499-2.779Q20.382-2.345 20.382-1.974Q20.382-1.576 20.495-1.095Q20.609-0.615 20.857-0.263Q21.105 0.089 21.495 0.089M23.941 0.331L23.941 0.241Q23.991 0.034 24.187 0.010L25.069 0.010L25.069-2.318L24.214-2.318Q24.015-2.341 23.964-2.560L23.964-2.646Q24.015-2.857 24.214-2.880L25.069-2.880L25.069-3.333Q25.069-3.798 25.476-4.079Q25.882-4.361 26.362-4.361Q26.675-4.361 26.919-4.240Q27.163-4.118 27.163-3.837Q27.163-3.673 27.054-3.556Q26.944-3.439 26.780-3.439Q26.632-3.439 26.511-3.544Q26.390-3.650 26.390-3.798L26.308-3.798Q26.155-3.798 26.019-3.738Q25.882-3.677 25.796-3.562Q25.710-3.447 25.710-3.302L25.710-2.880L26.741-2.880Q26.937-2.861 26.987-2.646L26.987-2.560Q26.937-2.341 26.741-2.318L25.710-2.318L25.710 0.010L26.589 0.010Q26.784 0.034 26.835 0.241L26.835 0.331Q26.784 0.546 26.589 0.569L24.187 0.569Q23.991 0.546 23.941 0.331M29.987 0.647Q29.554 0.647 29.222 0.409Q28.890 0.171 28.669-0.218Q28.448-0.607 28.341-1.044Q28.234-1.482 28.234-1.880Q28.234-2.271 28.343-2.714Q28.452-3.158 28.669-3.538Q28.886-3.919 29.220-4.160Q29.554-4.400 29.987-4.400Q30.542-4.400 30.943-4.001Q31.343-3.603 31.540-3.017Q31.737-2.431 31.737-1.880Q31.737-1.326 31.540-0.738Q31.343-0.150 30.943 0.249Q30.542 0.647 29.987 0.647M29.987 0.089Q30.288 0.089 30.505-0.128Q30.722-0.345 30.849-0.673Q30.976-1.001 31.036-1.347Q31.097-1.693 31.097-1.974Q31.097-2.224 31.034-2.550Q30.972-2.876 30.841-3.167Q30.710-3.458 30.497-3.648Q30.284-3.837 29.987-3.837Q29.612-3.837 29.361-3.525Q29.109-3.212 28.991-2.779Q28.874-2.345 28.874-1.974Q28.874-1.576 28.987-1.095Q29.101-0.615 29.349-0.263Q29.597 0.089 29.987 0.089\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-28.51 -64.645)\">\u003Cpath d=\"M12.878 0.569L11.244 0.569L11.244 0.289Q11.473 0.289 11.622 0.255Q11.771 0.220 11.771 0.080L11.771-3.539Q11.771-3.809 11.663-3.871Q11.555-3.932 11.244-3.932L11.244-4.213L12.324-4.288L12.324-1.902Q12.430-2.087 12.608-2.229Q12.786-2.370 12.994-2.444Q13.203-2.517 13.428-2.517Q13.934-2.517 14.218-2.294Q14.502-2.070 14.502-1.574L14.502 0.080Q14.502 0.217 14.650 0.253Q14.799 0.289 15.025 0.289L15.025 0.569L13.394 0.569L13.394 0.289Q13.623 0.289 13.772 0.255Q13.921 0.220 13.921 0.080L13.921-1.560Q13.921-1.895 13.801-2.095Q13.681-2.295 13.367-2.295Q13.097-2.295 12.863-2.159Q12.629-2.022 12.490-1.788Q12.352-1.554 12.352-1.280L12.352 0.080Q12.352 0.217 12.502 0.253Q12.653 0.289 12.878 0.289L12.878 0.569M17.229 0.569L15.677 0.569L15.677 0.289Q15.903 0.289 16.052 0.255Q16.200 0.220 16.200 0.080L16.200-1.769Q16.200-1.957 16.153-2.041Q16.105-2.124 16.007-2.143Q15.910-2.162 15.698-2.162L15.698-2.442L16.754-2.517L16.754 0.080Q16.754 0.220 16.886 0.255Q17.017 0.289 17.229 0.289L17.229 0.569M15.958-3.738Q15.958-3.909 16.081-4.028Q16.204-4.148 16.375-4.148Q16.542-4.148 16.665-4.028Q16.788-3.909 16.788-3.738Q16.788-3.563 16.665-3.440Q16.542-3.317 16.375-3.317Q16.204-3.317 16.081-3.440Q15.958-3.563 15.958-3.738M17.834 1.102Q17.834 0.856 18.031 0.672Q18.227 0.487 18.484 0.408Q18.347 0.296 18.275 0.135Q18.203-0.026 18.203-0.207Q18.203-0.528 18.415-0.774Q18.080-1.072 18.080-1.482Q18.080-1.943 18.470-2.230Q18.860-2.517 19.338-2.517Q19.810-2.517 20.145-2.271Q20.319-2.425 20.529-2.507Q20.739-2.589 20.968-2.589Q21.132-2.589 21.254-2.482Q21.375-2.374 21.375-2.210Q21.375-2.114 21.303-2.042Q21.232-1.971 21.139-1.971Q21.040-1.971 20.970-2.044Q20.900-2.118 20.900-2.217Q20.900-2.271 20.914-2.302L20.921-2.316Q20.927-2.336 20.936-2.347Q20.944-2.357 20.948-2.364Q20.592-2.364 20.305-2.141Q20.592-1.848 20.592-1.482Q20.592-1.167 20.408-0.935Q20.223-0.702 19.934-0.574Q19.646-0.446 19.338-0.446Q19.136-0.446 18.945-0.496Q18.754-0.545 18.576-0.655Q18.484-0.528 18.484-0.385Q18.484-0.203 18.612-0.068Q18.740 0.067 18.924 0.067L19.557 0.067Q20.005 0.067 20.374 0.138Q20.743 0.210 21.003 0.439Q21.262 0.668 21.262 1.102Q21.262 1.423 20.967 1.625Q20.671 1.827 20.268 1.916Q19.864 2.005 19.550 2.005Q19.232 2.005 18.829 1.916Q18.425 1.827 18.130 1.625Q17.834 1.423 17.834 1.102M18.289 1.102Q18.289 1.331 18.507 1.480Q18.726 1.629 19.018 1.697Q19.311 1.765 19.550 1.765Q19.714 1.765 19.923 1.729Q20.131 1.694 20.338 1.613Q20.545 1.533 20.676 1.405Q20.808 1.277 20.808 1.102Q20.808 0.750 20.427 0.656Q20.046 0.562 19.543 0.562L18.924 0.562Q18.685 0.562 18.487 0.713Q18.289 0.863 18.289 1.102M19.338-0.685Q20.005-0.685 20.005-1.482Q20.005-2.282 19.338-2.282Q18.668-2.282 18.668-1.482Q18.668-0.685 19.338-0.685M23.539 0.569L21.905 0.569L21.905 0.289Q22.134 0.289 22.283 0.255Q22.431 0.220 22.431 0.080L22.431-3.539Q22.431-3.809 22.324-3.871Q22.216-3.932 21.905-3.932L21.905-4.213L22.985-4.288L22.985-1.902Q23.091-2.087 23.269-2.229Q23.446-2.370 23.655-2.444Q23.863-2.517 24.089-2.517Q24.595-2.517 24.879-2.294Q25.162-2.070 25.162-1.574L25.162 0.080Q25.162 0.217 25.311 0.253Q25.460 0.289 25.685 0.289L25.685 0.569L24.055 0.569L24.055 0.289Q24.284 0.289 24.433 0.255Q24.581 0.220 24.581 0.080L24.581-1.560Q24.581-1.895 24.462-2.095Q24.342-2.295 24.028-2.295Q23.757-2.295 23.523-2.159Q23.289-2.022 23.151-1.788Q23.012-1.554 23.012-1.280L23.012 0.080Q23.012 0.217 23.163 0.253Q23.313 0.289 23.539 0.289L23.539 0.569M26.232-0.966Q26.232-1.287 26.357-1.576Q26.482-1.865 26.707-2.088Q26.933-2.312 27.228-2.432Q27.524-2.552 27.842-2.552Q28.170-2.552 28.432-2.452Q28.693-2.353 28.869-2.171Q29.045-1.988 29.139-1.730Q29.233-1.472 29.233-1.140Q29.233-1.048 29.151-1.027L26.895-1.027L26.895-0.966Q26.895-0.378 27.179 0.005Q27.463 0.388 28.030 0.388Q28.351 0.388 28.620 0.195Q28.888 0.002 28.977-0.313Q28.984-0.354 29.059-0.368L29.151-0.368Q29.233-0.344 29.233-0.272Q29.233-0.265 29.226-0.238Q29.113 0.159 28.743 0.398Q28.372 0.637 27.948 0.637Q27.510 0.637 27.111 0.429Q26.711 0.220 26.471-0.147Q26.232-0.514 26.232-0.966M26.902-1.236L28.717-1.236Q28.717-1.513 28.620-1.765Q28.522-2.018 28.324-2.174Q28.126-2.329 27.842-2.329Q27.565-2.329 27.351-2.171Q27.138-2.012 27.020-1.757Q26.902-1.502 26.902-1.236M31.571 0.569L29.835 0.569L29.835 0.289Q30.064 0.289 30.212 0.255Q30.361 0.220 30.361 0.080L30.361-1.769Q30.361-2.039 30.253-2.100Q30.146-2.162 29.835-2.162L29.835-2.442L30.863-2.517L30.863-1.810Q30.993-2.118 31.236-2.317Q31.479-2.517 31.797-2.517Q32.015-2.517 32.186-2.393Q32.357-2.268 32.357-2.056Q32.357-1.919 32.258-1.820Q32.159-1.721 32.026-1.721Q31.889-1.721 31.790-1.820Q31.691-1.919 31.691-2.056Q31.691-2.196 31.790-2.295Q31.499-2.295 31.299-2.099Q31.099-1.902 31.007-1.608Q30.915-1.314 30.915-1.034L30.915 0.080Q30.915 0.289 31.571 0.289\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-28.51 -64.645)\">\u003Cpath d=\"M35.714-0.159Q35.714-0.491 35.937-0.718Q36.161-0.945 36.505-1.073Q36.848-1.202 37.221-1.254Q37.593-1.307 37.898-1.307L37.898-1.560Q37.898-1.765 37.790-1.945Q37.682-2.124 37.501-2.227Q37.320-2.329 37.112-2.329Q36.705-2.329 36.469-2.237Q36.558-2.200 36.604-2.116Q36.650-2.032 36.650-1.930Q36.650-1.834 36.604-1.755Q36.558-1.677 36.477-1.632Q36.397-1.588 36.308-1.588Q36.158-1.588 36.057-1.685Q35.956-1.783 35.956-1.930Q35.956-2.552 37.112-2.552Q37.323-2.552 37.573-2.488Q37.822-2.425 38.024-2.306Q38.226-2.186 38.352-2.001Q38.479-1.817 38.479-1.574L38.479 0.002Q38.479 0.118 38.540 0.214Q38.602 0.309 38.715 0.309Q38.824 0.309 38.889 0.215Q38.954 0.121 38.954 0.002L38.954-0.446L39.220-0.446L39.220 0.002Q39.220 0.272 38.993 0.437Q38.766 0.603 38.486 0.603Q38.277 0.603 38.140 0.449Q38.004 0.296 37.980 0.080Q37.833 0.347 37.551 0.492Q37.269 0.637 36.944 0.637Q36.667 0.637 36.383 0.562Q36.100 0.487 35.907 0.308Q35.714 0.128 35.714-0.159M36.329-0.159Q36.329 0.015 36.430 0.145Q36.530 0.275 36.686 0.345Q36.841 0.415 37.006 0.415Q37.224 0.415 37.433 0.318Q37.641 0.220 37.769 0.039Q37.898-0.142 37.898-0.368L37.898-1.096Q37.573-1.096 37.207-1.005Q36.841-0.914 36.585-0.702Q36.329-0.491 36.329-0.159M39.637-0.942Q39.637-1.280 39.778-1.571Q39.918-1.861 40.162-2.075Q40.406-2.288 40.711-2.403Q41.015-2.517 41.340-2.517Q41.610-2.517 41.873-2.418Q42.136-2.319 42.327-2.141L42.327-3.539Q42.327-3.809 42.220-3.871Q42.112-3.932 41.801-3.932L41.801-4.213L42.878-4.288L42.878-0.104Q42.878 0.084 42.932 0.167Q42.987 0.251 43.088 0.270Q43.189 0.289 43.404 0.289L43.404 0.569L42.297 0.637L42.297 0.220Q41.880 0.637 41.254 0.637Q40.823 0.637 40.451 0.425Q40.078 0.214 39.858-0.147Q39.637-0.508 39.637-0.942M41.312 0.415Q41.521 0.415 41.707 0.343Q41.893 0.272 42.047 0.135Q42.201-0.002 42.297-0.180L42.297-1.789Q42.211-1.936 42.066-2.056Q41.921-2.176 41.751-2.235Q41.582-2.295 41.401-2.295Q40.841-2.295 40.572-1.906Q40.304-1.516 40.304-0.935Q40.304-0.364 40.538 0.026Q40.772 0.415 41.312 0.415M44.053-0.942Q44.053-1.280 44.194-1.571Q44.334-1.861 44.578-2.075Q44.822-2.288 45.127-2.403Q45.431-2.517 45.756-2.517Q46.026-2.517 46.289-2.418Q46.552-2.319 46.743-2.141L46.743-3.539Q46.743-3.809 46.636-3.871Q46.528-3.932 46.217-3.932L46.217-4.213L47.294-4.288L47.294-0.104Q47.294 0.084 47.348 0.167Q47.403 0.251 47.504 0.270Q47.605 0.289 47.820 0.289L47.820 0.569L46.713 0.637L46.713 0.220Q46.296 0.637 45.670 0.637Q45.239 0.637 44.867 0.425Q44.494 0.214 44.274-0.147Q44.053-0.508 44.053-0.942M45.728 0.415Q45.937 0.415 46.123 0.343Q46.309 0.272 46.463 0.135Q46.617-0.002 46.713-0.180L46.713-1.789Q46.627-1.936 46.482-2.056Q46.337-2.176 46.167-2.235Q45.998-2.295 45.817-2.295Q45.257-2.295 44.988-1.906Q44.720-1.516 44.720-0.935Q44.720-0.364 44.954 0.026Q45.188 0.415 45.728 0.415M50.219 0.569L48.483 0.569L48.483 0.289Q48.712 0.289 48.861 0.255Q49.009 0.220 49.009 0.080L49.009-1.769Q49.009-2.039 48.902-2.100Q48.794-2.162 48.483-2.162L48.483-2.442L49.512-2.517L49.512-1.810Q49.642-2.118 49.884-2.317Q50.127-2.517 50.445-2.517Q50.664-2.517 50.835-2.393Q51.006-2.268 51.006-2.056Q51.006-1.919 50.906-1.820Q50.807-1.721 50.674-1.721Q50.537-1.721 50.438-1.820Q50.339-1.919 50.339-2.056Q50.339-2.196 50.438-2.295Q50.148-2.295 49.948-2.099Q49.748-1.902 49.655-1.608Q49.563-1.314 49.563-1.034L49.563 0.080Q49.563 0.289 50.219 0.289L50.219 0.569M51.549-0.966Q51.549-1.287 51.674-1.576Q51.799-1.865 52.024-2.088Q52.250-2.312 52.545-2.432Q52.841-2.552 53.159-2.552Q53.487-2.552 53.748-2.452Q54.010-2.353 54.186-2.171Q54.362-1.988 54.456-1.730Q54.550-1.472 54.550-1.140Q54.550-1.048 54.468-1.027L52.212-1.027L52.212-0.966Q52.212-0.378 52.496 0.005Q52.779 0.388 53.347 0.388Q53.668 0.388 53.936 0.195Q54.205 0.002 54.294-0.313Q54.300-0.354 54.376-0.368L54.468-0.368Q54.550-0.344 54.550-0.272Q54.550-0.265 54.543-0.238Q54.430 0.159 54.060 0.398Q53.689 0.637 53.265 0.637Q52.827 0.637 52.427 0.429Q52.028 0.220 51.788-0.147Q51.549-0.514 51.549-0.966M52.219-1.236L54.034-1.236Q54.034-1.513 53.936-1.765Q53.839-2.018 53.641-2.174Q53.443-2.329 53.159-2.329Q52.882-2.329 52.668-2.171Q52.455-2.012 52.337-1.757Q52.219-1.502 52.219-1.236M55.138 0.562L55.138-0.501Q55.138-0.525 55.165-0.552Q55.193-0.579 55.216-0.579L55.326-0.579Q55.391-0.579 55.404-0.521Q55.500-0.087 55.746 0.164Q55.992 0.415 56.406 0.415Q56.748 0.415 57.001 0.282Q57.254 0.149 57.254-0.159Q57.254-0.316 57.160-0.431Q57.066-0.545 56.927-0.614Q56.789-0.682 56.621-0.720L56.040-0.819Q55.685-0.887 55.411-1.108Q55.138-1.328 55.138-1.670Q55.138-1.919 55.249-2.094Q55.360-2.268 55.546-2.367Q55.733-2.466 55.948-2.509Q56.163-2.552 56.406-2.552Q56.820-2.552 57.100-2.370L57.315-2.545Q57.325-2.548 57.332-2.550Q57.339-2.552 57.349-2.552L57.401-2.552Q57.428-2.552 57.452-2.528Q57.476-2.504 57.476-2.476L57.476-1.629Q57.476-1.608 57.452-1.581Q57.428-1.554 57.401-1.554L57.288-1.554Q57.260-1.554 57.235-1.579Q57.209-1.605 57.209-1.629Q57.209-1.865 57.103-2.029Q56.997-2.193 56.814-2.275Q56.632-2.357 56.399-2.357Q56.071-2.357 55.815-2.254Q55.558-2.152 55.558-1.875Q55.558-1.680 55.741-1.571Q55.924-1.461 56.153-1.420L56.727-1.314Q56.973-1.266 57.187-1.138Q57.401-1.010 57.537-0.807Q57.674-0.603 57.674-0.354Q57.674 0.159 57.308 0.398Q56.943 0.637 56.406 0.637Q55.910 0.637 55.579 0.343L55.312 0.617Q55.292 0.637 55.264 0.637L55.216 0.637Q55.193 0.637 55.165 0.610Q55.138 0.583 55.138 0.562M58.303 0.562L58.303-0.501Q58.303-0.525 58.330-0.552Q58.358-0.579 58.382-0.579L58.491-0.579Q58.556-0.579 58.570-0.521Q58.665-0.087 58.911 0.164Q59.157 0.415 59.571 0.415Q59.913 0.415 60.166 0.282Q60.419 0.149 60.419-0.159Q60.419-0.316 60.325-0.431Q60.231-0.545 60.092-0.614Q59.954-0.682 59.786-0.720L59.205-0.819Q58.850-0.887 58.576-1.108Q58.303-1.328 58.303-1.670Q58.303-1.919 58.414-2.094Q58.525-2.268 58.711-2.367Q58.898-2.466 59.113-2.509Q59.328-2.552 59.571-2.552Q59.985-2.552 60.265-2.370L60.480-2.545Q60.490-2.548 60.497-2.550Q60.504-2.552 60.514-2.552L60.566-2.552Q60.593-2.552 60.617-2.528Q60.641-2.504 60.641-2.476L60.641-1.629Q60.641-1.608 60.617-1.581Q60.593-1.554 60.566-1.554L60.453-1.554Q60.425-1.554 60.400-1.579Q60.374-1.605 60.374-1.629Q60.374-1.865 60.268-2.029Q60.162-2.193 59.979-2.275Q59.797-2.357 59.564-2.357Q59.236-2.357 58.980-2.254Q58.723-2.152 58.723-1.875Q58.723-1.680 58.906-1.571Q59.089-1.461 59.318-1.420L59.892-1.314Q60.138-1.266 60.352-1.138Q60.566-1.010 60.702-0.807Q60.839-0.603 60.839-0.354Q60.839 0.159 60.473 0.398Q60.108 0.637 59.571 0.637Q59.075 0.637 58.744 0.343L58.477 0.617Q58.457 0.637 58.429 0.637L58.382 0.637Q58.358 0.637 58.330 0.610Q58.303 0.583 58.303 0.562M61.427-0.966Q61.427-1.287 61.552-1.576Q61.676-1.865 61.902-2.088Q62.128-2.312 62.423-2.432Q62.719-2.552 63.037-2.552Q63.365-2.552 63.626-2.452Q63.888-2.353 64.064-2.171Q64.240-1.988 64.334-1.730Q64.428-1.472 64.428-1.140Q64.428-1.048 64.346-1.027L62.090-1.027L62.090-0.966Q62.090-0.378 62.374 0.005Q62.657 0.388 63.225 0.388Q63.546 0.388 63.814 0.195Q64.083 0.002 64.172-0.313Q64.178-0.354 64.254-0.368L64.346-0.368Q64.428-0.344 64.428-0.272Q64.428-0.265 64.421-0.238Q64.308 0.159 63.937 0.398Q63.567 0.637 63.143 0.637Q62.705 0.637 62.305 0.429Q61.905 0.220 61.666-0.147Q61.427-0.514 61.427-0.966M62.097-1.236L63.912-1.236Q63.912-1.513 63.814-1.765Q63.717-2.018 63.519-2.174Q63.320-2.329 63.037-2.329Q62.760-2.329 62.546-2.171Q62.333-2.012 62.215-1.757Q62.097-1.502 62.097-1.236M65.016 0.562L65.016-0.501Q65.016-0.525 65.043-0.552Q65.070-0.579 65.094-0.579L65.204-0.579Q65.269-0.579 65.282-0.521Q65.378-0.087 65.624 0.164Q65.870 0.415 66.284 0.415Q66.626 0.415 66.879 0.282Q67.132 0.149 67.132-0.159Q67.132-0.316 67.038-0.431Q66.944-0.545 66.805-0.614Q66.667-0.682 66.499-0.720L65.918-0.819Q65.563-0.887 65.289-1.108Q65.016-1.328 65.016-1.670Q65.016-1.919 65.127-2.094Q65.238-2.268 65.424-2.367Q65.611-2.466 65.826-2.509Q66.041-2.552 66.284-2.552Q66.697-2.552 66.978-2.370L67.193-2.545Q67.203-2.548 67.210-2.550Q67.217-2.552 67.227-2.552L67.279-2.552Q67.306-2.552 67.330-2.528Q67.354-2.504 67.354-2.476L67.354-1.629Q67.354-1.608 67.330-1.581Q67.306-1.554 67.279-1.554L67.166-1.554Q67.138-1.554 67.113-1.579Q67.087-1.605 67.087-1.629Q67.087-1.865 66.981-2.029Q66.875-2.193 66.692-2.275Q66.509-2.357 66.277-2.357Q65.949-2.357 65.693-2.254Q65.436-2.152 65.436-1.875Q65.436-1.680 65.619-1.571Q65.802-1.461 66.031-1.420L66.605-1.314Q66.851-1.266 67.065-1.138Q67.279-1.010 67.415-0.807Q67.552-0.603 67.552-0.354Q67.552 0.159 67.186 0.398Q66.820 0.637 66.284 0.637Q65.788 0.637 65.457 0.343L65.190 0.617Q65.170 0.637 65.142 0.637L65.094 0.637Q65.070 0.637 65.043 0.610Q65.016 0.583 65.016 0.562\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M107.622-44.955h-51.86\"\u002F>\u003Cpath stroke=\"none\" d=\"m53.762-44.955 3.2 1.6-1.2-1.6 1.2-1.6\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(100.272 -43.58)\">\u003Cpath d=\"M12.017 0.795Q12.017 0.750 12.044 0.695L15.452-3.885Q15.011-3.680 14.536-3.680Q13.948-3.680 13.381-3.967Q13.514-3.656 13.514-3.273Q13.514-2.958 13.401-2.630Q13.288-2.302 13.059-2.082Q12.830-1.861 12.506-1.861Q12.164-1.861 11.902-2.071Q11.641-2.282 11.506-2.610Q11.371-2.938 11.371-3.273Q11.371-3.604 11.506-3.932Q11.641-4.261 11.902-4.471Q12.164-4.681 12.506-4.681Q12.789-4.681 13.039-4.473Q13.360-4.199 13.738-4.052Q14.115-3.905 14.529-3.905Q14.966-3.905 15.356-4.086Q15.746-4.267 15.999-4.613Q16.057-4.681 16.139-4.681Q16.207-4.681 16.257-4.631Q16.306-4.582 16.306-4.514Q16.306-4.469 16.279-4.414L12.331 0.883Q12.277 0.962 12.191 0.962Q12.119 0.962 12.068 0.911Q12.017 0.860 12.017 0.795M12.506-2.083Q12.748-2.083 12.917-2.278Q13.087-2.473 13.167-2.755Q13.247-3.037 13.247-3.273Q13.247-3.440 13.203-3.650Q13.158-3.861 13.073-4.035Q12.987-4.209 12.840-4.332Q12.694-4.455 12.506-4.455Q12.150-4.455 12.024-4.085Q11.897-3.714 11.897-3.273Q11.897-2.828 12.024-2.456Q12.150-2.083 12.506-2.083M15.944 0.962Q15.602 0.962 15.341 0.750Q15.079 0.538 14.944 0.210Q14.809-0.118 14.809-0.453Q14.809-0.785 14.944-1.111Q15.079-1.437 15.341-1.649Q15.602-1.861 15.944-1.861Q16.265-1.861 16.494-1.641Q16.723-1.420 16.838-1.092Q16.952-0.764 16.952-0.453Q16.952-0.139 16.838 0.191Q16.723 0.521 16.494 0.742Q16.265 0.962 15.944 0.962M15.944 0.736Q16.187 0.736 16.358 0.540Q16.528 0.343 16.607 0.065Q16.686-0.214 16.686-0.453Q16.686-0.620 16.641-0.831Q16.597-1.041 16.511-1.215Q16.426-1.389 16.279-1.513Q16.132-1.636 15.944-1.636Q15.589-1.636 15.462-1.265Q15.336-0.894 15.336-0.453Q15.336-0.009 15.462 0.364Q15.589 0.736 15.944 0.736M19.512 0.569L17.776 0.569L17.776 0.289Q18.005 0.289 18.154 0.255Q18.302 0.220 18.302 0.080L18.302-1.769Q18.302-2.039 18.195-2.100Q18.087-2.162 17.776-2.162L17.776-2.442L18.805-2.517L18.805-1.810Q18.935-2.118 19.177-2.317Q19.420-2.517 19.738-2.517Q19.957-2.517 20.128-2.393Q20.299-2.268 20.299-2.056Q20.299-1.919 20.199-1.820Q20.100-1.721 19.967-1.721Q19.830-1.721 19.731-1.820Q19.632-1.919 19.632-2.056Q19.632-2.196 19.731-2.295Q19.441-2.295 19.241-2.099Q19.041-1.902 18.948-1.608Q18.856-1.314 18.856-1.034L18.856 0.080Q18.856 0.289 19.512 0.289L19.512 0.569M20.883 0.562L20.883-0.501Q20.883-0.525 20.910-0.552Q20.938-0.579 20.962-0.579L21.071-0.579Q21.136-0.579 21.150-0.521Q21.245-0.087 21.491 0.164Q21.737 0.415 22.151 0.415Q22.493 0.415 22.746 0.282Q22.999 0.149 22.999-0.159Q22.999-0.316 22.905-0.431Q22.811-0.545 22.672-0.614Q22.534-0.682 22.366-0.720L21.785-0.819Q21.430-0.887 21.156-1.108Q20.883-1.328 20.883-1.670Q20.883-1.919 20.994-2.094Q21.105-2.268 21.291-2.367Q21.478-2.466 21.693-2.509Q21.908-2.552 22.151-2.552Q22.565-2.552 22.845-2.370L23.060-2.545Q23.070-2.548 23.077-2.550Q23.084-2.552 23.094-2.552L23.146-2.552Q23.173-2.552 23.197-2.528Q23.221-2.504 23.221-2.476L23.221-1.629Q23.221-1.608 23.197-1.581Q23.173-1.554 23.146-1.554L23.033-1.554Q23.006-1.554 22.980-1.579Q22.954-1.605 22.954-1.629Q22.954-1.865 22.848-2.029Q22.742-2.193 22.559-2.275Q22.377-2.357 22.144-2.357Q21.816-2.357 21.560-2.254Q21.303-2.152 21.303-1.875Q21.303-1.680 21.486-1.571Q21.669-1.461 21.898-1.420L22.472-1.314Q22.718-1.266 22.932-1.138Q23.146-1.010 23.282-0.807Q23.419-0.603 23.419-0.354Q23.419 0.159 23.053 0.398Q22.688 0.637 22.151 0.637Q21.655 0.637 21.324 0.343L21.057 0.617Q21.037 0.637 21.009 0.637L20.962 0.637Q20.938 0.637 20.910 0.610Q20.883 0.583 20.883 0.562M25.692 1.926L24.062 1.926L24.062 1.646Q24.291 1.646 24.439 1.611Q24.588 1.577 24.588 1.437L24.588-1.909Q24.588-2.080 24.451-2.121Q24.315-2.162 24.062-2.162L24.062-2.442L25.142-2.517L25.142-2.111Q25.364-2.312 25.651-2.415Q25.938-2.517 26.246-2.517Q26.673-2.517 27.037-2.304Q27.401-2.090 27.615-1.726Q27.828-1.362 27.828-0.942Q27.828-0.497 27.589-0.133Q27.350 0.231 26.957 0.434Q26.564 0.637 26.119 0.637Q25.853 0.637 25.605 0.537Q25.357 0.436 25.169 0.255L25.169 1.437Q25.169 1.574 25.318 1.610Q25.466 1.646 25.692 1.646L25.692 1.926M25.169-1.762L25.169-0.152Q25.302 0.101 25.545 0.258Q25.788 0.415 26.065 0.415Q26.393 0.415 26.646 0.214Q26.899 0.012 27.032-0.306Q27.165-0.624 27.165-0.942Q27.165-1.171 27.100-1.400Q27.035-1.629 26.907-1.827Q26.779-2.025 26.584-2.145Q26.389-2.264 26.157-2.264Q25.863-2.264 25.595-2.135Q25.326-2.005 25.169-1.762\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 -43.58)\">\u003Cpath d=\"M31.977 0.569L31.710 0.569L31.710-3.539Q31.710-3.809 31.603-3.871Q31.495-3.932 31.184-3.932L31.184-4.213L32.264-4.288L32.264-2.118Q32.473-2.309 32.758-2.413Q33.044-2.517 33.341-2.517Q33.659-2.517 33.956-2.396Q34.253-2.275 34.476-2.059Q34.698-1.844 34.824-1.559Q34.951-1.273 34.951-0.942Q34.951-0.497 34.711-0.133Q34.472 0.231 34.079 0.434Q33.686 0.637 33.242 0.637Q33.047 0.637 32.857 0.581Q32.668 0.525 32.507 0.420Q32.346 0.316 32.206 0.155L31.977 0.569M32.292-1.776L32.292-0.159Q32.428 0.101 32.669 0.258Q32.910 0.415 33.187 0.415Q33.481 0.415 33.693 0.308Q33.905 0.200 34.038 0.008Q34.171-0.183 34.230-0.422Q34.288-0.661 34.288-0.942Q34.288-1.301 34.194-1.605Q34.100-1.909 33.872-2.102Q33.645-2.295 33.279-2.295Q32.979-2.295 32.712-2.159Q32.445-2.022 32.292-1.776\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 -43.58)\">\u003Cpath d=\"M35.761-0.966Q35.761-1.287 35.886-1.576Q36.011-1.865 36.237-2.088Q36.462-2.312 36.758-2.432Q37.053-2.552 37.371-2.552Q37.699-2.552 37.961-2.452Q38.222-2.353 38.398-2.171Q38.574-1.988 38.668-1.730Q38.762-1.472 38.762-1.140Q38.762-1.048 38.680-1.027L36.425-1.027L36.425-0.966Q36.425-0.378 36.708 0.005Q36.992 0.388 37.559 0.388Q37.881 0.388 38.149 0.195Q38.417 0.002 38.506-0.313Q38.513-0.354 38.588-0.368L38.680-0.368Q38.762-0.344 38.762-0.272Q38.762-0.265 38.756-0.238Q38.643 0.159 38.272 0.398Q37.901 0.637 37.477 0.637Q37.040 0.637 36.640 0.429Q36.240 0.220 36.001-0.147Q35.761-0.514 35.761-0.966M36.431-1.236L38.246-1.236Q38.246-1.513 38.149-1.765Q38.051-2.018 37.853-2.174Q37.655-2.329 37.371-2.329Q37.094-2.329 36.881-2.171Q36.667-2.012 36.549-1.757Q36.431-1.502 36.431-1.236M41.148 0.569L39.415 0.569L39.415 0.289Q39.641 0.289 39.790 0.255Q39.938 0.220 39.938 0.080L39.938-2.169L39.350-2.169L39.350-2.449L39.938-2.449L39.938-3.266Q39.938-3.584 40.116-3.832Q40.294-4.079 40.584-4.220Q40.875-4.360 41.186-4.360Q41.442-4.360 41.645-4.218Q41.849-4.076 41.849-3.833Q41.849-3.697 41.750-3.598Q41.651-3.498 41.514-3.498Q41.377-3.498 41.278-3.598Q41.179-3.697 41.179-3.833Q41.179-4.014 41.319-4.107Q41.240-4.134 41.141-4.134Q40.933-4.134 40.779-4.001Q40.625-3.868 40.545-3.664Q40.465-3.461 40.465-3.252L40.465-2.449L41.353-2.449L41.353-2.169L40.492-2.169L40.492 0.080Q40.492 0.289 41.148 0.289L41.148 0.569M41.787-0.914Q41.787-1.256 41.922-1.555Q42.057-1.854 42.297-2.078Q42.536-2.302 42.854-2.427Q43.172-2.552 43.503-2.552Q43.947-2.552 44.347-2.336Q44.747-2.121 44.981-1.743Q45.216-1.366 45.216-0.914Q45.216-0.573 45.074-0.289Q44.932-0.005 44.687 0.202Q44.443 0.408 44.134 0.523Q43.824 0.637 43.503 0.637Q43.072 0.637 42.671 0.436Q42.269 0.234 42.028-0.118Q41.787-0.470 41.787-0.914M43.503 0.388Q44.105 0.388 44.329 0.010Q44.552-0.368 44.552-1Q44.552-1.612 44.318-1.971Q44.084-2.329 43.503-2.329Q42.450-2.329 42.450-1Q42.450-0.368 42.676 0.010Q42.902 0.388 43.503 0.388M47.560 0.569L45.824 0.569L45.824 0.289Q46.053 0.289 46.202 0.255Q46.350 0.220 46.350 0.080L46.350-1.769Q46.350-2.039 46.243-2.100Q46.135-2.162 45.824-2.162L45.824-2.442L46.853-2.517L46.853-1.810Q46.983-2.118 47.225-2.317Q47.468-2.517 47.786-2.517Q48.005-2.517 48.175-2.393Q48.346-2.268 48.346-2.056Q48.346-1.919 48.247-1.820Q48.148-1.721 48.015-1.721Q47.878-1.721 47.779-1.820Q47.680-1.919 47.680-2.056Q47.680-2.196 47.779-2.295Q47.488-2.295 47.289-2.099Q47.089-1.902 46.996-1.608Q46.904-1.314 46.904-1.034L46.904 0.080Q46.904 0.289 47.560 0.289L47.560 0.569M48.890-0.966Q48.890-1.287 49.015-1.576Q49.139-1.865 49.365-2.088Q49.591-2.312 49.886-2.432Q50.182-2.552 50.500-2.552Q50.828-2.552 51.089-2.452Q51.351-2.353 51.527-2.171Q51.703-1.988 51.797-1.730Q51.891-1.472 51.891-1.140Q51.891-1.048 51.809-1.027L49.553-1.027L49.553-0.966Q49.553-0.378 49.837 0.005Q50.120 0.388 50.688 0.388Q51.009 0.388 51.277 0.195Q51.546 0.002 51.634-0.313Q51.641-0.354 51.717-0.368L51.809-0.368Q51.891-0.344 51.891-0.272Q51.891-0.265 51.884-0.238Q51.771 0.159 51.400 0.398Q51.030 0.637 50.606 0.637Q50.168 0.637 49.768 0.429Q49.368 0.220 49.129-0.147Q48.890-0.514 48.890-0.966M49.560-1.236L51.375-1.236Q51.375-1.513 51.277-1.765Q51.180-2.018 50.982-2.174Q50.783-2.329 50.500-2.329Q50.223-2.329 50.009-2.171Q49.796-2.012 49.678-1.757Q49.560-1.502 49.560-1.236\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 -43.58)\">\u003Cpath d=\"M55.198-0.942Q55.198-1.270 55.333-1.571Q55.468-1.871 55.704-2.092Q55.940-2.312 56.244-2.432Q56.549-2.552 56.873-2.552Q57.379-2.552 57.728-2.449Q58.076-2.347 58.076-1.971Q58.076-1.824 57.979-1.723Q57.882-1.622 57.735-1.622Q57.581-1.622 57.482-1.721Q57.383-1.820 57.383-1.971Q57.383-2.159 57.523-2.251Q57.321-2.302 56.880-2.302Q56.525-2.302 56.296-2.106Q56.067-1.909 55.966-1.600Q55.865-1.290 55.865-0.942Q55.865-0.593 55.991-0.287Q56.118 0.019 56.373 0.203Q56.627 0.388 56.983 0.388Q57.205 0.388 57.389 0.304Q57.574 0.220 57.709 0.065Q57.844-0.091 57.902-0.299Q57.916-0.354 57.970-0.354L58.083-0.354Q58.114-0.354 58.136-0.330Q58.158-0.306 58.158-0.272L58.158-0.251Q58.073 0.036 57.885 0.234Q57.697 0.432 57.432 0.535Q57.167 0.637 56.873 0.637Q56.443 0.637 56.055 0.431Q55.667 0.224 55.433-0.139Q55.198-0.501 55.198-0.942M58.804-0.159Q58.804-0.491 59.028-0.718Q59.252-0.945 59.596-1.073Q59.939-1.202 60.312-1.254Q60.684-1.307 60.988-1.307L60.988-1.560Q60.988-1.765 60.881-1.945Q60.773-2.124 60.592-2.227Q60.411-2.329 60.202-2.329Q59.796-2.329 59.560-2.237Q59.649-2.200 59.695-2.116Q59.741-2.032 59.741-1.930Q59.741-1.834 59.695-1.755Q59.649-1.677 59.568-1.632Q59.488-1.588 59.399-1.588Q59.249-1.588 59.148-1.685Q59.047-1.783 59.047-1.930Q59.047-2.552 60.202-2.552Q60.414-2.552 60.664-2.488Q60.913-2.425 61.115-2.306Q61.317-2.186 61.443-2.001Q61.570-1.817 61.570-1.574L61.570 0.002Q61.570 0.118 61.631 0.214Q61.693 0.309 61.805 0.309Q61.915 0.309 61.980 0.215Q62.045 0.121 62.045 0.002L62.045-0.446L62.311-0.446L62.311 0.002Q62.311 0.272 62.084 0.437Q61.857 0.603 61.576 0.603Q61.368 0.603 61.231 0.449Q61.094 0.296 61.071 0.080Q60.924 0.347 60.642 0.492Q60.360 0.637 60.035 0.637Q59.758 0.637 59.474 0.562Q59.191 0.487 58.998 0.308Q58.804 0.128 58.804-0.159M59.420-0.159Q59.420 0.015 59.520 0.145Q59.621 0.275 59.777 0.345Q59.932 0.415 60.096 0.415Q60.315 0.415 60.524 0.318Q60.732 0.220 60.860 0.039Q60.988-0.142 60.988-0.368L60.988-1.096Q60.664-1.096 60.298-1.005Q59.932-0.914 59.676-0.702Q59.420-0.491 59.420-0.159M64.396 0.569L62.793 0.569L62.793 0.289Q63.019 0.289 63.167 0.255Q63.316 0.220 63.316 0.080L63.316-3.539Q63.316-3.809 63.208-3.871Q63.101-3.932 62.793-3.932L62.793-4.213L63.870-4.288L63.870 0.080Q63.870 0.217 64.020 0.253Q64.171 0.289 64.396 0.289L64.396 0.569M66.659 0.569L65.056 0.569L65.056 0.289Q65.281 0.289 65.430 0.255Q65.579 0.220 65.579 0.080L65.579-3.539Q65.579-3.809 65.471-3.871Q65.363-3.932 65.056-3.932L65.056-4.213L66.133-4.288L66.133 0.080Q66.133 0.217 66.283 0.253Q66.433 0.289 66.659 0.289L66.659 0.569M67.753 1.799Q67.753 1.765 67.780 1.738Q68.050 1.509 68.199 1.186Q68.347 0.863 68.347 0.507L68.347 0.470Q68.238 0.569 68.074 0.569Q67.893 0.569 67.773 0.449Q67.654 0.330 67.654 0.149Q67.654-0.026 67.773-0.145Q67.893-0.265 68.074-0.265Q68.330-0.265 68.450-0.026Q68.570 0.214 68.570 0.507Q68.570 0.907 68.400 1.278Q68.231 1.649 67.934 1.905Q67.903 1.926 67.876 1.926Q67.835 1.926 67.794 1.885Q67.753 1.844 67.753 1.799\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 -43.58)\">\u003Cpath d=\"M72.285-0.159Q72.285-0.491 72.508-0.718Q72.732-0.945 73.076-1.073Q73.419-1.202 73.792-1.254Q74.164-1.307 74.469-1.307L74.469-1.560Q74.469-1.765 74.361-1.945Q74.253-2.124 74.072-2.227Q73.891-2.329 73.683-2.329Q73.276-2.329 73.040-2.237Q73.129-2.200 73.175-2.116Q73.221-2.032 73.221-1.930Q73.221-1.834 73.175-1.755Q73.129-1.677 73.048-1.632Q72.968-1.588 72.879-1.588Q72.729-1.588 72.628-1.685Q72.527-1.783 72.527-1.930Q72.527-2.552 73.683-2.552Q73.894-2.552 74.144-2.488Q74.393-2.425 74.595-2.306Q74.797-2.186 74.923-2.001Q75.050-1.817 75.050-1.574L75.050 0.002Q75.050 0.118 75.111 0.214Q75.173 0.309 75.286 0.309Q75.395 0.309 75.460 0.215Q75.525 0.121 75.525 0.002L75.525-0.446L75.791-0.446L75.791 0.002Q75.791 0.272 75.564 0.437Q75.337 0.603 75.057 0.603Q74.848 0.603 74.711 0.449Q74.575 0.296 74.551 0.080Q74.404 0.347 74.122 0.492Q73.840 0.637 73.515 0.637Q73.238 0.637 72.954 0.562Q72.671 0.487 72.478 0.308Q72.285 0.128 72.285-0.159M72.900-0.159Q72.900 0.015 73.001 0.145Q73.101 0.275 73.257 0.345Q73.412 0.415 73.577 0.415Q73.795 0.415 74.004 0.318Q74.212 0.220 74.340 0.039Q74.469-0.142 74.469-0.368L74.469-1.096Q74.144-1.096 73.778-1.005Q73.412-0.914 73.156-0.702Q72.900-0.491 72.900-0.159M78.006 0.569L76.273 0.569L76.273 0.289Q76.499 0.289 76.648 0.255Q76.796 0.220 76.796 0.080L76.796-2.169L76.208-2.169L76.208-2.449L76.796-2.449L76.796-3.266Q76.796-3.584 76.974-3.832Q77.152-4.079 77.442-4.220Q77.733-4.360 78.044-4.360Q78.300-4.360 78.504-4.218Q78.707-4.076 78.707-3.833Q78.707-3.697 78.608-3.598Q78.509-3.498 78.372-3.498Q78.235-3.498 78.136-3.598Q78.037-3.697 78.037-3.833Q78.037-4.014 78.177-4.107Q78.099-4.134 77.999-4.134Q77.791-4.134 77.637-4.001Q77.483-3.868 77.403-3.664Q77.323-3.461 77.323-3.252L77.323-2.449L78.211-2.449L78.211-2.169L77.350-2.169L77.350 0.080Q77.350 0.289 78.006 0.289L78.006 0.569M79.213-0.272L79.213-2.169L78.574-2.169L78.574-2.391Q78.891-2.391 79.109-2.601Q79.326-2.811 79.426-3.121Q79.527-3.430 79.527-3.738L79.794-3.738L79.794-2.449L80.870-2.449L80.870-2.169L79.794-2.169L79.794-0.285Q79.794-0.009 79.898 0.190Q80.002 0.388 80.262 0.388Q80.419 0.388 80.525 0.284Q80.631 0.179 80.681 0.026Q80.730-0.128 80.730-0.285L80.730-0.699L80.997-0.699L80.997-0.272Q80.997-0.046 80.898 0.164Q80.799 0.374 80.614 0.506Q80.430 0.637 80.201 0.637Q79.763 0.637 79.488 0.400Q79.213 0.162 79.213-0.272M81.766-0.966Q81.766-1.287 81.891-1.576Q82.016-1.865 82.241-2.088Q82.467-2.312 82.762-2.432Q83.058-2.552 83.376-2.552Q83.704-2.552 83.965-2.452Q84.227-2.353 84.403-2.171Q84.579-1.988 84.673-1.730Q84.767-1.472 84.767-1.140Q84.767-1.048 84.685-1.027L82.429-1.027L82.429-0.966Q82.429-0.378 82.713 0.005Q82.996 0.388 83.564 0.388Q83.885 0.388 84.153 0.195Q84.422 0.002 84.511-0.313Q84.517-0.354 84.593-0.368L84.685-0.368Q84.767-0.344 84.767-0.272Q84.767-0.265 84.760-0.238Q84.647 0.159 84.277 0.398Q83.906 0.637 83.482 0.637Q83.044 0.637 82.644 0.429Q82.245 0.220 82.005-0.147Q81.766-0.514 81.766-0.966M82.436-1.236L84.251-1.236Q84.251-1.513 84.153-1.765Q84.056-2.018 83.858-2.174Q83.660-2.329 83.376-2.329Q83.099-2.329 82.885-2.171Q82.672-2.012 82.554-1.757Q82.436-1.502 82.436-1.236M87.105 0.569L85.369 0.569L85.369 0.289Q85.598 0.289 85.746 0.255Q85.895 0.220 85.895 0.080L85.895-1.769Q85.895-2.039 85.787-2.100Q85.680-2.162 85.369-2.162L85.369-2.442L86.397-2.517L86.397-1.810Q86.527-2.118 86.770-2.317Q87.013-2.517 87.330-2.517Q87.549-2.517 87.720-2.393Q87.891-2.268 87.891-2.056Q87.891-1.919 87.792-1.820Q87.693-1.721 87.559-1.721Q87.423-1.721 87.324-1.820Q87.225-1.919 87.225-2.056Q87.225-2.196 87.324-2.295Q87.033-2.295 86.833-2.099Q86.633-1.902 86.541-1.608Q86.449-1.314 86.449-1.034L86.449 0.080Q86.449 0.289 87.105 0.289\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 -43.58)\">\u003Cpath d=\"M92.941 0.569L91.205 0.569L91.205 0.289Q91.434 0.289 91.583 0.255Q91.731 0.220 91.731 0.080L91.731-1.769Q91.731-2.039 91.624-2.100Q91.516-2.162 91.205-2.162L91.205-2.442L92.234-2.517L92.234-1.810Q92.364-2.118 92.606-2.317Q92.849-2.517 93.167-2.517Q93.386-2.517 93.557-2.393Q93.728-2.268 93.728-2.056Q93.728-1.919 93.628-1.820Q93.529-1.721 93.396-1.721Q93.259-1.721 93.160-1.820Q93.061-1.919 93.061-2.056Q93.061-2.196 93.160-2.295Q92.870-2.295 92.670-2.099Q92.470-1.902 92.377-1.608Q92.285-1.314 92.285-1.034L92.285 0.080Q92.285 0.289 92.941 0.289L92.941 0.569M94.271-0.966Q94.271-1.287 94.396-1.576Q94.521-1.865 94.746-2.088Q94.972-2.312 95.267-2.432Q95.563-2.552 95.881-2.552Q96.209-2.552 96.471-2.452Q96.732-2.353 96.908-2.171Q97.084-1.988 97.178-1.730Q97.272-1.472 97.272-1.140Q97.272-1.048 97.190-1.027L94.934-1.027L94.934-0.966Q94.934-0.378 95.218 0.005Q95.502 0.388 96.069 0.388Q96.390 0.388 96.658 0.195Q96.927 0.002 97.016-0.313Q97.023-0.354 97.098-0.368L97.190-0.368Q97.272-0.344 97.272-0.272Q97.272-0.265 97.265-0.238Q97.152 0.159 96.782 0.398Q96.411 0.637 95.987 0.637Q95.549 0.637 95.149 0.429Q94.750 0.220 94.510-0.147Q94.271-0.514 94.271-0.966M94.941-1.236L96.756-1.236Q96.756-1.513 96.658-1.765Q96.561-2.018 96.363-2.174Q96.165-2.329 95.881-2.329Q95.604-2.329 95.390-2.171Q95.177-2.012 95.059-1.757Q94.941-1.502 94.941-1.236M98.386-0.272L98.386-2.169L97.747-2.169L97.747-2.391Q98.065-2.391 98.282-2.601Q98.499-2.811 98.600-3.121Q98.701-3.430 98.701-3.738L98.967-3.738L98.967-2.449L100.044-2.449L100.044-2.169L98.967-2.169L98.967-0.285Q98.967-0.009 99.072 0.190Q99.176 0.388 99.436 0.388Q99.593 0.388 99.699 0.284Q99.805 0.179 99.854 0.026Q99.904-0.128 99.904-0.285L99.904-0.699L100.170-0.699L100.170-0.272Q100.170-0.046 100.071 0.164Q99.972 0.374 99.788 0.506Q99.603 0.637 99.374 0.637Q98.937 0.637 98.661 0.400Q98.386 0.162 98.386-0.272\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M107.622-22.193h-51.86\"\u002F>\u003Cpath stroke=\"none\" d=\"m53.762-22.193 3.2 1.6-1.2-1.6 1.2-1.6\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(100.272 -21.012)\">\u003Cpath d=\"M12.017 0.795Q12.017 0.750 12.044 0.695L15.452-3.885Q15.011-3.680 14.536-3.680Q13.948-3.680 13.381-3.967Q13.514-3.656 13.514-3.273Q13.514-2.958 13.401-2.630Q13.288-2.302 13.059-2.082Q12.830-1.861 12.506-1.861Q12.164-1.861 11.902-2.071Q11.641-2.282 11.506-2.610Q11.371-2.938 11.371-3.273Q11.371-3.604 11.506-3.932Q11.641-4.261 11.902-4.471Q12.164-4.681 12.506-4.681Q12.789-4.681 13.039-4.473Q13.360-4.199 13.738-4.052Q14.115-3.905 14.529-3.905Q14.966-3.905 15.356-4.086Q15.746-4.267 15.999-4.613Q16.057-4.681 16.139-4.681Q16.207-4.681 16.257-4.631Q16.306-4.582 16.306-4.514Q16.306-4.469 16.279-4.414L12.331 0.883Q12.277 0.962 12.191 0.962Q12.119 0.962 12.068 0.911Q12.017 0.860 12.017 0.795M12.506-2.083Q12.748-2.083 12.917-2.278Q13.087-2.473 13.167-2.755Q13.247-3.037 13.247-3.273Q13.247-3.440 13.203-3.650Q13.158-3.861 13.073-4.035Q12.987-4.209 12.840-4.332Q12.694-4.455 12.506-4.455Q12.150-4.455 12.024-4.085Q11.897-3.714 11.897-3.273Q11.897-2.828 12.024-2.456Q12.150-2.083 12.506-2.083M15.944 0.962Q15.602 0.962 15.341 0.750Q15.079 0.538 14.944 0.210Q14.809-0.118 14.809-0.453Q14.809-0.785 14.944-1.111Q15.079-1.437 15.341-1.649Q15.602-1.861 15.944-1.861Q16.265-1.861 16.494-1.641Q16.723-1.420 16.838-1.092Q16.952-0.764 16.952-0.453Q16.952-0.139 16.838 0.191Q16.723 0.521 16.494 0.742Q16.265 0.962 15.944 0.962M15.944 0.736Q16.187 0.736 16.358 0.540Q16.528 0.343 16.607 0.065Q16.686-0.214 16.686-0.453Q16.686-0.620 16.641-0.831Q16.597-1.041 16.511-1.215Q16.426-1.389 16.279-1.513Q16.132-1.636 15.944-1.636Q15.589-1.636 15.462-1.265Q15.336-0.894 15.336-0.453Q15.336-0.009 15.462 0.364Q15.589 0.736 15.944 0.736M19.512 0.569L17.776 0.569L17.776 0.289Q18.005 0.289 18.154 0.255Q18.302 0.220 18.302 0.080L18.302-1.769Q18.302-2.039 18.195-2.100Q18.087-2.162 17.776-2.162L17.776-2.442L18.805-2.517L18.805-1.810Q18.935-2.118 19.177-2.317Q19.420-2.517 19.738-2.517Q19.957-2.517 20.128-2.393Q20.299-2.268 20.299-2.056Q20.299-1.919 20.199-1.820Q20.100-1.721 19.967-1.721Q19.830-1.721 19.731-1.820Q19.632-1.919 19.632-2.056Q19.632-2.196 19.731-2.295Q19.441-2.295 19.241-2.099Q19.041-1.902 18.948-1.608Q18.856-1.314 18.856-1.034L18.856 0.080Q18.856 0.289 19.512 0.289L19.512 0.569M20.883 0.562L20.883-0.501Q20.883-0.525 20.910-0.552Q20.938-0.579 20.962-0.579L21.071-0.579Q21.136-0.579 21.150-0.521Q21.245-0.087 21.491 0.164Q21.737 0.415 22.151 0.415Q22.493 0.415 22.746 0.282Q22.999 0.149 22.999-0.159Q22.999-0.316 22.905-0.431Q22.811-0.545 22.672-0.614Q22.534-0.682 22.366-0.720L21.785-0.819Q21.430-0.887 21.156-1.108Q20.883-1.328 20.883-1.670Q20.883-1.919 20.994-2.094Q21.105-2.268 21.291-2.367Q21.478-2.466 21.693-2.509Q21.908-2.552 22.151-2.552Q22.565-2.552 22.845-2.370L23.060-2.545Q23.070-2.548 23.077-2.550Q23.084-2.552 23.094-2.552L23.146-2.552Q23.173-2.552 23.197-2.528Q23.221-2.504 23.221-2.476L23.221-1.629Q23.221-1.608 23.197-1.581Q23.173-1.554 23.146-1.554L23.033-1.554Q23.006-1.554 22.980-1.579Q22.954-1.605 22.954-1.629Q22.954-1.865 22.848-2.029Q22.742-2.193 22.559-2.275Q22.377-2.357 22.144-2.357Q21.816-2.357 21.560-2.254Q21.303-2.152 21.303-1.875Q21.303-1.680 21.486-1.571Q21.669-1.461 21.898-1.420L22.472-1.314Q22.718-1.266 22.932-1.138Q23.146-1.010 23.282-0.807Q23.419-0.603 23.419-0.354Q23.419 0.159 23.053 0.398Q22.688 0.637 22.151 0.637Q21.655 0.637 21.324 0.343L21.057 0.617Q21.037 0.637 21.009 0.637L20.962 0.637Q20.938 0.637 20.910 0.610Q20.883 0.583 20.883 0.562M25.692 1.926L24.062 1.926L24.062 1.646Q24.291 1.646 24.439 1.611Q24.588 1.577 24.588 1.437L24.588-1.909Q24.588-2.080 24.451-2.121Q24.315-2.162 24.062-2.162L24.062-2.442L25.142-2.517L25.142-2.111Q25.364-2.312 25.651-2.415Q25.938-2.517 26.246-2.517Q26.673-2.517 27.037-2.304Q27.401-2.090 27.615-1.726Q27.828-1.362 27.828-0.942Q27.828-0.497 27.589-0.133Q27.350 0.231 26.957 0.434Q26.564 0.637 26.119 0.637Q25.853 0.637 25.605 0.537Q25.357 0.436 25.169 0.255L25.169 1.437Q25.169 1.574 25.318 1.610Q25.466 1.646 25.692 1.646L25.692 1.926M25.169-1.762L25.169-0.152Q25.302 0.101 25.545 0.258Q25.788 0.415 26.065 0.415Q26.393 0.415 26.646 0.214Q26.899 0.012 27.032-0.306Q27.165-0.624 27.165-0.942Q27.165-1.171 27.100-1.400Q27.035-1.629 26.907-1.827Q26.779-2.025 26.584-2.145Q26.389-2.264 26.157-2.264Q25.863-2.264 25.595-2.135Q25.326-2.005 25.169-1.762\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 -21.012)\">\u003Cpath d=\"M31.229-0.159Q31.229-0.491 31.452-0.718Q31.676-0.945 32.020-1.073Q32.363-1.202 32.736-1.254Q33.108-1.307 33.413-1.307L33.413-1.560Q33.413-1.765 33.305-1.945Q33.197-2.124 33.016-2.227Q32.835-2.329 32.627-2.329Q32.220-2.329 31.984-2.237Q32.073-2.200 32.119-2.116Q32.165-2.032 32.165-1.930Q32.165-1.834 32.119-1.755Q32.073-1.677 31.992-1.632Q31.912-1.588 31.823-1.588Q31.673-1.588 31.572-1.685Q31.471-1.783 31.471-1.930Q31.471-2.552 32.627-2.552Q32.838-2.552 33.088-2.488Q33.337-2.425 33.539-2.306Q33.741-2.186 33.867-2.001Q33.994-1.817 33.994-1.574L33.994 0.002Q33.994 0.118 34.055 0.214Q34.117 0.309 34.230 0.309Q34.339 0.309 34.404 0.215Q34.469 0.121 34.469 0.002L34.469-0.446L34.735-0.446L34.735 0.002Q34.735 0.272 34.508 0.437Q34.281 0.603 34.001 0.603Q33.792 0.603 33.655 0.449Q33.519 0.296 33.495 0.080Q33.348 0.347 33.066 0.492Q32.784 0.637 32.459 0.637Q32.182 0.637 31.898 0.562Q31.615 0.487 31.422 0.308Q31.229 0.128 31.229-0.159M31.844-0.159Q31.844 0.015 31.945 0.145Q32.045 0.275 32.201 0.345Q32.356 0.415 32.521 0.415Q32.739 0.415 32.948 0.318Q33.156 0.220 33.284 0.039Q33.413-0.142 33.413-0.368L33.413-1.096Q33.088-1.096 32.722-1.005Q32.356-0.914 32.100-0.702Q31.844-0.491 31.844-0.159M36.950 0.569L35.217 0.569L35.217 0.289Q35.443 0.289 35.592 0.255Q35.740 0.220 35.740 0.080L35.740-2.169L35.152-2.169L35.152-2.449L35.740-2.449L35.740-3.266Q35.740-3.584 35.918-3.832Q36.096-4.079 36.386-4.220Q36.677-4.360 36.988-4.360Q37.244-4.360 37.448-4.218Q37.651-4.076 37.651-3.833Q37.651-3.697 37.552-3.598Q37.453-3.498 37.316-3.498Q37.179-3.498 37.080-3.598Q36.981-3.697 36.981-3.833Q36.981-4.014 37.121-4.107Q37.043-4.134 36.943-4.134Q36.735-4.134 36.581-4.001Q36.427-3.868 36.347-3.664Q36.267-3.461 36.267-3.252L36.267-2.449L37.155-2.449L37.155-2.169L36.294-2.169L36.294 0.080Q36.294 0.289 36.950 0.289L36.950 0.569M38.157-0.272L38.157-2.169L37.518-2.169L37.518-2.391Q37.835-2.391 38.053-2.601Q38.270-2.811 38.370-3.121Q38.471-3.430 38.471-3.738L38.738-3.738L38.738-2.449L39.814-2.449L39.814-2.169L38.738-2.169L38.738-0.285Q38.738-0.009 38.842 0.190Q38.946 0.388 39.206 0.388Q39.363 0.388 39.469 0.284Q39.575 0.179 39.625 0.026Q39.674-0.128 39.674-0.285L39.674-0.699L39.941-0.699L39.941-0.272Q39.941-0.046 39.842 0.164Q39.743 0.374 39.558 0.506Q39.374 0.637 39.145 0.637Q38.707 0.637 38.432 0.400Q38.157 0.162 38.157-0.272M40.710-0.966Q40.710-1.287 40.835-1.576Q40.960-1.865 41.185-2.088Q41.411-2.312 41.706-2.432Q42.002-2.552 42.320-2.552Q42.648-2.552 42.909-2.452Q43.171-2.353 43.347-2.171Q43.523-1.988 43.617-1.730Q43.711-1.472 43.711-1.140Q43.711-1.048 43.629-1.027L41.373-1.027L41.373-0.966Q41.373-0.378 41.657 0.005Q41.940 0.388 42.508 0.388Q42.829 0.388 43.097 0.195Q43.366 0.002 43.455-0.313Q43.461-0.354 43.537-0.368L43.629-0.368Q43.711-0.344 43.711-0.272Q43.711-0.265 43.704-0.238Q43.591 0.159 43.221 0.398Q42.850 0.637 42.426 0.637Q41.988 0.637 41.588 0.429Q41.189 0.220 40.949-0.147Q40.710-0.514 40.710-0.966M41.380-1.236L43.195-1.236Q43.195-1.513 43.097-1.765Q43-2.018 42.802-2.174Q42.604-2.329 42.320-2.329Q42.043-2.329 41.829-2.171Q41.616-2.012 41.498-1.757Q41.380-1.502 41.380-1.236M46.049 0.569L44.313 0.569L44.313 0.289Q44.542 0.289 44.690 0.255Q44.839 0.220 44.839 0.080L44.839-1.769Q44.839-2.039 44.731-2.100Q44.624-2.162 44.313-2.162L44.313-2.442L45.341-2.517L45.341-1.810Q45.471-2.118 45.714-2.317Q45.957-2.517 46.274-2.517Q46.493-2.517 46.664-2.393Q46.835-2.268 46.835-2.056Q46.835-1.919 46.736-1.820Q46.637-1.721 46.503-1.721Q46.367-1.721 46.268-1.820Q46.169-1.919 46.169-2.056Q46.169-2.196 46.268-2.295Q45.977-2.295 45.777-2.099Q45.577-1.902 45.485-1.608Q45.393-1.314 45.393-1.034L45.393 0.080Q45.393 0.289 46.049 0.289\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 -21.012)\">\u003Cpath d=\"M50.136-0.942Q50.136-1.270 50.271-1.571Q50.406-1.871 50.642-2.092Q50.878-2.312 51.182-2.432Q51.487-2.552 51.811-2.552Q52.317-2.552 52.666-2.449Q53.014-2.347 53.014-1.971Q53.014-1.824 52.917-1.723Q52.820-1.622 52.673-1.622Q52.519-1.622 52.420-1.721Q52.321-1.820 52.321-1.971Q52.321-2.159 52.461-2.251Q52.259-2.302 51.818-2.302Q51.463-2.302 51.234-2.106Q51.005-1.909 50.904-1.600Q50.803-1.290 50.803-0.942Q50.803-0.593 50.929-0.287Q51.056 0.019 51.311 0.203Q51.565 0.388 51.921 0.388Q52.143 0.388 52.327 0.304Q52.512 0.220 52.647 0.065Q52.782-0.091 52.840-0.299Q52.854-0.354 52.908-0.354L53.021-0.354Q53.052-0.354 53.074-0.330Q53.096-0.306 53.096-0.272L53.096-0.251Q53.011 0.036 52.823 0.234Q52.635 0.432 52.370 0.535Q52.105 0.637 51.811 0.637Q51.381 0.637 50.993 0.431Q50.605 0.224 50.371-0.139Q50.136-0.501 50.136-0.942M53.742-0.159Q53.742-0.491 53.966-0.718Q54.190-0.945 54.534-1.073Q54.877-1.202 55.250-1.254Q55.622-1.307 55.926-1.307L55.926-1.560Q55.926-1.765 55.819-1.945Q55.711-2.124 55.530-2.227Q55.349-2.329 55.140-2.329Q54.734-2.329 54.498-2.237Q54.587-2.200 54.633-2.116Q54.679-2.032 54.679-1.930Q54.679-1.834 54.633-1.755Q54.587-1.677 54.506-1.632Q54.426-1.588 54.337-1.588Q54.187-1.588 54.086-1.685Q53.985-1.783 53.985-1.930Q53.985-2.552 55.140-2.552Q55.352-2.552 55.602-2.488Q55.851-2.425 56.053-2.306Q56.255-2.186 56.381-2.001Q56.508-1.817 56.508-1.574L56.508 0.002Q56.508 0.118 56.569 0.214Q56.631 0.309 56.743 0.309Q56.853 0.309 56.918 0.215Q56.983 0.121 56.983 0.002L56.983-0.446L57.249-0.446L57.249 0.002Q57.249 0.272 57.022 0.437Q56.795 0.603 56.514 0.603Q56.306 0.603 56.169 0.449Q56.032 0.296 56.009 0.080Q55.862 0.347 55.580 0.492Q55.298 0.637 54.973 0.637Q54.696 0.637 54.412 0.562Q54.129 0.487 53.936 0.308Q53.742 0.128 53.742-0.159M54.358-0.159Q54.358 0.015 54.458 0.145Q54.559 0.275 54.715 0.345Q54.870 0.415 55.034 0.415Q55.253 0.415 55.462 0.318Q55.670 0.220 55.798 0.039Q55.926-0.142 55.926-0.368L55.926-1.096Q55.602-1.096 55.236-1.005Q54.870-0.914 54.614-0.702Q54.358-0.491 54.358-0.159M59.334 0.569L57.731 0.569L57.731 0.289Q57.957 0.289 58.105 0.255Q58.254 0.220 58.254 0.080L58.254-3.539Q58.254-3.809 58.146-3.871Q58.039-3.932 57.731-3.932L57.731-4.213L58.808-4.288L58.808 0.080Q58.808 0.217 58.958 0.253Q59.109 0.289 59.334 0.289L59.334 0.569M61.597 0.569L59.994 0.569L59.994 0.289Q60.219 0.289 60.368 0.255Q60.517 0.220 60.517 0.080L60.517-3.539Q60.517-3.809 60.409-3.871Q60.301-3.932 59.994-3.932L59.994-4.213L61.071-4.288L61.071 0.080Q61.071 0.217 61.221 0.253Q61.371 0.289 61.597 0.289\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 -21.012)\">\u003Cpath d=\"M67.030 2.319Q66.480 1.919 66.109 1.364Q65.738 0.808 65.557 0.162Q65.376-0.484 65.376-1.181Q65.376-1.694 65.476-2.189Q65.577-2.685 65.782-3.136Q65.987-3.587 66.300-3.979Q66.613-4.370 67.030-4.674Q67.040-4.678 67.047-4.679Q67.054-4.681 67.064-4.681L67.132-4.681Q67.167-4.681 67.189-4.657Q67.211-4.633 67.211-4.596Q67.211-4.551 67.184-4.534Q66.835-4.233 66.582-3.849Q66.329-3.464 66.177-3.023Q66.025-2.582 65.953-2.126Q65.881-1.670 65.881-1.181Q65.881-0.180 66.191 0.707Q66.500 1.594 67.184 2.179Q67.211 2.196 67.211 2.240Q67.211 2.278 67.189 2.302Q67.167 2.326 67.132 2.326L67.064 2.326Q67.057 2.322 67.049 2.321Q67.040 2.319 67.030 2.319M69.771 0.569L68.035 0.569L68.035 0.289Q68.264 0.289 68.412 0.255Q68.561 0.220 68.561 0.080L68.561-1.769Q68.561-2.039 68.453-2.100Q68.346-2.162 68.035-2.162L68.035-2.442L69.064-2.517L69.064-1.810Q69.193-2.118 69.436-2.317Q69.679-2.517 69.997-2.517Q70.215-2.517 70.386-2.393Q70.557-2.268 70.557-2.056Q70.557-1.919 70.458-1.820Q70.359-1.721 70.226-1.721Q70.089-1.721 69.990-1.820Q69.891-1.919 69.891-2.056Q69.891-2.196 69.990-2.295Q69.699-2.295 69.499-2.099Q69.299-1.902 69.207-1.608Q69.115-1.314 69.115-1.034L69.115 0.080Q69.115 0.289 69.771 0.289L69.771 0.569M71.101-0.966Q71.101-1.287 71.225-1.576Q71.350-1.865 71.576-2.088Q71.801-2.312 72.097-2.432Q72.393-2.552 72.711-2.552Q73.039-2.552 73.300-2.452Q73.562-2.353 73.738-2.171Q73.914-1.988 74.008-1.730Q74.102-1.472 74.102-1.140Q74.102-1.048 74.020-1.027L71.764-1.027L71.764-0.966Q71.764-0.378 72.047 0.005Q72.331 0.388 72.898 0.388Q73.220 0.388 73.488 0.195Q73.756 0.002 73.845-0.313Q73.852-0.354 73.927-0.368L74.020-0.368Q74.102-0.344 74.102-0.272Q74.102-0.265 74.095-0.238Q73.982 0.159 73.611 0.398Q73.240 0.637 72.816 0.637Q72.379 0.637 71.979 0.429Q71.579 0.220 71.340-0.147Q71.101-0.514 71.101-0.966M71.771-1.236L73.586-1.236Q73.586-1.513 73.488-1.765Q73.391-2.018 73.192-2.174Q72.994-2.329 72.711-2.329Q72.434-2.329 72.220-2.171Q72.006-2.012 71.888-1.757Q71.771-1.502 71.771-1.236M75.216-0.272L75.216-2.169L74.577-2.169L74.577-2.391Q74.895-2.391 75.112-2.601Q75.329-2.811 75.430-3.121Q75.530-3.430 75.530-3.738L75.797-3.738L75.797-2.449L76.874-2.449L76.874-2.169L75.797-2.169L75.797-0.285Q75.797-0.009 75.901 0.190Q76.005 0.388 76.265 0.388Q76.422 0.388 76.528 0.284Q76.634 0.179 76.684 0.026Q76.733-0.128 76.733-0.285L76.733-0.699L77-0.699L77-0.272Q77-0.046 76.901 0.164Q76.802 0.374 76.617 0.506Q76.433 0.637 76.204 0.637Q75.766 0.637 75.491 0.400Q75.216 0.162 75.216-0.272M78.384-0.265L78.384-1.769Q78.384-2.039 78.277-2.100Q78.169-2.162 77.858-2.162L77.858-2.442L78.965-2.517L78.965-0.285L78.965-0.265Q78.965 0.015 79.017 0.159Q79.068 0.302 79.210 0.359Q79.352 0.415 79.639 0.415Q79.892 0.415 80.097 0.275Q80.302 0.135 80.418-0.091Q80.534-0.316 80.534-0.566L80.534-1.769Q80.534-2.039 80.427-2.100Q80.319-2.162 80.008-2.162L80.008-2.442L81.115-2.517L81.115-0.104Q81.115 0.087 81.168 0.169Q81.221 0.251 81.322 0.270Q81.423 0.289 81.638 0.289L81.638 0.569L80.562 0.637L80.562 0.073Q80.452 0.255 80.307 0.378Q80.162 0.501 79.975 0.569Q79.789 0.637 79.587 0.637Q78.384 0.637 78.384-0.265M83.976 0.569L82.240 0.569L82.240 0.289Q82.469 0.289 82.617 0.255Q82.766 0.220 82.766 0.080L82.766-1.769Q82.766-2.039 82.659-2.100Q82.551-2.162 82.240-2.162L82.240-2.442L83.269-2.517L83.269-1.810Q83.398-2.118 83.641-2.317Q83.884-2.517 84.202-2.517Q84.420-2.517 84.591-2.393Q84.762-2.268 84.762-2.056Q84.762-1.919 84.663-1.820Q84.564-1.721 84.431-1.721Q84.294-1.721 84.195-1.820Q84.096-1.919 84.096-2.056Q84.096-2.196 84.195-2.295Q83.904-2.295 83.704-2.099Q83.504-1.902 83.412-1.608Q83.320-1.314 83.320-1.034L83.320 0.080Q83.320 0.289 83.976 0.289L83.976 0.569M87.028 0.569L85.395 0.569L85.395 0.289Q85.624 0.289 85.772 0.255Q85.921 0.220 85.921 0.080L85.921-1.769Q85.921-2.039 85.813-2.100Q85.706-2.162 85.395-2.162L85.395-2.442L86.454-2.517L86.454-1.868Q86.625-2.176 86.929-2.347Q87.233-2.517 87.579-2.517Q88.085-2.517 88.368-2.294Q88.652-2.070 88.652-1.574L88.652 0.080Q88.652 0.217 88.801 0.253Q88.949 0.289 89.175 0.289L89.175 0.569L87.544 0.569L87.544 0.289Q87.773 0.289 87.922 0.255Q88.071 0.220 88.071 0.080L88.071-1.560Q88.071-1.895 87.951-2.095Q87.832-2.295 87.517-2.295Q87.247-2.295 87.013-2.159Q86.779-2.022 86.640-1.788Q86.502-1.554 86.502-1.280L86.502 0.080Q86.502 0.217 86.652 0.253Q86.803 0.289 87.028 0.289\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 -21.012)\">\u003Cpath d=\"M92.542-0.159Q92.542-0.491 92.765-0.718Q92.989-0.945 93.333-1.073Q93.676-1.202 94.049-1.254Q94.421-1.307 94.726-1.307L94.726-1.560Q94.726-1.765 94.618-1.945Q94.510-2.124 94.329-2.227Q94.148-2.329 93.940-2.329Q93.533-2.329 93.297-2.237Q93.386-2.200 93.432-2.116Q93.478-2.032 93.478-1.930Q93.478-1.834 93.432-1.755Q93.386-1.677 93.305-1.632Q93.225-1.588 93.136-1.588Q92.986-1.588 92.885-1.685Q92.784-1.783 92.784-1.930Q92.784-2.552 93.940-2.552Q94.151-2.552 94.401-2.488Q94.650-2.425 94.852-2.306Q95.054-2.186 95.180-2.001Q95.307-1.817 95.307-1.574L95.307 0.002Q95.307 0.118 95.368 0.214Q95.430 0.309 95.543 0.309Q95.652 0.309 95.717 0.215Q95.782 0.121 95.782 0.002L95.782-0.446L96.048-0.446L96.048 0.002Q96.048 0.272 95.821 0.437Q95.594 0.603 95.314 0.603Q95.105 0.603 94.968 0.449Q94.832 0.296 94.808 0.080Q94.661 0.347 94.379 0.492Q94.097 0.637 93.772 0.637Q93.495 0.637 93.211 0.562Q92.928 0.487 92.735 0.308Q92.542 0.128 92.542-0.159M93.157-0.159Q93.157 0.015 93.258 0.145Q93.358 0.275 93.514 0.345Q93.669 0.415 93.834 0.415Q94.052 0.415 94.261 0.318Q94.469 0.220 94.597 0.039Q94.726-0.142 94.726-0.368L94.726-1.096Q94.401-1.096 94.035-1.005Q93.669-0.914 93.413-0.702Q93.157-0.491 93.157-0.159M96.465-0.942Q96.465-1.280 96.606-1.571Q96.746-1.861 96.990-2.075Q97.234-2.288 97.539-2.403Q97.843-2.517 98.168-2.517Q98.438-2.517 98.701-2.418Q98.964-2.319 99.155-2.141L99.155-3.539Q99.155-3.809 99.048-3.871Q98.940-3.932 98.629-3.932L98.629-4.213L99.706-4.288L99.706-0.104Q99.706 0.084 99.760 0.167Q99.815 0.251 99.916 0.270Q100.017 0.289 100.232 0.289L100.232 0.569L99.125 0.637L99.125 0.220Q98.708 0.637 98.082 0.637Q97.651 0.637 97.279 0.425Q96.906 0.214 96.686-0.147Q96.465-0.508 96.465-0.942M98.140 0.415Q98.349 0.415 98.535 0.343Q98.721 0.272 98.875 0.135Q99.029-0.002 99.125-0.180L99.125-1.789Q99.039-1.936 98.894-2.056Q98.749-2.176 98.579-2.235Q98.410-2.295 98.229-2.295Q97.669-2.295 97.400-1.906Q97.132-1.516 97.132-0.935Q97.132-0.364 97.366 0.026Q97.600 0.415 98.140 0.415M100.881-0.942Q100.881-1.280 101.022-1.571Q101.162-1.861 101.406-2.075Q101.650-2.288 101.955-2.403Q102.259-2.517 102.584-2.517Q102.854-2.517 103.117-2.418Q103.380-2.319 103.571-2.141L103.571-3.539Q103.571-3.809 103.464-3.871Q103.356-3.932 103.045-3.932L103.045-4.213L104.122-4.288L104.122-0.104Q104.122 0.084 104.176 0.167Q104.231 0.251 104.332 0.270Q104.433 0.289 104.648 0.289L104.648 0.569L103.541 0.637L103.541 0.220Q103.124 0.637 102.498 0.637Q102.067 0.637 101.695 0.425Q101.322 0.214 101.102-0.147Q100.881-0.508 100.881-0.942M102.556 0.415Q102.765 0.415 102.951 0.343Q103.137 0.272 103.291 0.135Q103.445-0.002 103.541-0.180L103.541-1.789Q103.455-1.936 103.310-2.056Q103.165-2.176 102.995-2.235Q102.826-2.295 102.645-2.295Q102.085-2.295 101.816-1.906Q101.548-1.516 101.548-0.935Q101.548-0.364 101.782 0.026Q102.016 0.415 102.556 0.415M107.047 0.569L105.311 0.569L105.311 0.289Q105.540 0.289 105.689 0.255Q105.837 0.220 105.837 0.080L105.837-1.769Q105.837-2.039 105.730-2.100Q105.622-2.162 105.311-2.162L105.311-2.442L106.340-2.517L106.340-1.810Q106.470-2.118 106.712-2.317Q106.955-2.517 107.273-2.517Q107.492-2.517 107.663-2.393Q107.834-2.268 107.834-2.056Q107.834-1.919 107.734-1.820Q107.635-1.721 107.502-1.721Q107.365-1.721 107.266-1.820Q107.167-1.919 107.167-2.056Q107.167-2.196 107.266-2.295Q106.976-2.295 106.776-2.099Q106.576-1.902 106.483-1.608Q106.391-1.314 106.391-1.034L106.391 0.080Q106.391 0.289 107.047 0.289L107.047 0.569M108.377-0.966Q108.377-1.287 108.502-1.576Q108.627-1.865 108.852-2.088Q109.078-2.312 109.373-2.432Q109.669-2.552 109.987-2.552Q110.315-2.552 110.576-2.452Q110.838-2.353 111.014-2.171Q111.190-1.988 111.284-1.730Q111.378-1.472 111.378-1.140Q111.378-1.048 111.296-1.027L109.040-1.027L109.040-0.966Q109.040-0.378 109.324 0.005Q109.607 0.388 110.175 0.388Q110.496 0.388 110.764 0.195Q111.033 0.002 111.122-0.313Q111.128-0.354 111.204-0.368L111.296-0.368Q111.378-0.344 111.378-0.272Q111.378-0.265 111.371-0.238Q111.258 0.159 110.888 0.398Q110.517 0.637 110.093 0.637Q109.655 0.637 109.255 0.429Q108.856 0.220 108.616-0.147Q108.377-0.514 108.377-0.966M109.047-1.236L110.862-1.236Q110.862-1.513 110.764-1.765Q110.667-2.018 110.469-2.174Q110.271-2.329 109.987-2.329Q109.710-2.329 109.496-2.171Q109.283-2.012 109.165-1.757Q109.047-1.502 109.047-1.236M111.966 0.562L111.966-0.501Q111.966-0.525 111.993-0.552Q112.021-0.579 112.044-0.579L112.154-0.579Q112.219-0.579 112.232-0.521Q112.328-0.087 112.574 0.164Q112.820 0.415 113.234 0.415Q113.576 0.415 113.829 0.282Q114.082 0.149 114.082-0.159Q114.082-0.316 113.988-0.431Q113.894-0.545 113.755-0.614Q113.617-0.682 113.449-0.720L112.868-0.819Q112.513-0.887 112.239-1.108Q111.966-1.328 111.966-1.670Q111.966-1.919 112.077-2.094Q112.188-2.268 112.374-2.367Q112.561-2.466 112.776-2.509Q112.991-2.552 113.234-2.552Q113.648-2.552 113.928-2.370L114.143-2.545Q114.153-2.548 114.160-2.550Q114.167-2.552 114.177-2.552L114.229-2.552Q114.256-2.552 114.280-2.528Q114.304-2.504 114.304-2.476L114.304-1.629Q114.304-1.608 114.280-1.581Q114.256-1.554 114.229-1.554L114.116-1.554Q114.088-1.554 114.063-1.579Q114.037-1.605 114.037-1.629Q114.037-1.865 113.931-2.029Q113.825-2.193 113.642-2.275Q113.460-2.357 113.227-2.357Q112.899-2.357 112.643-2.254Q112.386-2.152 112.386-1.875Q112.386-1.680 112.569-1.571Q112.752-1.461 112.981-1.420L113.555-1.314Q113.801-1.266 114.015-1.138Q114.229-1.010 114.365-0.807Q114.502-0.603 114.502-0.354Q114.502 0.159 114.136 0.398Q113.771 0.637 113.234 0.637Q112.738 0.637 112.407 0.343L112.140 0.617Q112.120 0.637 112.092 0.637L112.044 0.637Q112.021 0.637 111.993 0.610Q111.966 0.583 111.966 0.562M115.131 0.562L115.131-0.501Q115.131-0.525 115.158-0.552Q115.186-0.579 115.210-0.579L115.319-0.579Q115.384-0.579 115.398-0.521Q115.493-0.087 115.739 0.164Q115.985 0.415 116.399 0.415Q116.741 0.415 116.994 0.282Q117.247 0.149 117.247-0.159Q117.247-0.316 117.153-0.431Q117.059-0.545 116.920-0.614Q116.782-0.682 116.614-0.720L116.033-0.819Q115.678-0.887 115.404-1.108Q115.131-1.328 115.131-1.670Q115.131-1.919 115.242-2.094Q115.353-2.268 115.539-2.367Q115.726-2.466 115.941-2.509Q116.156-2.552 116.399-2.552Q116.813-2.552 117.093-2.370L117.308-2.545Q117.318-2.548 117.325-2.550Q117.332-2.552 117.342-2.552L117.394-2.552Q117.421-2.552 117.445-2.528Q117.469-2.504 117.469-2.476L117.469-1.629Q117.469-1.608 117.445-1.581Q117.421-1.554 117.394-1.554L117.281-1.554Q117.253-1.554 117.228-1.579Q117.202-1.605 117.202-1.629Q117.202-1.865 117.096-2.029Q116.990-2.193 116.807-2.275Q116.625-2.357 116.392-2.357Q116.064-2.357 115.808-2.254Q115.551-2.152 115.551-1.875Q115.551-1.680 115.734-1.571Q115.917-1.461 116.146-1.420L116.720-1.314Q116.966-1.266 117.180-1.138Q117.394-1.010 117.530-0.807Q117.667-0.603 117.667-0.354Q117.667 0.159 117.301 0.398Q116.936 0.637 116.399 0.637Q115.903 0.637 115.572 0.343L115.305 0.617Q115.285 0.637 115.257 0.637L115.210 0.637Q115.186 0.637 115.158 0.610Q115.131 0.583 115.131 0.562\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(100.272 -21.012)\">\u003Cpath d=\"M122.696 0.569L121.062 0.569L121.062 0.289Q121.291 0.289 121.440 0.255Q121.589 0.220 121.589 0.080L121.589-3.539Q121.589-3.809 121.481-3.871Q121.373-3.932 121.062-3.932L121.062-4.213L122.142-4.288L122.142-1.902Q122.248-2.087 122.426-2.229Q122.604-2.370 122.812-2.444Q123.021-2.517 123.246-2.517Q123.752-2.517 124.036-2.294Q124.320-2.070 124.320-1.574L124.320 0.080Q124.320 0.217 124.468 0.253Q124.617 0.289 124.843 0.289L124.843 0.569L123.212 0.569L123.212 0.289Q123.441 0.289 123.590 0.255Q123.739 0.220 123.739 0.080L123.739-1.560Q123.739-1.895 123.619-2.095Q123.499-2.295 123.185-2.295Q122.915-2.295 122.681-2.159Q122.447-2.022 122.308-1.788Q122.170-1.554 122.170-1.280L122.170 0.080Q122.170 0.217 122.320 0.253Q122.471 0.289 122.696 0.289L122.696 0.569M125.389-0.966Q125.389-1.287 125.514-1.576Q125.639-1.865 125.865-2.088Q126.090-2.312 126.386-2.432Q126.681-2.552 126.999-2.552Q127.327-2.552 127.589-2.452Q127.850-2.353 128.026-2.171Q128.202-1.988 128.296-1.730Q128.390-1.472 128.390-1.140Q128.390-1.048 128.308-1.027L126.053-1.027L126.053-0.966Q126.053-0.378 126.336 0.005Q126.620 0.388 127.187 0.388Q127.509 0.388 127.777 0.195Q128.045 0.002 128.134-0.313Q128.141-0.354 128.216-0.368L128.308-0.368Q128.390-0.344 128.390-0.272Q128.390-0.265 128.384-0.238Q128.271 0.159 127.900 0.398Q127.529 0.637 127.105 0.637Q126.668 0.637 126.268 0.429Q125.868 0.220 125.629-0.147Q125.389-0.514 125.389-0.966M126.059-1.236L127.874-1.236Q127.874-1.513 127.777-1.765Q127.679-2.018 127.481-2.174Q127.283-2.329 126.999-2.329Q126.722-2.329 126.509-2.171Q126.295-2.012 126.177-1.757Q126.059-1.502 126.059-1.236M130.728 0.569L128.992 0.569L128.992 0.289Q129.221 0.289 129.370 0.255Q129.518 0.220 129.518 0.080L129.518-1.769Q129.518-2.039 129.411-2.100Q129.303-2.162 128.992-2.162L128.992-2.442L130.021-2.517L130.021-1.810Q130.151-2.118 130.393-2.317Q130.636-2.517 130.954-2.517Q131.173-2.517 131.344-2.393Q131.514-2.268 131.514-2.056Q131.514-1.919 131.415-1.820Q131.316-1.721 131.183-1.721Q131.046-1.721 130.947-1.820Q130.848-1.919 130.848-2.056Q130.848-2.196 130.947-2.295Q130.657-2.295 130.457-2.099Q130.257-1.902 130.164-1.608Q130.072-1.314 130.072-1.034L130.072 0.080Q130.072 0.289 130.728 0.289L130.728 0.569M132.058-0.966Q132.058-1.287 132.183-1.576Q132.307-1.865 132.533-2.088Q132.759-2.312 133.054-2.432Q133.350-2.552 133.668-2.552Q133.996-2.552 134.257-2.452Q134.519-2.353 134.695-2.171Q134.871-1.988 134.965-1.730Q135.059-1.472 135.059-1.140Q135.059-1.048 134.977-1.027L132.721-1.027L132.721-0.966Q132.721-0.378 133.005 0.005Q133.288 0.388 133.856 0.388Q134.177 0.388 134.445 0.195Q134.714 0.002 134.803-0.313Q134.809-0.354 134.885-0.368L134.977-0.368Q135.059-0.344 135.059-0.272Q135.059-0.265 135.052-0.238Q134.939 0.159 134.568 0.398Q134.198 0.637 133.774 0.637Q133.336 0.637 132.936 0.429Q132.536 0.220 132.297-0.147Q132.058-0.514 132.058-0.966M132.728-1.236L134.543-1.236Q134.543-1.513 134.445-1.765Q134.348-2.018 134.150-2.174Q133.951-2.329 133.668-2.329Q133.391-2.329 133.177-2.171Q132.964-2.012 132.846-1.757Q132.728-1.502 132.728-1.236M135.968 2.326L135.900 2.326Q135.866 2.326 135.843 2.300Q135.821 2.275 135.821 2.240Q135.821 2.196 135.852 2.179Q136.207 1.875 136.457 1.485Q136.706 1.095 136.858 0.663Q137.011 0.231 137.081-0.238Q137.151-0.706 137.151-1.181Q137.151-1.660 137.081-2.126Q137.011-2.593 136.857-3.028Q136.703-3.464 136.452-3.852Q136.200-4.240 135.852-4.534Q135.821-4.551 135.821-4.596Q135.821-4.630 135.843-4.655Q135.866-4.681 135.900-4.681L135.968-4.681Q135.978-4.681 135.987-4.679Q135.995-4.678 136.006-4.674Q136.549-4.274 136.922-3.721Q137.294-3.167 137.475-2.521Q137.657-1.875 137.657-1.181Q137.657-0.480 137.475 0.167Q137.294 0.815 136.920 1.369Q136.546 1.923 136.006 2.319Q135.995 2.319 135.987 2.321Q135.978 2.322 135.968 2.326\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The stack during callret.ys. call decrements %rsp from 0x100 to 0xf8 and stores the return address 0x013 at the new top; ret reads it back and restores %rsp to 0x100. The word at 0xf8 still holds 0x013 afterward — ret reads, it does not erase.\u003C\u002Ffigcaption>",1785117687899]