Question
In this lab, the students will obtain experience with sequential logic design, and study digital design using the Xilinx design package for FPGAs. It is assumed that students are familiar with the operation of the Xilinx design package for Field Programmable Gate Arrays (FPGAs) through the Xilinix tutorial available in the class website.
1. This lab introduces unsigned binary division algorithms, including the restoringalgorithm.
2. Given a dividend ‘a’ and a divisor ‘b’, the restoring division algorithm calculates the quotient ‘q’ and the remainder ‘r’ such that a = b x q + r and r < b, by subtracting b from the partial remainder (initially the MSB of a). If the result of the subtraction is not negative, we set the quotient bit to 1. Otherwise, b is added back to the result to restore the partial remainder. Then we shift the partial remainder with the remaining bits of ‘a’ to the left by one bit for the calculation of the next quotient bit. This procedure is repeated until all the bits of ‘a’ are shifted out.
3. Figure 1 shows the schematic diagram of a restoring divider. There are three registers: reg_b, reg_r, and reg_q, for storing the divisor b, a remainder r, and quotient q respectively. Initially, reg_q stores the dividend a. A subtracter is used to subtract b from the partial remainder. The MSB of the output of the subtracter is used to determine whether the result of the subtraction is negative or not.
The multiplexer over reg_q is used to load a initially and to shift the content of reg_q (a and q) to the left later. The multiplexer over reg_r implements the restoring. If the result of the subtraction is negative, the multiplexer selects the original partial remainder. Otherwise, it selects the result of the subtraction. At each iteration, one bit of q is obtained from the sign bit of the subtracter result and written to the LSB of the reg_q.
4. In Figure 2, start signal means the start of the division; busy indicates that the divider is busy (can’t start a new division); ready indicates that the quotient and remainder are available; and count is the output of a counter that is used to control the iterations of the division.
5. Figure 2 shows part of the expected output of the simulation of 0x4c7f228a / 0x6a0e, q = 0xb8a6 and r = 0x4d76 are available when ready is 1 at 330 ns and then 0xffff00/4, q is 0x3fffc0, and r is 0.
6. Write a behavioral Verilog code describing Figure 1. Compile and simulate your code to correctly do the division.
7. Write a report that contains the following:
a. Your Verilog design code. Use:
i. Device: XC7Z010- -1CLG400C
b. Your Verilog Test Bench design code to do the following division shown in item 5 (0x4c7f228a / 0x6a0e). Add “`timescale 1ns/1ps” as the first line of your test bench file.
c. The waveforms resulting from the verification of your design with ModelSim showing all the signals as shown in Figure 2. Show the signals till 680 ns.
d. The design schematics from the Xilinx synthesis of your design. Do not use any area constraints.
e. Snapshot of the I/O Planning and
f. Snapshot of the floor planning
Solution Preview

These solutions may offer step-by-step problem-solving explanations or good writing examples that include modern styles of formatting and construction of bibliographies out of text citations and references.
Students may use these solutions for personal skill-building and practice.
Unethical use is strictly forbidden.

Top Level Diagram of Restoring Divider
Given a dividend ‘a’ and a divisor ‘b’, the restoring division algorithm calculates the quotient ‘q’ and the remainder ‘r’ such that a = b x q + r and r < b, by subtracting b from the partial remainder (initially the MSB of a). If the result of the subtraction is not negative, we set the quotient bit to 1. Otherwise, b is added back to the result to restore the partial remainder. Then we shift the partial remainder with the remaining bits of ‘a’ to the left by one bit for the calculation of the next quotient bit. This procedure is repeated until all the bits of ‘a’ are shifted out.
The Pinout description of the top level module is described in Figure 1.

Preferred Modelling Style
The code has been written using structural modelling style. Structural modeling / Hierarchical modeling has been kept in mind before designing the below Restoring Divider. Verilog provides the concept of a module. A module is the basic building block in Verilog. A module can be an element or a collection of lower-level design blocks.
The Restoring Divider depicted in the diagram below has different blocks to it.
Register ( REG_Q, REG_B & REG_R)
Subtractor
Mux (MUX_Q, MUX_R)
These blocks have been coded in Verilog separately and then are grouped into the top level module with required interconnections. A Control Unit and a Counter have been coded separately and they are also grouped into the top level module to ensure the fourth point mentioned in the lab.

Control Unit
This component is a Finite State Machine which controls the complete process. A finite state machine (FSM) is a kind of sequential circuit which is designed to sequence/step through specific/defined patterns of finite states in a predetermined sequential manner. It is capable of storing the status of something at a given time and operate on input to change the state as well as status of the dependent outputs. There are two types of FSM, Mealy and Moore. The Moore FSM has outputs that are a function of current state only. The Mealy FSM has outputs that are a function of the current state and primary inputs.
This is only a preview of the solution.
Please use the purchase button to see the entire solution.
By purchasing this solution you'll be able to access the following files:
Solution.zip
Purchase Solution
$49.00
Google Pay
Amazon
Paypal
Mastercard
Visacard
Discover
Amex
View Available Computer Science Tutors 529 tutors matched
Ionut
(ionut)
Hi! MSc Applied Informatics & Computer Science Engineer. Practical experience in many CS & IT branches.Research work & homework
5/5 (5,654+ sessions)
2 hours avg response
Leo
(Leo)
Hi! I have been a professor in New York and taught in a math department and in an applied math department.
4.9/5 (5,652+ sessions)
2 hours avg response
Pranay
(math1983)
Ph.D. in mathematics and working as an Assistant Professor in University. I can provide help in mathematics, statistics and allied areas.
4.6/5 (5,512+ sessions)
1 hour avg response

Similar Homework Solutions

8.1.0PHP Version854msRequest Duration45MBMemory UsageGET college-homework-library/{category}/{subject}/{id}Route
    • Booting (549ms)time
    • Application (305ms)time
    • 1 x Booting (64.32%)
      549ms
      1 x Application (35.68%)
      305ms
      • Illuminate\Routing\Events\Routing (776μs)
      • Illuminate\Routing\Events\RouteMatched (490μs)
      • Illuminate\Foundation\Events\LocaleUpdated (3.97ms)
      • eloquent.booting: App\Models\HomeworkLibrary\HomeworkLibrary (181μs)
      • eloquent.booted: App\Models\HomeworkLibrary\HomeworkLibrary (134μs)
      • Illuminate\Database\Events\ConnectionEstablished (1.05ms)
      • Illuminate\Database\Events\StatementPrepared (13.16ms)
      • Illuminate\Database\Events\QueryExecuted (1.32ms)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (220μs)
      • eloquent.booting: App\Models\Subject (78μs)
      • eloquent.booted: App\Models\Subject (60μs)
      • Illuminate\Database\Events\StatementPrepared (9.96ms)
      • Illuminate\Database\Events\QueryExecuted (4.28ms)
      • eloquent.retrieved: App\Models\Subject (165μs)
      • eloquent.booting: App\Models\HomeworkLibrary\HomeworkLibraryFile (259μs)
      • eloquent.booted: App\Models\HomeworkLibrary\HomeworkLibraryFile (63μs)
      • Illuminate\Database\Events\StatementPrepared (931μs)
      • Illuminate\Database\Events\QueryExecuted (1.65ms)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (143μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (23μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (12μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (10μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (9μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (10μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (30μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (10μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (9μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (8μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (9μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (8μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (8μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (8μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (8μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (10μs)
      • eloquent.booting: App\Models\SubjectCat (570μs)
      • eloquent.booted: App\Models\SubjectCat (62μs)
      • Illuminate\Database\Events\StatementPrepared (1.86ms)
      • Illuminate\Database\Events\QueryExecuted (2.55ms)
      • eloquent.retrieved: App\Models\SubjectCat (92μs)
      • Illuminate\Cache\Events\CacheHit (20.15ms)
      • Illuminate\Cache\Events\CacheMissed (237μs)
      • Illuminate\Database\Events\StatementPrepared (3.58ms)
      • Illuminate\Database\Events\QueryExecuted (5.31ms)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (120μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (50μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (14μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (12μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (11μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (11μs)
      • Illuminate\Database\Events\StatementPrepared (2.31ms)
      • Illuminate\Database\Events\QueryExecuted (952μs)
      • eloquent.retrieved: App\Models\Subject (98μs)
      • Illuminate\Cache\Events\KeyWritten (1.12ms)
      • Illuminate\Database\Events\StatementPrepared (5.9ms)
      • Illuminate\Database\Events\QueryExecuted (2.62ms)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (120μs)
      • Illuminate\Database\Events\StatementPrepared (8.22ms)
      • Illuminate\Database\Events\QueryExecuted (1.65ms)
      • Illuminate\Database\Events\StatementPrepared (1.94ms)
      • Illuminate\Database\Events\QueryExecuted (1.21ms)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (56μs)
      • Illuminate\Cache\Events\CacheHit (476μs)
      • creating: homework.show (756μs)
      • composing: homework.show (253μs)
      • creating: components.breadcrumbs (556μs)
      • composing: components.breadcrumbs (232μs)
      • Illuminate\Database\Events\StatementPrepared (5.49ms)
      • Illuminate\Database\Events\QueryExecuted (1.5ms)
      • eloquent.retrieved: App\Models\SubjectCat (78μs)
      • Illuminate\Cache\Events\CacheHit (12.76ms)
      • Illuminate\Cache\Events\CacheHit (173μs)
      • Illuminate\Cache\Events\CacheHit (180μs)
      • Illuminate\Cache\Events\CacheHit (283μs)
      • Illuminate\Cache\Events\CacheHit (216μs)
      • Illuminate\Cache\Events\CacheHit (171μs)
      • Illuminate\Cache\Events\CacheHit (188μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (190μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (193μs)
      • Illuminate\Cache\Events\CacheHit (236μs)
      • Illuminate\Cache\Events\CacheHit (198μs)
      • Illuminate\Cache\Events\CacheHit (238μs)
      • Illuminate\Cache\Events\CacheHit (235μs)
      • Illuminate\Cache\Events\CacheHit (180μs)
      • Illuminate\Cache\Events\CacheHit (390μs)
      • Illuminate\Cache\Events\CacheHit (343μs)
      • Illuminate\Cache\Events\CacheHit (190μs)
      • Illuminate\Cache\Events\CacheHit (176μs)
      • Illuminate\Cache\Events\CacheHit (287μs)
      • Illuminate\Cache\Events\CacheHit (195μs)
      • Illuminate\Cache\Events\CacheHit (198μs)
      • Illuminate\Cache\Events\CacheHit (176μs)
      • Illuminate\Cache\Events\CacheHit (223μs)
      • Illuminate\Cache\Events\CacheHit (165μs)
      • Illuminate\Cache\Events\CacheHit (304μs)
      • Illuminate\Cache\Events\CacheHit (174μs)
      • Illuminate\Cache\Events\CacheHit (207μs)
      • Illuminate\Cache\Events\CacheHit (452μs)
      • Illuminate\Cache\Events\CacheHit (284μs)
      • Illuminate\Cache\Events\CacheHit (374μs)
      • Illuminate\Cache\Events\CacheHit (357μs)
      • Illuminate\Cache\Events\CacheHit (299μs)
      • Illuminate\Cache\Events\CacheHit (226μs)
      • Illuminate\Cache\Events\CacheHit (179μs)
      • Illuminate\Cache\Events\CacheHit (197μs)
      • Illuminate\Cache\Events\CacheHit (422μs)
      • Illuminate\Cache\Events\CacheHit (240μs)
      • Illuminate\Cache\Events\CacheHit (175μs)
      • Illuminate\Cache\Events\CacheHit (191μs)
      • Illuminate\Cache\Events\CacheHit (172μs)
      • Illuminate\Cache\Events\CacheHit (193μs)
      • Illuminate\Cache\Events\CacheHit (166μs)
      • Illuminate\Cache\Events\CacheHit (210μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (193μs)
      • Illuminate\Cache\Events\CacheHit (168μs)
      • Illuminate\Cache\Events\CacheHit (204μs)
      • Illuminate\Cache\Events\CacheHit (254μs)
      • Illuminate\Cache\Events\CacheHit (217μs)
      • Illuminate\Cache\Events\CacheHit (321μs)
      • Illuminate\Cache\Events\CacheHit (344μs)
      • Illuminate\Cache\Events\CacheHit (371μs)
      • Illuminate\Cache\Events\CacheHit (498μs)
      • Illuminate\Cache\Events\CacheHit (230μs)
      • Illuminate\Cache\Events\CacheHit (430μs)
      • Illuminate\Cache\Events\CacheHit (337μs)
      • Illuminate\Cache\Events\CacheHit (214μs)
      • Illuminate\Cache\Events\CacheHit (171μs)
      • Illuminate\Cache\Events\CacheHit (277μs)
      • Illuminate\Cache\Events\CacheHit (173μs)
      • Illuminate\Cache\Events\CacheHit (206μs)
      • Illuminate\Cache\Events\CacheHit (662μs)
      • Illuminate\Cache\Events\CacheHit (391μs)
      • Illuminate\Cache\Events\CacheHit (279μs)
      • Illuminate\Cache\Events\CacheHit (478μs)
      • Illuminate\Cache\Events\CacheHit (189μs)
      • Illuminate\Cache\Events\CacheHit (11.54ms)
      • Illuminate\Cache\Events\CacheHit (569μs)
      • Illuminate\Cache\Events\CacheHit (214μs)
      • Illuminate\Cache\Events\CacheHit (186μs)
      • Illuminate\Cache\Events\CacheHit (189μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (189μs)
      • Illuminate\Cache\Events\CacheHit (169μs)
      • Illuminate\Cache\Events\CacheHit (267μs)
      • Illuminate\Cache\Events\CacheHit (248μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (169μs)
      • Illuminate\Cache\Events\CacheHit (290μs)
      • Illuminate\Cache\Events\CacheHit (192μs)
      • Illuminate\Cache\Events\CacheHit (328μs)
      • Illuminate\Cache\Events\CacheHit (188μs)
      • Illuminate\Cache\Events\CacheHit (187μs)
      • Illuminate\Cache\Events\CacheHit (223μs)
      • Illuminate\Cache\Events\CacheHit (262μs)
      • Illuminate\Cache\Events\CacheHit (325μs)
      • Illuminate\Cache\Events\CacheHit (195μs)
      • Illuminate\Cache\Events\CacheHit (215μs)
      • Illuminate\Cache\Events\CacheHit (266μs)
      • Illuminate\Cache\Events\CacheHit (240μs)
      • Illuminate\Cache\Events\CacheHit (204μs)
      • Illuminate\Cache\Events\CacheHit (245μs)
      • Illuminate\Cache\Events\CacheHit (199μs)
      • Illuminate\Cache\Events\CacheHit (156μs)
      • Illuminate\Cache\Events\CacheHit (167μs)
      • Illuminate\Cache\Events\CacheHit (148μs)
      • Illuminate\Cache\Events\CacheHit (285μs)
      • Illuminate\Cache\Events\CacheHit (145μs)
      • Illuminate\Cache\Events\CacheHit (271μs)
      • Illuminate\Cache\Events\CacheHit (123μs)
      • Illuminate\Cache\Events\CacheHit (151μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (193μs)
      • Illuminate\Cache\Events\CacheHit (405μs)
      • Illuminate\Cache\Events\CacheHit (6.72ms)
      • Illuminate\Cache\Events\CacheHit (272μs)
      • Illuminate\Cache\Events\CacheHit (403μs)
      • Illuminate\Cache\Events\CacheHit (184μs)
      • Illuminate\Cache\Events\CacheHit (4.81ms)
      • Illuminate\Cache\Events\CacheHit (167μs)
      • Illuminate\Cache\Events\CacheHit (201μs)
      • Illuminate\Cache\Events\CacheHit (159μs)
      • Illuminate\Cache\Events\CacheHit (1.09ms)
      • Illuminate\Cache\Events\CacheHit (411μs)
      • Illuminate\Cache\Events\CacheHit (203μs)
      • Illuminate\Cache\Events\CacheHit (163μs)
      • Illuminate\Cache\Events\CacheHit (330μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (178μs)
      • Illuminate\Cache\Events\CacheHit (155μs)
      • Illuminate\Cache\Events\CacheHit (233μs)
      • Illuminate\Cache\Events\CacheHit (426μs)
      • Illuminate\Cache\Events\CacheHit (202μs)
      • Illuminate\Cache\Events\CacheHit (151μs)
      • Illuminate\Cache\Events\CacheHit (175μs)
      • Illuminate\Cache\Events\CacheHit (143μs)
      • Illuminate\Cache\Events\CacheHit (124μs)
      • Illuminate\Cache\Events\CacheHit (263μs)
      • Illuminate\Cache\Events\CacheHit (490μs)
      • Illuminate\Cache\Events\CacheHit (335μs)
      • Illuminate\Cache\Events\CacheHit (978μs)
      • Illuminate\Cache\Events\CacheHit (207μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (157μs)
      • Illuminate\Cache\Events\CacheHit (429μs)
      • Illuminate\Cache\Events\CacheHit (8.36ms)
      • Illuminate\Cache\Events\CacheHit (231μs)
      • Illuminate\Cache\Events\CacheHit (155μs)
      • Illuminate\Cache\Events\CacheHit (294μs)
      • Illuminate\Cache\Events\CacheHit (179μs)
      • Illuminate\Cache\Events\CacheHit (173μs)
      • Illuminate\Cache\Events\CacheHit (155μs)
      • Illuminate\Cache\Events\CacheHit (172μs)
      • Illuminate\Cache\Events\CacheHit (426μs)
      • Illuminate\Cache\Events\CacheHit (187μs)
      • Illuminate\Cache\Events\CacheHit (159μs)
      • Illuminate\Cache\Events\CacheHit (308μs)
      • Illuminate\Cache\Events\CacheHit (259μs)
      • Illuminate\Cache\Events\CacheHit (197μs)
      • Illuminate\Cache\Events\CacheHit (166μs)
      • Illuminate\Cache\Events\CacheHit (188μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (189μs)
      • Illuminate\Cache\Events\CacheHit (266μs)
      • Illuminate\Cache\Events\CacheHit (187μs)
      • Illuminate\Cache\Events\CacheHit (161μs)
      • Illuminate\Cache\Events\CacheHit (245μs)
      • Illuminate\Cache\Events\CacheHit (156μs)
      • Illuminate\Cache\Events\CacheHit (288μs)
      • Illuminate\Cache\Events\CacheHit (318μs)
      • Illuminate\Cache\Events\CacheHit (215μs)
      • Illuminate\Cache\Events\CacheHit (187μs)
      • Illuminate\Cache\Events\CacheHit (258μs)
      • Illuminate\Cache\Events\CacheHit (165μs)
      • Illuminate\Cache\Events\CacheHit (435μs)
      • Illuminate\Cache\Events\CacheHit (233μs)
      • Illuminate\Cache\Events\CacheHit (182μs)
      • Illuminate\Cache\Events\CacheHit (156μs)
      • Illuminate\Cache\Events\CacheHit (189μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (258μs)
      • Illuminate\Cache\Events\CacheHit (8.53ms)
      • Illuminate\Cache\Events\CacheHit (295μs)
      • Illuminate\Cache\Events\CacheHit (765μs)
      • Illuminate\Cache\Events\CacheHit (553μs)
      • Illuminate\Cache\Events\CacheHit (337μs)
      • Illuminate\Cache\Events\CacheHit (272μs)
      • Illuminate\Cache\Events\CacheHit (291μs)
      • Illuminate\Cache\Events\CacheHit (194μs)
      • Illuminate\Cache\Events\CacheHit (238μs)
      • Illuminate\Cache\Events\CacheHit (220μs)
      • Illuminate\Cache\Events\CacheHit (161μs)
      • Illuminate\Cache\Events\CacheHit (144μs)
      • Illuminate\Cache\Events\CacheHit (195μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (118μs)
      • Illuminate\Cache\Events\CacheHit (123μs)
      • Illuminate\Cache\Events\CacheHit (269μs)
      • Illuminate\Cache\Events\CacheHit (213μs)
      • Illuminate\Cache\Events\CacheHit (161μs)
      • Illuminate\Cache\Events\CacheHit (176μs)
      • Illuminate\Cache\Events\CacheHit (159μs)
      • Illuminate\Cache\Events\CacheHit (194μs)
      • Illuminate\Cache\Events\CacheHit (180μs)
      • Illuminate\Cache\Events\CacheHit (553μs)
      • Illuminate\Cache\Events\CacheHit (9.68ms)
      • Illuminate\Cache\Events\CacheHit (435μs)
      • Illuminate\Cache\Events\CacheHit (178μs)
      • Illuminate\Cache\Events\CacheHit (216μs)
      • Illuminate\Cache\Events\CacheHit (258μs)
      • Illuminate\Cache\Events\CacheHit (204μs)
      • Illuminate\Cache\Events\CacheHit (171μs)
      • Illuminate\Cache\Events\CacheHit (179μs)
      • Illuminate\Cache\Events\CacheHit (157μs)
      • Illuminate\Cache\Events\CacheHit (177μs)
      • Illuminate\Cache\Events\CacheHit (202μs)
      • Illuminate\Cache\Events\CacheHit (152μs)
      • Illuminate\Cache\Events\CacheHit (145μs)
      • Illuminate\Cache\Events\CacheHit (153μs)
      • Illuminate\Cache\Events\CacheHit (168μs)
      • Illuminate\Cache\Events\CacheHit (234μs)
      • Illuminate\Cache\Events\CacheHit (175μs)
      • Illuminate\Cache\Events\CacheHit (1.06ms)
      • Illuminate\Cache\Events\CacheHit (167μs)
      • Illuminate\Cache\Events\CacheHit (188μs)
      • Illuminate\Cache\Events\CacheHit (171μs)
      • Illuminate\Cache\Events\CacheHit (186μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (348μs)
      • Illuminate\Cache\Events\CacheHit (161μs)
      • Illuminate\Cache\Events\CacheHit (183μs)
      • Illuminate\Cache\Events\CacheHit (223μs)
      • Illuminate\Cache\Events\CacheHit (186μs)
      • Illuminate\Cache\Events\CacheHit (155μs)
      • Illuminate\Cache\Events\CacheHit (535μs)
      • Illuminate\Cache\Events\CacheHit (184μs)
      • Illuminate\Cache\Events\CacheHit (195μs)
      • Illuminate\Cache\Events\CacheHit (381μs)
      • Illuminate\Cache\Events\CacheHit (225μs)
      • Illuminate\Cache\Events\CacheHit (169μs)
      • Illuminate\Cache\Events\CacheHit (220μs)
      • Illuminate\Cache\Events\CacheHit (191μs)
      • Illuminate\Cache\Events\CacheHit (1.3ms)
      • Illuminate\Cache\Events\CacheHit (283μs)
      • Illuminate\Cache\Events\CacheHit (384μs)
      • Illuminate\Cache\Events\CacheHit (291μs)
      • Illuminate\Cache\Events\CacheHit (215μs)
      • Illuminate\Cache\Events\CacheHit (182μs)
      • Illuminate\Cache\Events\CacheHit (372μs)
      • Illuminate\Cache\Events\CacheHit (8.47ms)
      • Illuminate\Cache\Events\CacheHit (214μs)
      • Illuminate\Cache\Events\CacheHit (404μs)
      • Illuminate\Cache\Events\CacheHit (269μs)
      • Illuminate\Cache\Events\CacheHit (222μs)
      • Illuminate\Cache\Events\CacheHit (202μs)
      • Illuminate\Cache\Events\CacheHit (167μs)
      • Illuminate\Cache\Events\CacheHit (179μs)
      • Illuminate\Cache\Events\CacheHit (156μs)
      • Illuminate\Cache\Events\CacheHit (177μs)
      • Illuminate\Cache\Events\CacheHit (156μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (213μs)
      • Illuminate\Cache\Events\CacheHit (1.47ms)
      • Illuminate\Cache\Events\CacheHit (272μs)
      • Illuminate\Cache\Events\CacheHit (266μs)
      • Illuminate\Cache\Events\CacheHit (194μs)
      • Illuminate\Cache\Events\CacheHit (1.04ms)
      • Illuminate\Cache\Events\CacheHit (294μs)
      • Illuminate\Cache\Events\CacheHit (213μs)
      • Illuminate\Cache\Events\CacheHit (311μs)
      • Illuminate\Cache\Events\CacheHit (305μs)
      • Illuminate\Cache\Events\CacheHit (197μs)
      • Illuminate\Cache\Events\CacheHit (208μs)
      • Illuminate\Cache\Events\CacheHit (186μs)
      • Illuminate\Cache\Events\CacheHit (4.42ms)
      • Illuminate\Cache\Events\CacheHit (240μs)
      • Illuminate\Cache\Events\CacheHit (1.46ms)
      • Illuminate\Cache\Events\CacheHit (197μs)
      • Illuminate\Cache\Events\CacheHit (279μs)
      • Illuminate\Cache\Events\CacheHit (439μs)
      • Illuminate\Cache\Events\CacheHit (252μs)
      • Illuminate\Cache\Events\CacheHit (213μs)
      • Illuminate\Cache\Events\CacheHit (201μs)
      • Illuminate\Cache\Events\CacheHit (171μs)
      • Illuminate\Cache\Events\CacheHit (187μs)
      • Illuminate\Cache\Events\CacheHit (163μs)
      • Illuminate\Cache\Events\CacheHit (8.27ms)
      • Illuminate\Cache\Events\CacheHit (199μs)
      • Illuminate\Cache\Events\CacheHit (213μs)
      • Illuminate\Cache\Events\CacheHit (257μs)
      • Illuminate\Cache\Events\CacheHit (205μs)
      • Illuminate\Cache\Events\CacheHit (172μs)
      • Illuminate\Cache\Events\CacheHit (266μs)
      • Illuminate\Cache\Events\CacheHit (158μs)
      • Illuminate\Cache\Events\CacheHit (199μs)
      • Illuminate\Cache\Events\CacheHit (154μs)
      • Illuminate\Cache\Events\CacheHit (190μs)
      • Illuminate\Cache\Events\CacheHit (170μs)
      • Illuminate\Cache\Events\CacheHit (193μs)
      • Illuminate\Cache\Events\CacheHit (259μs)
      • Illuminate\Cache\Events\CacheHit (194μs)
      • Illuminate\Cache\Events\CacheHit (171μs)
      • Illuminate\Cache\Events\CacheHit (197μs)
      • Illuminate\Cache\Events\CacheHit (167μs)
      • Illuminate\Cache\Events\CacheHit (202μs)
      • Illuminate\Cache\Events\CacheHit (1.56ms)
      • Illuminate\Cache\Events\CacheHit (253μs)
      • Illuminate\Cache\Events\CacheHit (196μs)
      • Illuminate\Cache\Events\CacheHit (207μs)
      • Illuminate\Cache\Events\CacheHit (179μs)
      • Illuminate\Cache\Events\CacheHit (207μs)
      • Illuminate\Cache\Events\CacheHit (172μs)
      • creating: site.layouts.app (629μs)
      • composing: site.layouts.app (22μs)
      • creating: components.canonical (365μs)
      • composing: components.canonical (85μs)
      • creating: components.open-graph (156μs)
      • composing: components.open-graph (76μs)
      • creating: site.headers.header (2.06ms)
      • composing: site.headers.header (85μs)
      • Illuminate\Cache\Events\CacheHit (2.22ms)
      • creating: components.footer (74μs)
      • composing: components.footer (80μs)
      • Illuminate\Cache\Events\CacheHit (1.12ms)
      • Illuminate\Cache\Events\CacheHit (487μs)
      • Illuminate\Cache\Events\CacheHit (693μs)
      • Illuminate\Cache\Events\CacheHit (215μs)
      • Illuminate\Cache\Events\CacheHit (191μs)
      • Illuminate\Cache\Events\CacheHit (182μs)
      • Illuminate\Cache\Events\CacheHit (189μs)
      • Illuminate\Cache\Events\CacheHit (313μs)
      • Illuminate\Cache\Events\CacheHit (13.36ms)
      • Illuminate\Cache\Events\CacheHit (474μs)
      • Illuminate\Cache\Events\CacheHit (215μs)
      • Illuminate\Cache\Events\CacheHit (315μs)
      • Illuminate\Cache\Events\CacheHit (244μs)
      • Illuminate\Cache\Events\CacheHit (206μs)
      • creating: components.forms.contact-us (427μs)
      • composing: components.forms.contact-us (322μs)
      • creating: components.forms.get-started (136μs)
      • composing: components.forms.get-started (57μs)
      • creating: components.forms.free-tool-download (71μs)
      • composing: components.forms.free-tool-download (40μs)
      • creating: components.forms.claim-free-worksheet (66μs)
      • composing: components.forms.claim-free-worksheet (127μs)
      • creating: components.forms.tutor-subscription-waitlist (169μs)
      • composing: components.forms.tutor-subscription-waitlist (129μs)
      • creating: components.forms.tutor-subscription-join (182μs)
      • composing: components.forms.tutor-subscription-join (65μs)
      • creating: components.forms.tutor-support (94μs)
      • composing: components.forms.tutor-support (61μs)
      • 321 x Illuminate\Cache\Events\CacheHit (23.58%)
        201ms
        10 x Illuminate\Database\Events\StatementPrepared (6.25%)
        53.36ms
        10 x Illuminate\Database\Events\QueryExecuted (2.7%)
        23.03ms
        1 x Illuminate\Foundation\Events\LocaleUpdated (0.46%)
        3.97ms
        1 x creating: site.headers.header (0.24%)
        2.06ms
        1 x Illuminate\Cache\Events\KeyWritten (0.13%)
        1.12ms
        1 x Illuminate\Database\Events\ConnectionEstablished (0.12%)
        1.05ms
        1 x Illuminate\Routing\Events\Routing (0.09%)
        776μs
        1 x creating: homework.show (0.09%)
        756μs
        1 x creating: site.layouts.app (0.07%)
        629μs
        1 x eloquent.booting: App\Models\SubjectCat (0.07%)
        570μs
        1 x creating: components.breadcrumbs (0.07%)
        556μs
        18 x eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (0.06%)
        491μs
        1 x Illuminate\Routing\Events\RouteMatched (0.06%)
        490μs
        7 x eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (0.05%)
        438μs
        1 x creating: components.forms.contact-us (0.05%)
        427μs
        1 x creating: components.canonical (0.04%)
        365μs
        1 x composing: components.forms.contact-us (0.04%)
        322μs
        2 x eloquent.retrieved: App\Models\Subject (0.03%)
        263μs
        1 x eloquent.booting: App\Models\HomeworkLibrary\HomeworkLibraryFile (0.03%)
        259μs
        1 x composing: homework.show (0.03%)
        253μs
        1 x Illuminate\Cache\Events\CacheMissed (0.03%)
        237μs
        1 x composing: components.breadcrumbs (0.03%)
        232μs
        1 x creating: components.forms.tutor-subscription-join (0.02%)
        182μs
        1 x eloquent.booting: App\Models\HomeworkLibrary\HomeworkLibrary (0.02%)
        181μs
        2 x eloquent.retrieved: App\Models\SubjectCat (0.02%)
        170μs
        1 x creating: components.forms.tutor-subscription-waitlist (0.02%)
        169μs
        1 x creating: components.open-graph (0.02%)
        156μs
        1 x creating: components.forms.get-started (0.02%)
        136μs
        1 x eloquent.booted: App\Models\HomeworkLibrary\HomeworkLibrary (0.02%)
        134μs
        1 x composing: components.forms.tutor-subscription-waitlist (0.02%)
        129μs
        1 x composing: components.forms.claim-free-worksheet (0.01%)
        127μs
        1 x creating: components.forms.tutor-support (0.01%)
        94μs
        1 x composing: components.canonical (0.01%)
        85μs
        1 x composing: site.headers.header (0.01%)
        85μs
        1 x composing: components.footer (0.01%)
        80μs
        1 x eloquent.booting: App\Models\Subject (0.01%)
        78μs
        1 x composing: components.open-graph (0.01%)
        76μs
        1 x creating: components.footer (0.01%)
        74μs
        1 x creating: components.forms.free-tool-download (0.01%)
        71μs
        1 x creating: components.forms.claim-free-worksheet (0.01%)
        66μs
        1 x composing: components.forms.tutor-subscription-join (0.01%)
        65μs
        1 x eloquent.booted: App\Models\HomeworkLibrary\HomeworkLibraryFile (0.01%)
        63μs
        1 x eloquent.booted: App\Models\SubjectCat (0.01%)
        62μs
        1 x composing: components.forms.tutor-support (0.01%)
        61μs
        1 x eloquent.booted: App\Models\Subject (0.01%)
        60μs
        1 x composing: components.forms.get-started (0.01%)
        57μs
        1 x composing: components.forms.free-tool-download (0%)
        40μs
        1 x composing: site.layouts.app (0%)
        22μs
      14 templates were rendered
      • 1x homework.showshow.blade.phpblade
      • 1x components.breadcrumbsbreadcrumbs.blade.phpblade
      • 1x site.layouts.appapp.blade.phpblade
      • 1x components.canonicalcanonical.blade.phpblade
      • 1x components.open-graphopen-graph.blade.phpblade
      • 1x site.headers.headerheader.blade.phpblade
      • 1x components.footerfooter.blade.phpblade
      • 1x components.forms.contact-uscontact-us.blade.phpblade
      • 1x components.forms.get-startedget-started.blade.phpblade
      • 1x components.forms.free-tool-downloadfree-tool-download.blade.phpblade
      • 1x components.forms.claim-free-worksheetclaim-free-worksheet.blade.phpblade
      • 1x components.forms.tutor-subscription-waitlisttutor-subscription-waitlist.blade.phpblade
      • 1x components.forms.tutor-subscription-jointutor-subscription-join.blade.phpblade
      • 1x components.forms.tutor-supporttutor-support.blade.phpblade
      uri
      GET college-homework-library/{category}/{subject}/{id}
      middleware
      web, utm.parameters
      controller
      App\Http\Controllers\HomeworkLibraryController@show
      namespace
      where
      as
      homework.show
      file
      app/Http/Controllers/HomeworkLibraryController.php:79-176
      10 statements were executed, 4 of which were duplicates, 6 unique. Show only duplicated57.06ms
      • Connection Establishedtwenty4_siteHomeworkLibraryController.php#91
        Backtrace
        • 13. app/Http/Controllers/HomeworkLibraryController.php:91
        • 14. vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
        • 15. vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43
        • 16. vendor/laravel/framework/src/Illuminate/Routing/Route.php:260
        • 17. vendor/laravel/framework/src/Illuminate/Routing/Route.php:205
      • select * from `solutionslibrary` where `status` = 'published' and `price` > 0 and `solutionslibrary`.`id` = '32756' limit 1
        13.45mstwenty4_siteHomeworkLibraryController.php#97
        Bindings
        • 0: published
        • 1: 0
        • 2: 32756
        Backtrace
        • 16. app/Http/Controllers/HomeworkLibraryController.php:97
        • 17. vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
        • 18. vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43
        • 19. vendor/laravel/framework/src/Illuminate/Routing/Route.php:260
        • 20. vendor/laravel/framework/src/Illuminate/Routing/Route.php:205
      • select * from `subjects` where `subjects`.`id` in (113)
        11.61mstwenty4_siteHomeworkLibraryController.php#97
        Backtrace
        • 21. app/Http/Controllers/HomeworkLibraryController.php:97
        • 22. vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
        • 23. vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43
        • 24. vendor/laravel/framework/src/Illuminate/Routing/Route.php:260
        • 25. vendor/laravel/framework/src/Illuminate/Routing/Route.php:205
      • select * from `solutionslibrary_files` where `solutionslibrary_files`.`solutionlib_id` in (32756)
        1.41mstwenty4_siteHomeworkLibraryController.php#97
        Backtrace
        • 21. app/Http/Controllers/HomeworkLibraryController.php:97
        • 22. vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
        • 23. vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43
        • 24. vendor/laravel/framework/src/Illuminate/Routing/Route.php:260
        • 25. vendor/laravel/framework/src/Illuminate/Routing/Route.php:205
      • select * from `subject_cats` where `subject_cats`.`id` = 3 limit 1
        3.05mstwenty4_siteHomeworkLibrary.php#201
        Bindings
        • 0: 3
        Backtrace
        • 20. app/Models/HomeworkLibrary/HomeworkLibrary.php:201
        • 26. app/Http/Controllers/HomeworkLibraryController.php:105
        • 27. vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
        • 28. vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43
        • 29. vendor/laravel/framework/src/Illuminate/Routing/Route.php:260
      • select * from `solutionslibrary` where `id` <> 32756 and `subject` = 113 and `status` = 'published' and `price` > 0 order by RAND() limit 6
        7.9mstwenty4_siteHomeworkLibraryRepository.php#30
        Bindings
        • 0: 32756
        • 1: 113
        • 2: published
        • 3: 0
        Backtrace
        • 14. app/Repositories/HomeworkLibraryRepository.php:30
        • 15. vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 16. vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:419
        • 18. app/Repositories/HomeworkLibraryRepository.php:39
        • 19. app/Http/Controllers/HomeworkLibraryController.php:139
      • select * from `subjects` where `subjects`.`id` in (113)
        1.3mstwenty4_siteHomeworkLibraryRepository.php#30
        Backtrace
        • 19. app/Repositories/HomeworkLibraryRepository.php:30
        • 20. vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 21. vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:419
        • 23. app/Repositories/HomeworkLibraryRepository.php:39
        • 24. app/Http/Controllers/HomeworkLibraryController.php:139
      • select * from `solutionslibrary_files` where `solutionslibrary_files`.`solutionlib_id` = 32756 and `solutionslibrary_files`.`solutionlib_id` is not null and `publish` = 'question' order by `order` asc, `id` asc
        4.87mstwenty4_siteHomeworkLibrary.php#260
        Bindings
        • 0: 32756
        • 1: question
        Backtrace
        • 15. app/Models/HomeworkLibrary/HomeworkLibrary.php:260
        • 16. app/Transformers/HomeworkLibrary/HomeworkLibraryTransformer.php:58
        • 19. vendor/league/fractal/src/TransformerAbstract.php:128
        • 20. vendor/league/fractal/src/TransformerAbstract.php:107
        • 21. vendor/league/fractal/src/Scope.php:383
      • select * from `solutionslibrary_files` where `solutionslibrary_files`.`solutionlib_id` = 32756 and `solutionslibrary_files`.`solutionlib_id` is not null and `publish` = 'teaser' order by `order` asc, `id` asc
        7.63mstwenty4_siteHomeworkLibrary.php#260
        Bindings
        • 0: 32756
        • 1: teaser
        Backtrace
        • 15. app/Models/HomeworkLibrary/HomeworkLibrary.php:260
        • 16. app/Transformers/HomeworkLibrary/HomeworkLibraryTransformer.php:69
        • 19. vendor/league/fractal/src/TransformerAbstract.php:128
        • 20. vendor/league/fractal/src/TransformerAbstract.php:107
        • 21. vendor/league/fractal/src/Scope.php:383
      • select * from `solutionslibrary_files` where `solutionslibrary_files`.`solutionlib_id` = 32756 and `solutionslibrary_files`.`solutionlib_id` is not null and `publish` = 'solution' order by `order` asc, `id` asc
        1.16mstwenty4_siteHomeworkLibrary.php#260
        Bindings
        • 0: 32756
        • 1: solution
        Backtrace
        • 15. app/Models/HomeworkLibrary/HomeworkLibrary.php:260
        • 16. app/Transformers/HomeworkLibrary/HomeworkLibraryTransformer.php:80
        • 19. vendor/league/fractal/src/TransformerAbstract.php:128
        • 20. vendor/league/fractal/src/TransformerAbstract.php:107
        • 21. vendor/league/fractal/src/Scope.php:383
      • select * from `subject_cats` where `subject_cats`.`id` = 3 limit 1
        4.68mstwenty4_siteHomeworkLibrary.php#201
        Bindings
        • 0: 3
        Backtrace
        • 20. app/Models/HomeworkLibrary/HomeworkLibrary.php:201
        • 32. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
        • 33. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
        • 34. vendor/livewire/livewire/src/ComponentConcerns/RendersLivewireComponents.php:69
        • 35. vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70
      App\Models\HomeworkLibrary\HomeworkLibraryFile
      18HomeworkLibraryFile.php
      App\Models\HomeworkLibrary\HomeworkLibrary
      7HomeworkLibrary.php
      App\Models\Subject
      2Subject.php
      App\Models\SubjectCat
      2SubjectCat.php
          _token
          lgHPHwhr9mqFdvhVxI2XAOyNBL9tuSP635QQXghg
          utm_source
          direct
          redirectUrl
          /college-homework-library/Computer-Science/Verilog-VHDL/32756
          _previous
          array:1 [ "url" => "https://staging.dev.24houranswers.com/college-homework-library/Computer-Scienc...
          _flash
          array:2 [ "old" => [] "new" => [] ]
          PHPDEBUGBAR_STACK_DATA
          []
          path_info
          /college-homework-library/Computer-Science/Verilog-VHDL/32756
          status_code
          200
          
          status_text
          OK
          format
          html
          content_type
          text/html; charset=UTF-8
          request_query
          []
          
          request_request
          []
          
          request_headers
          0 of 0
          array:21 [ "priority" => array:1 [ 0 => "u=0, i" ] "accept-encoding" => array:1 [ 0 => "gzip, deflate, br, zstd" ] "sec-fetch-dest" => array:1 [ 0 => "document" ] "sec-fetch-user" => array:1 [ 0 => "?1" ] "sec-fetch-mode" => array:1 [ 0 => "navigate" ] "sec-fetch-site" => array:1 [ 0 => "none" ] "accept" => array:1 [ 0 => "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7" ] "user-agent" => array:1 [ 0 => "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" ] "upgrade-insecure-requests" => array:1 [ 0 => "1" ] "sec-ch-ua-platform" => array:1 [ 0 => ""Windows"" ] "sec-ch-ua-mobile" => array:1 [ 0 => "?0" ] "sec-ch-ua" => array:1 [ 0 => ""HeadlessChrome";v="129", "Not=A?Brand";v="8", "Chromium";v="129"" ] "cache-control" => array:1 [ 0 => "no-cache" ] "pragma" => array:1 [ 0 => "no-cache" ] "x-amzn-trace-id" => array:1 [ 0 => "Root=1-67fc92c6-7b9844253ecfee881ca7a0eb" ] "host" => array:1 [ 0 => "staging.dev.24houranswers.com" ] "x-forwarded-port" => array:1 [ 0 => "443" ] "x-forwarded-proto" => array:1 [ 0 => "https" ] "x-forwarded-for" => array:1 [ 0 => "3.22.234.133" ] "content-length" => array:1 [ 0 => "" ] "content-type" => array:1 [ 0 => "" ] ]
          request_cookies
          []
          
          response_headers
          0 of 0
          array:5 [ "content-type" => array:1 [ 0 => "text/html; charset=UTF-8" ] "cache-control" => array:1 [ 0 => "no-cache, private" ] "date" => array:1 [ 0 => "Mon, 14 Apr 2025 04:44:55 GMT" ] "set-cookie" => array:2 [ 0 => "XSRF-TOKEN=eyJpdiI6IjhIaC9CNEhINjVzV1RGTlUrV2laYXc9PSIsInZhbHVlIjoiRHN2TGFLSFhhbTlpTm44RGwxNUJxYmd0Qkh6ckQ0M1h4RU50d2RIN2tjS0c3Y3BVYSs1YUp0aHM3NlRrR2lxS1dXeVlzK0t5RmsvTUlwK3JGNWE1L3EwZXFGVGM1MmtocElqdXFtR3ROUVZRVWc0cGpaaktkS2hsbG1wZ0czcXYiLCJtYWMiOiI4N2VjMTAyZDQ4ODAxZGJhYzBlN2YzNzQ4NmI0Y2FiNDYxNzEzNjA3ODgyNmMwYWM3MWJhZTM2NDEwNWU2YTgzIiwidGFnIjoiIn0%3D; expires=Mon, 14 Apr 2025 06:44:55 GMT; Max-Age=7200; path=/; domain=.24houranswers.com; samesite=laxXSRF-TOKEN=eyJpdiI6IjhIaC9CNEhINjVzV1RGTlUrV2laYXc9PSIsInZhbHVlIjoiRHN2TGFLSFhhbTlpTm44RGwxNUJxYmd0Qkh6ckQ0M1h4RU50d2RIN2tjS0c3Y3BVYSs1YUp0aHM3NlRrR2lxS1dXeVlzK" 1 => "24houranswers_session=eyJpdiI6Im5SL2J1OHg0d3FwMXhzWDBuRDgzUGc9PSIsInZhbHVlIjoiV2VzemcyN2lJdmpteXREeW9wdnJWT0svL2hiYk5CaFdISWNvNGppT1dRdlVtTmdVZzFxZWpNU0Q0c0lmWkNZSHdUa2xwRU9RYlQ4eU50L1VPT3BNb1NjaU5hZ3VXZmw4c01ITXhjdHIyYWZHQXl3SG9pMkRaajlGaWlZM0JyTGkiLCJtYWMiOiJhNGE5YjNiYTE4NjQ3ZTM5NWEzNGY5ZWI2YzkwMTkxYjYwNmI0YjBhMjFjMjAzMjQyYTM5ZWVhZWNiYTg2NGJkIiwidGFnIjoiIn0%3D; expires=Mon, 14 Apr 2025 06:44:55 GMT; Max-Age=7200; path=/; domain=.24houranswers.com; httponly; samesite=lax24houranswers_session=eyJpdiI6Im5SL2J1OHg0d3FwMXhzWDBuRDgzUGc9PSIsInZhbHVlIjoiV2VzemcyN2lJdmpteXREeW9wdnJWT0svL2hiYk5CaFdISWNvNGppT1dRdlVtTmdVZzFxZWpNU0Q0c0lmWk" ] "Set-Cookie" => array:2 [ 0 => "XSRF-TOKEN=eyJpdiI6IjhIaC9CNEhINjVzV1RGTlUrV2laYXc9PSIsInZhbHVlIjoiRHN2TGFLSFhhbTlpTm44RGwxNUJxYmd0Qkh6ckQ0M1h4RU50d2RIN2tjS0c3Y3BVYSs1YUp0aHM3NlRrR2lxS1dXeVlzK0t5RmsvTUlwK3JGNWE1L3EwZXFGVGM1MmtocElqdXFtR3ROUVZRVWc0cGpaaktkS2hsbG1wZ0czcXYiLCJtYWMiOiI4N2VjMTAyZDQ4ODAxZGJhYzBlN2YzNzQ4NmI0Y2FiNDYxNzEzNjA3ODgyNmMwYWM3MWJhZTM2NDEwNWU2YTgzIiwidGFnIjoiIn0%3D; expires=Mon, 14-Apr-2025 06:44:55 GMT; domain=.24houranswers.com; path=/XSRF-TOKEN=eyJpdiI6IjhIaC9CNEhINjVzV1RGTlUrV2laYXc9PSIsInZhbHVlIjoiRHN2TGFLSFhhbTlpTm44RGwxNUJxYmd0Qkh6ckQ0M1h4RU50d2RIN2tjS0c3Y3BVYSs1YUp0aHM3NlRrR2lxS1dXeVlzK" 1 => "24houranswers_session=eyJpdiI6Im5SL2J1OHg0d3FwMXhzWDBuRDgzUGc9PSIsInZhbHVlIjoiV2VzemcyN2lJdmpteXREeW9wdnJWT0svL2hiYk5CaFdISWNvNGppT1dRdlVtTmdVZzFxZWpNU0Q0c0lmWkNZSHdUa2xwRU9RYlQ4eU50L1VPT3BNb1NjaU5hZ3VXZmw4c01ITXhjdHIyYWZHQXl3SG9pMkRaajlGaWlZM0JyTGkiLCJtYWMiOiJhNGE5YjNiYTE4NjQ3ZTM5NWEzNGY5ZWI2YzkwMTkxYjYwNmI0YjBhMjFjMjAzMjQyYTM5ZWVhZWNiYTg2NGJkIiwidGFnIjoiIn0%3D; expires=Mon, 14-Apr-2025 06:44:55 GMT; domain=.24houranswers.com; path=/; httponly24houranswers_session=eyJpdiI6Im5SL2J1OHg0d3FwMXhzWDBuRDgzUGc9PSIsInZhbHVlIjoiV2VzemcyN2lJdmpteXREeW9wdnJWT0svL2hiYk5CaFdISWNvNGppT1dRdlVtTmdVZzFxZWpNU0Q0c0lmWk" ] ]
          session_attributes
          0 of 0
          array:6 [ "_token" => "lgHPHwhr9mqFdvhVxI2XAOyNBL9tuSP635QQXghg" "utm_source" => "direct" "redirectUrl" => "/college-homework-library/Computer-Science/Verilog-VHDL/32756" "_previous" => array:1 [ "url" => "https://staging.dev.24houranswers.com/college-homework-library/Computer-Science/Verilog-VHDL/32756" ] "_flash" => array:2 [ "old" => [] "new" => [] ] "PHPDEBUGBAR_STACK_DATA" => [] ]