Earned Value Example (2024)

In this example we will usea project with two tasks:

IDName
100Set up Database
200Build Application

We would like to produce a weekly project update to the Chief Technology Officer. The earned value method will give us metrics that include:

  • Schedule status
  • Budget status
  • End-of-project projections for both

For this project, because this is an example we will simply produce all of the earned value metrics in one table.

Project Planning

As we showed you during the introduction,earned value analysis requires four things to be set up during the project planning phase:

  1. Dividing the project into tasks
  2. Assigning each task a start and end date
  3. Assigning each task a budget
  4. Choosing a project status period

Here is what our example projectmight look like after project planning:

IDNameStartEndBudget
100Set up DatabaseMar. 1Mar.10$10,000
200Build ApplicationMar. 7Mar.20$15,000
TOTAL$25,000

At this point we also need to make a few assumptions. Let’s assume it’s March 3 today and we are doing the analysis up to the current point (today).

The Earned Value Calculation

To recap, the earned value calculation at each predefined status point is a 5 step process. Each step has several variables that are calculated during that step

  1. Gather Work Performance Information (the inputs)
    • Budget at Completion (BAC)
    • Planned Value (PV)
    • Earned Value (EV)
    • Actual Cost (AC)
  2. Determine Schedule Status
    • Schedule Variance (SV)
    • Schedule Performance Index (SPI)
  3. Determine Cost Status
    • Cost Variance (CV)
    • Cost Performance Index (CPI)
  4. Forecasting
    • Estimate to Complete (ETC)
    • Estimate at Completion (EAC)
    • Variance at Completion (VAC)
    • To Complete Performance Index (TCPI)
  5. Reporting

Gather Work Performance Information

To start, the project manager gathers the inputs to the earned value analysis.

  1. Budget at Completion (BAC)
  2. Planned Value (PV)
  3. Earned Value (EV)
  4. Actual Cost (AC)

Budget at Completion (BAC)

The Budget at Completion (BAC) simply refers to the budget of each task. Thus, we will rename the budget column‘BAC’:

IDNameStartEndBAC
100Set up DatabaseMar. 1Mar.10$10,000
200Build ApplicationMar. 7Mar.20$15,000
TOTAL$25,000

Planned Value (PV)

Also called the Budgeted Cost of Work Scheduled (BCWS), the PV is the authorized, time-phased budget assigned to accomplish the work. It is the amount that the project is supposed to be complete up to that status point.

Let’s say it’s March 3 today. The planned percent complete is 30% based on the start and end dates. Therefore,

Task 100: PV = 30% x $10,000 = $3,000.
Task 200: PV = $0. (On March 3, no work is planned yet)

IDNameStartEndBACPV
100Set up DatabaseMar. 1Mar.10$10,000$3,000
200Build ApplicationMar. 7Mar.20$15,000$0
TOTAL$25,000$3,000

Earned Value (EV)

Also called the Budget Cost of Work Performed (BCWP), the EV is the measure of the work performed at a specific point in time, expressed in terms of the approved budget authorized for that work. It is the amount that the project is actually complete up to that status point.

Let’s say that after discussions with the applicable project team members and inspection of the progress, we determine that the first task is 20% complete and the second task is 10% complete.

Task 100: EV = 20% x $10,000 = $2,000.
Task 200: EV = 10% x $15,000 = $1,500.

We will add another column to our table.

IDNameStartEndBACPVEV
100Set up DatabaseMar. 1Mar.10$10,000$3,000$2,000
200Build ApplicationMar. 7Mar.20$15,000$0$1,500
TOTAL$25,000$3,000$3,500

Actual Cost (AC)

Also called the Actual Cost of Work Performed (ACWP), the AC is the realized cost for the work performed during a specific time period. It is the actual cost of the work up to that status point.

After reviewing our time and expense software and compiling any miscellaneous expenses, we determine that the actual cost of the first task is $4,500 and the second task is $2,000.

IDNameStartEndBACPVEVAC
100Set up DatabaseMar. 1Mar.10$10,000$3,000$2,000$4,500
200Build ApplicationMar. 7Mar.20$15,000$0$1,500$2,000
TOTAL$25,000$3,000$3,500$6,500

This is the end of the information gathering phase. At this point the project manager transitions from gathering project information to calculating project status.

Determine Schedule Status

In order to determine the project’s status as it relates to the schedule,we will calculate two variables from the initial fourwe gathered from the project data, above:

  1. Schedule Variance (SV)
  2. Schedule Performance Index (SPI)

Schedule Variance (SV)

The schedule variance tells you how far ahead or behind schedule the taskis in terms of the task budget. The formula is:

SV = EV – PV

  • If SV is negative, the task is behind schedule.
  • If SV is zero, the task is on schedule
  • If SV is positive, the task is ahead of schedule.

For example,

  • SV = -$500 means the project is behind schedule.
  • SV = $0 means the project is right on schedule.
  • SV = $500 means the project is ahead of schedule.

With the schedule variance, positive is good.

As before, we will add a column to the table for Schedule Variance.

Task 100: SV = $2,000 – $3,000 = -$1,000.
Task 200: SV = $1,500 – $0 = $1,500.

IDNameStartEndBACPVEVACSV
100Set up DatabaseMar. 1Mar.10$10,000$3,000$2,000$4,500-$1,000
200Build ApplicationMar. 7Mar.20$15,000$0$1,500$2,000$1,500
TOTAL$25,000$3,000$3,500$6,500$500

As you can see, the project has a positive schedule variance because one task is ahead and the other is behind.

SchedulePerformance Index (SPI)

The Schedule Performance Index (SPI) is similar to the Schedule Variance (SV). It also tells you how far ahead or behind schedule the taskis in terms of the task budget, but it is a relative measure rather than an absolute one. It tells you the efficiency of the task. The formula is:

SPI = EV / PV

  • If SPI is less than 1, the task is behind schedule.
  • If SPI is zero, the task is on schedule
  • If SPI is greater than 1, the task is ahead of schedule.

For example,

  • SPI = 0 means the project work has not started.
  • SPI = 0.5 means the project has performed half the work it was supposed to at this point.
  • SPI = 1.0 means the project is on schedule.
  • SPI = 2.0 means the project has performed twice the work it was supposed to at this point.

With the SPI, greater than 1.0 is good.

We will add a column to the table for SPI.

Task 100: SPI = $2,000 / $3,000 = 0.67.
Task 200: SPI = $1,500 / $0 = N/A.

IDNameStartEndBACPVEVACSVSPI
100Set up DatabaseMar. 1Mar.10$10,000$3,000$2,000$4,500-$1,0000.67
200Build ApplicationMar. 7Mar. 20$15,000$0$1,500$2,000$1,500N/A
TOTAL$25,000$3,000$3,500$6,500$5000.67

It is easy to see that the first task has accomplished only two thirds of what it should have at this point. Its efficiency is two thirds of that which was planned. But task 200 did not have any planned value at this point, therefore its SPIis effectively infinity. It can simply be ignored in the rest of the analysis.

Determine Cost Status

In order to calculate the project’s status as it relates to the budget, we will calculated two more variables:

  1. Cost Variance (CV)
  2. Cost Performance Index (CPI)

Cost Variance (CV)

The Cost Variance(CV)is the amount that the task is over or underits budget. The formula is:

CV = EV – AC

  • If CV is negative, the task is over budget.
  • If CV is zero, the task is on budget.
  • If CV is positive, the task is under budget.

For example,

  • CV = -$1,000 means the project is over budget.
  • CV = $0 means the project is right on budget.
  • CV = $1,000 means the project is under budget.

In the case of both CV and SV, positive is good.

We will add a column to the table for CV.

Task 100: CV = $2,000 – $4,500 = -$2,500.
Task 200: CV = $1,500 – $2.000 = -$500.

IDNameStartEndBACPVEVACSVSPICV
100Set up DatabaseMar. 1Mar.10$10,000$3,000$2,000$4,500-$1,0000.67-$2,500
200Build ApplicationMar. 7Mar.20$15,000$0$1,500$2,000$1,500N/A-$500
TOTAL$25,000$3,000$3,500$6,500$5000.67-$3,000

The projectis $3,000 over budget on a project value of $25,000. There is clearly a budget problem, but not a schedule problem.

Cost Performance Index (CPI)

The Cost Performance Index (CPI),like the Cost Variance, is a measure of the cost performance of the project, but it is a relative instead of an absolute measure. It tells you the cost efficiency of the project. The formula is:

CPI = EV / AC

  • If CPI is less than 1, the task isover budget.
  • If CPI is zero, the task is on budget.
  • If CPI is greater than 1, the task isunder budget.

For example,

  • CPI = 0 means the project work has not started.
  • CPI = 0.5 means the project has spent twice amount that it should have at this point.
  • CPI = 1.0 means the project is on schedule.
  • CPI = 2.0 means the project has spenthalf the amount that it should have at this point.

In the case of both CPI and SPI, greater than 1.0 is good.

We will add a column to the table for CPI.

Task 100: CPI = $2,000 / $4,500 = 0.44.
Task 200: CPI = $1,500 / $2,000 = 0.75.
TOTAL: CPI = $3,500 / $6,500 = 0.54.

IDNameStartEndBACPVEVACSVSPICVCPI
100Set up DatabaseMar. 1Mar.10$10,000$3,000$2,000$4,500-$1,0000.67-$2,5000.44
200Build ApplicationMar. 7Mar. 20$15,000$0$1,500$2,000$1,500N/A-$,5000.75
TOTAL$25,000$3,000$3,500$6,500$5000.67-$3,0000.54

The first taskhas spent more than twice what it should have at this point because CPI < 0.5. The second task is better but has spent one quarter too much. The project as a whole has spent just under twice what it was budgeted to at this point (CPI = 0.54). Note that in the case of SPI and CPI, the‘total’is an average, not a total.

This is the end of the metrics that tell you the current status. The last four variables give you projections (forecasts) to the end of the project.

Forecasting

There are four variables which allow the project manager to forecast the future performance of the project:

  1. Estimate to Complete (ETC)
  2. Estimate at Completion (EAC)
  3. Variance at Completion (VAC)
  4. To Complete Performance Index (TCPI)

Estimate to Complete (ETC)

ETC represents the expected cost required to complete the project. It measures only the future budget needed to complete the project, not the entire budget (that’s the EAC, next). It allows the project manager to compare the funding needs to finish the project with funding available.

There are two ways to calculate ETC:

  1. Based on past project performance:

    ETC = (BAC – EV) / CPI

  2. Based on a new estimate
    This is called a Management ETC. This means that a new estimate is created for the remaining tasks in the project.

In our example task we will calculate the ETC based on the past performance of the project. Again, we will add a column to the table for ETC.

Task 100: ETC = ($10,000 – $2,000) / 0.44 = $18,182.
Task 200: ETC = ($15,000 – $1,500) / 0.75 = $18,000.

IDNameStartEndBACPVEVACSVSPICVCPIETC
100Set up DatabaseMar. 1Mar.10$10,000$3,000$2,000$4,500-$1,0000.67-$2,5000.44$18,182
200Build ApplicationMar. 7Mar.20$15,000$0$1,500$2,000$1,500N/A-$5000.75$18,000
TOTAL$25,000$3,000$3,500$6,500$5000.67-$3,0000.54$36,182

Many project managers wouldn’t concern themselves too much about this project yet. It has spent $6,500 out of a project budget of $25,000. It’s still early, so there’s plenty of time to make up for it, right?

Wrong. The ETC of $36,182 is the expenditure to complete the project assuming the prior efficiency levels (a safe assumption). It also does not include the money already spent. If this project is not brought under control soon, it will go wildly over budget and schedule.

Often there are unique circ*mstances which don’t allow for a simple extrapolation to the end of the project. That’s where the Estimate at Completion (EAC) comes in.

Estimate at Completion (EAC)

The EAC is the full task or projectcost expected at completion (the new project budget). There are multiple ways to calculate it based on how you expect the future of the performance of the project to be:

  1. Future performance will be based on the budgeted cost
    If you think the existing variance was a unique event and the rest of the project should go according to plan, simply add the remaining project budget to the actual cost incurred to date (AC). This method does not assume the project finishes on budget. Rather it takes into account the one time event and adjusts the whole project plan upward or downward to determine the final result.

    EAC = AC + (BAC – EV)

  2. Future cost performance will be based on past cost performance
    If you think the past performance is not unusual and there is no reason to expect the project to perform any differently than it already has, you would use this formula.

    EAC = AC + [(BAC – EV) / CPI]

  3. Future cost performance will beinfluenced by past schedule performance
    Since schedule and cost performance are usually related, there could be a reason to adjust the cost performance by the schedule performance. In this case an average of the CPI and SPI are used to extrapolate the final project cost.

    EAC = AC + [(BAC -EV) / (CPI x SPI)]

    You could also use a combination of the past schedule or cost performance toextrapolate the final project cost. You could use only the schedule performance (SPI). Or you could figure in a small influence of the schedule performance. In the formula below, 20% of the SPI and 80% of the CPI has been used to determine the final project cost.

    EAC = AC + [(BAC -EV) / (0.8·CPI x 0.2·SPI)]

  4. A new estimate is produced
    In this case a Management ETC can be added to the to-date cost (AC) to determine the final EAC.

    EAC = AC + ETC

In our examplewe will predict that the current problems were caused by a one time event that isn’t likely to repeat itself. Thus, the EAC will use formula #1.

Task 100: EAC = AC + (BAC – EV) = $4,500 + ($10,000 – $2,000) = $12,500.
Task 200: EAC = AC + (BAC – EV) = $2,000 + ($15,000 – $1,500) = $15,500.

The table now looks like this:

IDNameStartEndBACPVEVACSVSPICVCPIETCEAC
100Set up DatabaseMar. 1Mar.10$10,000$3,000$2,000$4,500-$1,0000.67-$2,5000.44$18,182$12,500
200Build ApplicationMar. 7Mar.20$15,000$0$1,500$2,000$1,500N/A-$5000.75$18,000$15,500
TOTAL$25,000$3,000$3,500$6,500$5000.67-$3,0000.54$36,182$28,000

Now it looks alot better. The assumption of a one time cost expenditure near the beginning of the project results in a final project budget of $28,000 versus the $25,000 original budget.

Variance at Completion (VAC)

The VAC is a forecast of what the variance, specifically the Cost Variance (CV), will be upon the completion of the project. It isthe size of the expected cost overrun or underrun. In many situations the project manager must request additional funding as early as possible, or at least report the potential for an overrun. The VAC represents the size of this request.

The formula is:

VAC = BAC – EAC
= Old Budget – New Budget

This one is relatively simple. If you’ve calculated the EAC you’ve done the bigmath already, and the ‘new budget’ can simply be subtracted from the ‘old budget’ to determine the cost overrun or underrun.

The Variance at Completion is simply a future projected Cost Variance. It has the same units as CV. It is the same type of element.

We will once again add another column to the table:

Task 100: VAC = $10,000 – $12,500 = -$2,500.
Task 200: VAC = $15,000 – $15,500 = -$500.

IDNameStartEndBACPVEVACSVSPICVCPIETCEACVAC
100Set up DatabaseMar. 1Mar.10$10,000$3,000$2,000$4,500-$1,0000.67-$2,5000.44$18,182$12,500-$2,500
200Build ApplicationMar. 7Mar.20$15,000$0$1,500$2,000$1,500N/A-$5000.75$18,000$15,500-$500
TOTAL$25,000$3,000$3,500$6,500$5000.67-$3,0000.54$36,182$28,000-$3,000

Hence, the projected variance is -$3,000, and the project manager could obtain approval for the expected overrun as early as possible, if necessary.

To Complete Performance Index (TCPI)

The TCPI represents the efficiency level, specifically the CPI, that will make the project finish on time. It can be a powerful indicator because it is generally easy to ascertain if your people will be as productive as the indicator tells you. This indicator tends to be a bigger red flag than other indicators. If it says your people need to be twice as efficient as the schedule, it tends to make you take notice that action needs to be taken.

There are two ways to calculate the TCPI:

  1. To achieve the original budget
    If the goal is to achieve the original project budget, that is, the overrun or underrun has not resulted in a change to the project schedule and/or budget, the following formula applies:

    TCPI = (BAC – EV) / (BAC – AC)

  2. To achieve the revised budget
    If the goal is to achieve the project’s EAC, that is, the budget has been revised and an approved change to the project schedule/budget has occurred, use this formula. If additional funds covering the cost overrun have been requested and approved by the project sponsor, the EAC becomes the target of the project, and this scenario applies.

    TCPI = (BAC – EV) / (EAC – AC)

Obviously, the closer the project is to completion the higher the CPI that will be necessary to complete on budget. It can become extreme near the end.

Also, if the project has already spent more than its budget the TCPI will be negative.

TCPI is the last column in the table. We will assume the project budget has not been revised (EAC is simply a projection) and the goal is still the original project budget (formula #1, above).

Task 100: TCPI = ($10,000 – $2,000) / ($10,000 – $4,500) = 1.45.
Task 200: TCPI = ($15,000 – $1,500) / ($15,000 – $2,000) = 1.04.
TOTAL: TCPI = ($25,000 – $3,500) / ($25,000 – $6,500) = 1.16.

IDNameStartEndBACPVEVACSVSPICVCPIETCEACVACTCPI
100Set up DatabaseMar. 1Mar.10$10,000$3,000$2,000$4,500-$1,0000.67-$2,5000.44$18,182$12,500-$2,5001.45
200Build ApplicationMar. 7Mar.20$15,000$0$1,500$2,000$1,500N/A-$5000.75$18,000$15,500-$5001.04
TOTAL$25,000$3,000$3,500$6,500$5000.67-$3,0000.54$36,182$28,000-$3,0001.16

This project team must be 16% more efficient than they have been tofinish on budget.

This table can be reported directly to management. They might need some training on what the numbers mean but this is not an onerous task.

Conclusion

Congratulations, you have now completed our earned value management tutorial. We hope you’ve broadened your knowledge base and can use this information to get better results on real projects. Drop us a line in the Contact Us section to let us know how you’re applying this information, and we wish you good luck and much success.

Navigation

  • Previous Page: Earned ValueReporting
  • Home: Earned Value Tutorial
Earned Value Example (2024)

FAQs

Earned Value Example? ›

You can calculate the EV of a project by multiplying the percentage complete by the total project budget. For example, let's say you're 60% done, and your project budget is $100,000 — your earned value is then $60,000.

How do you calculate total earned value? ›

Earned value can be computed this way : Eearned Value = Percent complete (actual) x Task Budget. For example, if the actual percent complete is 50% and the task budget is $10,000 then the earned value of the project is $5,000, 50% of the budget provided for this project.

What is earned value for dummies? ›

The definition of earned value management for dummies is that EVM is a way to measure project performance on the basis of: Time - Comparing the amount of work which has been done compared to what was scheduled (are we going to deliver in time?)

What best defines earned value? ›

This method relies on a key measure known as the project's earned value. Oftentimes the term “earned value” is defined as the “budgeted cost of worked performed” or BCWP.

What is the difference between earned value and actual cost? ›

Earned Value (EV) indicates the value of work actually completed. Actual Cost (AC) reflects the money spent on the work accomplished.

What is earned value and examples? ›

Simply put, it's a quick way to tell if you're behind schedule or over budget on your project. You can calculate the EV of a project by multiplying the percentage complete by the total project budget. For example, let's say you're 60% done, and your project budget is $100,000 — your earned value is then $60,000.

What is the 50 50 rule when calculating value earned? ›

The system does the rest. With this rule, each activity is credited with (it “earns”) 50 percent of its budget when the start of that activity is reported and the remaining 50 percent when the finish is reported.

How is earned calculated? ›

How to Calculate Earned Value (EV)?
  1. Earned Value (EV): % complete x BAC. ...
  2. Planned Value (PV): The authorized budget assigned to scheduled work, usually at the control account level.
  3. Cost Variance (CV): EV – AC. ...
  4. Schedule Variance (SV): Calculated as EV – PV.
  5. Schedule Performance Index (SPI): Calculated as EV/PV.

What are the earned value Rules? ›

Determine the Earned Value (EV)

It is typically measured in terms of the budget allocated to completed tasks. You can calculate EV using methods such as: - 0/100 Rule: Assign 100% EV when a task is complete. - 50/50 Rule: Assign 50% EV when a task starts and the remaining 50% when it's complete.

Is earned value the same as revenue? ›

Definition of Earned Value

This includes money spent on materials and labor but does not include taxes. Revenue from the project: Revenue from a product or service is determined by how much people will pay for it. Earned Value can be graphed over time, based on weeks or milestones.

When should earned value be used? ›

In a predictive project scenario, organizations use earned value to measure the performance of projects because it: Provides an accurate and objective view of how close a project is to completion. Providing a picture of the project status facilitates better communication between stakeholders.

What are the three key dimensions used in earned value? ›

The three pillars for EVM are: scope, budget over time and progress data. From the schedule, you can determine the Planned Value (PV) – the work scheduled to be completed by a specific date - and compare it to Earned Value (EV), the budget for the amount of work completed.

What is the formula for earned value in Excel? ›

As mentioned earlier here is the formula to calculate the earned value: EV = Percent complete (actual) x Task Budget. 2. The planned value also known as Budgeted Cost of Work Scheduled (BCWS) is the amount of the task that is supposed to have been completed.

Can earned value exceed planned value? ›

While planned value refers to the work that should have been completed by a specific point in the schedule, earned value is the amount of work that has actually been completed. If the earned value is greater than the planned value, this indicates that the project is ahead of schedule.

How do you make actual cost equal to earned value? ›

If the CPI is equal to 1 (CPI=1), it means that the earned value is equal to the actual cost (EV/AC=1 then EV=AC), so the project is spending as planned.

What is the difference between value of work done and earned value? ›

Comparing VOWD with Earned Value

Earned Value serves primarily to track progress and compare completed work against planned work. While Earned Value reflects the physical percentage of completion against the approved budget, VOWD represents percent complete against the estimate at completion.

How is EV calculated? ›

EV is calculated by adding market capitalization and total debt, then subtracting all cash and cash equivalents. Comparative ratios using EV—such as a comparison of EV to earnings before interest and taxes (EBIT)—demonstrate how EV works better than market cap for assessing a company's value.

How do you calculate total earned income? ›

This is any income from wages, salaries, tips or any other earned income that is taxable. Do not include any non-taxable benefits in this total. Also include any earnings from farms, farm partnerships or businesses that did not require payment of self-employment taxes.

How to calculate eac? ›

Estimate at completion (EAC) is calculated as budget at completion divided by cost performance index. Formula 1 for EAC is as follows: Estimate at completion (EAC) = Budget at completion (BAC) / Cost performance index (CPI)

How do you calculate total earned money? ›

Total income includes all income sources before any deductions. This means you add up everything: wages, salaries, bonuses, tips, interest, dividends, capital gains, rental income, royalties, alimony, child support, unemployment benefits, and Social Security benefits.

Top Articles
Want $2K Per Month in Retirement? Buy These 3 Dividend Stocks Now.
Club Coins & Club Store — Words With Friends 2 Help Center
Mchoul Funeral Home Of Fishkill Inc. Services
Body Rubs Austin Texas
35105N Sap 5 50 W Nit
Slapstick Sound Effect Crossword
Tripadvisor Near Me
6813472639
Apne Tv Co Com
Simplify: r^4+r^3-7r^2-r+6=0 Tiger Algebra Solver
Skyward Login Jennings County
Uky Linkblue Login
Spider-Man: Across The Spider-Verse Showtimes Near Marcus Bay Park Cinema
Forum Phun Extra
Cta Bus Tracker 77
Joann Ally Employee Portal
FDA Approves Arcutis’ ZORYVE® (roflumilast) Topical Foam, 0.3% for the Treatment of Seborrheic Dermatitis in Individuals Aged 9 Years and Older - Arcutis Biotherapeutics
Hood County Buy Sell And Trade
14 Top-Rated Attractions & Things to Do in Medford, OR
Bleacher Report Philadelphia Flyers
Tracking every 2024 Trade Deadline deal
Sacramento Craigslist Cars And Trucks - By Owner
How rich were the McCallisters in 'Home Alone'? Family's income unveiled
Darktide Terrifying Barrage
Darknet Opsec Bible 2022
Wake County Court Records | NorthCarolinaCourtRecords.us
Haley Gifts :: Stardew Valley
Skip The Games Ventura
Final Exam Schedule Liberty University
Jefferson Parish Dump Wall Blvd
Umiami Sorority Rankings
Craigs List Jonesboro Ar
20+ Best Things To Do In Oceanside California
Pokemon Reborn Locations
Ashoke K Maitra. Adviser to CMD&#39;s. Received Lifetime Achievement Award in HRD on LinkedIn: #hr #hrd #coaching #mentoring #career #jobs #mba #mbafreshers #sales…
Janaki Kalaganaledu Serial Today Episode Written Update
888-822-3743
Despacito Justin Bieber Lyrics
Fedex Passport Locations Near Me
Chase Bank Zip Code
Garland County Mugshots Today
Headlining Hip Hopper Crossword Clue
Canonnier Beachcomber Golf Resort & Spa (Pointe aux Canonniers): Alle Infos zum Hotel
Haunted Mansion Showtimes Near Millstone 14
El Patron Menu Bardstown Ky
Oak Hill, Blue Owl Lead Record Finastra Private Credit Loan
View From My Seat Madison Square Garden
Okta Hendrick Login
Optimal Perks Rs3
Latest Posts
Article information

Author: Aracelis Kilback

Last Updated:

Views: 6398

Rating: 4.3 / 5 (64 voted)

Reviews: 87% of readers found this page helpful

Author information

Name: Aracelis Kilback

Birthday: 1994-11-22

Address: Apt. 895 30151 Green Plain, Lake Mariela, RI 98141

Phone: +5992291857476

Job: Legal Officer

Hobby: LARPing, role-playing games, Slacklining, Reading, Inline skating, Brazilian jiu-jitsu, Dance

Introduction: My name is Aracelis Kilback, I am a nice, gentle, agreeable, joyous, attractive, combative, gifted person who loves writing and wants to share my knowledge and understanding with you.