IRremote library help sending RAW code

can anybody help me send Raw codes using the IRremote library?

I've used IRrecvDump to get the following code:

Could not decode message
Raw (76): -9200 4450 -650 450 -700 450 -650 1600 -650 1600 -650 450 -650 1650 -650 1600 -650 500 -700 450 -650 500 -650 450 -700 500 -650 500 -650 1600 -650 500 -650 450 -650 550 -650 1600 -600 550 -650 450 -650 1600 -650 1600 -650 1650 -600 1650 -650 1600 -650 1600 -650 450 -650 500 -650 450 -700 500 -650 500 -650 450 -650 500 -700 500 -650 1600 -700 1550 -650 1600

How do I send this code using irsend.sendRAW ?

Also, this remote is listing in the LIRC database, but it is obviously not recognized by this library. Can I use the LIRC information to produce a protocol for the library?

Here's what I have, and it doesn't work:

unsigned int powerToggle1[67] = {4450,650,450,700,450,650,...};


void setup()
{
  Serial.begin(9600);
}

void loop() {
      irsend.sendRaw(powerToggle1,76,16);