US WA Washington SUTA Wage Base us_wa_suta_wage_base 49800.0 US WA Washington SUTA Wage Base us_wa_suta_wage_base 52700.00 US WA Washington FML Wage Base us_wa_fml_wage_base 132900.00 US WA Washington FML Wage Base us_wa_fml_wage_base 137700.00 US WA Washington SUTA Rate us_wa_suta_rate 1.18 US WA Washington SUTA Rate us_wa_suta_rate 1.0 US WA Washington FML Rate (Total) us_wa_fml_rate 0.4 US WA Washington FML Rate (Total) us_wa_fml_rate 0.4 US WA Washington FML Rate (Employee) us_wa_fml_rate_ee 66.33 US WA Washington FML Rate (Employee) us_wa_fml_rate_ee 66.33 US WA Washington FML Rate (Employer) us_wa_fml_rate_er 33.67 US WA Washington FML Rate (Employer) us_wa_fml_rate_er 33.67 US Washington - Employment Security Department (Unemployment) US Washington - Employment Security Department (Unemployment) US Washington - Department of Labor & Industries US Washington - Department of Labor & Industries US Washington - Employment Security Department (PFML) US Washington - Employment Security Department (PFML) ER: US WA Washington State Unemployment (5208A/B) ER_US_WA_SUTA python result, _ = general_state_unemployment(payslip, categories, worked_days, inputs, wage_base='us_wa_suta_wage_base', rate='us_wa_suta_rate', state_code='WA') code result, result_rate = general_state_unemployment(payslip, categories, worked_days, inputs, wage_base='us_wa_suta_wage_base', rate='us_wa_suta_rate', state_code='WA') ER: US WA Washington State Family Medical Leave ER_US_WA_FML python result, _ = wa_washington_fml_er(payslip, categories, worked_days, inputs) code result, result_rate = wa_washington_fml_er(payslip, categories, worked_days, inputs) EE: US WA Washington State Family Medical Leave EE_US_WA_FML python result, _ = wa_washington_fml_ee(payslip, categories, worked_days, inputs) code result, result_rate = wa_washington_fml_ee(payslip, categories, worked_days, inputs) ER: US WA Washington State LNI ER_US_WA_LNI python result = is_us_state(payslip, 'WA') and payslip.dict.contract_id.us_payroll_config_value('workers_comp_ee_code') and worked_days.WORK100 and worked_days.WORK100.number_of_hours and payslip.dict.rule_parameter(payslip.dict.contract_id.us_payroll_config_value('workers_comp_er_code')) code result, result_rate = worked_days.WORK100.number_of_hours, -payslip.dict.rule_parameter(payslip.dict.contract_id.us_payroll_config_value('workers_comp_er_code')) EE: US WA Washington State LNI EE_US_WA_LNI python result = is_us_state(payslip, 'WA') and payslip.contract_id.us_payroll_config_value('workers_comp_ee_code') and worked_days.WORK100 and worked_days.WORK100.number_of_hours and payslip.dict.rule_parameter(payslip.contract_id.us_payroll_config_value('workers_comp_ee_code')) code result, result_rate = worked_days.WORK100.number_of_hours, -payslip.dict.rule_parameter(payslip.contract_id.us_payroll_config_value('workers_comp_ee_code'))